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"; } }
Solution: Edit .ispconfig.sieve file -> insert before vacation settings: if header :contains "from" "[email protected]" { keep; stop; }