Out of office setting, send reply except for 1 email

Discussion in 'Installation/Configuration' started by Shyciii, Jul 22, 2022.

  1. Shyciii

    Shyciii Member

    I set out of office (vacation) for one person, but I would like out of office not to respond to emails from 1 email address ([email protected])

    This is what .ispconfig.sieve currently looks like:

    if currentdate :value "ge" "iso8601" "2022-07-22T00:00:00" {
    if currentdate :value "le" "iso8601" "2022-08-07T23:55:00" {

    vacation :days 1
    :subject "Automatic reply"
    :addresses ["[email protected]"]
    "Vacation sentences";
    }
    }
     
  2. Shyciii

    Shyciii Member

    Solution:
    Edit .ispconfig.sieve file -> insert before vacation settings:

    if header :contains "from" "[email protected]" {
    keep;
    stop;
    }
     

Share This Page