|
Quando prevedete un'assenza prolungata potete impostare un risponditore automatico alle e-mail in arrivo sul vostro account. Per utilizzarlo da Thunderbird dovete installare l'addon Sieve versione di sviluppo. Dopo averlo installato comparirà una nuova voce sotto Strumenti --> Sieve Message Filters dove potete aggiungere i vostri script. Nel seguente esempio di script vacation dovrete inserire le date nel formato YYYY-MM-DD e sostituire ogni <VARIABILE>. require ["fileinto", "regex", "envelope", "vacation", "date", "relational"]; # rule:[Recognised SPAM] if anyof (header :is "X-Spam-Flag" "YES") { fileinto "Junk"; # Stop here so that we do not reply on spams stop; } # rule:[Vacation] if allof(currentdate :value "ge" "date" "<START_DATE>", currentdate :value "le" "date" "<END_DATE>", not header :contains "Precedence" ["bulk", "list"]) { vacation # Reply at most once every 5 days to a same sender :days 5 :subject "Out of office reply" # List of additional recipient addresses which are included in the auto replying. # If a mail's recipient is not the envelope recipient and it's not on this list, # no vacation reply is sent for it. :addresses ["<USER@DOMAIN_IOM>", "<ALTUSER@DOMAIN_IOM>", "<ALIAS@DOMAIN_IOM>"] "I'm out of office from <START_DATE> to <END_DATE>. Best regards <SIGNED>"; } |