You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
291 B
Sieve
15 lines
291 B
Sieve
require ["variables", "vacation", "vnd.dovecot.extdata"];
|
|
|
|
if string :is "${extdata.reply_subject}" "" {
|
|
|
|
} else {
|
|
vacation :days 1 :subject "${extdata.reply_subject}" "${extdata.reply_body}";
|
|
}
|
|
|
|
if string :is "${extdata.forward}" "" {
|
|
|
|
} else {
|
|
redirect "${extdata.forward}";
|
|
keep;
|
|
}
|