Warning, /pim/libksieve/src/ksieveui/autocreatescripts/autotests/data/test-vacation.siv is written in an unsupported language. File is not indexed.
0001 require ["fileinto", "vacation"];
0002 # Move spam to spam folder
0003 if header :contains "X-Spam-Flag" "YES" {
0004 fileinto "spam";
0005 # Stop here so that we do not reply on spams
0006 stop;
0007 }
0008 vacation
0009 # Reply at most once a day to a same sender
0010 :days 1
0011 :subject "Out of office reply"
0012 # List of additional recipient addresses which are included in the auto replying.
0013 # If a mail's recipient is not the envelope recipient and it's not on this list,
0014 # no vacation reply is sent for it.
0015 :addresses ["j.doe@company.dom", "john.doe@company.dom"]
0016 "I'm out of office, please contact Joan Doe instead.
0017 Best regards
0018 John Doe";