From 6059fd8dfe4321221edc76e8a3bc54866d2e2c28 Mon Sep 17 00:00:00 2001 From: pdiogoantunes Date: Thu, 9 Mar 2017 15:56:05 +0100 Subject: [PATCH] ajout sieve --- HowtoDovecot.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/HowtoDovecot.md b/HowtoDovecot.md index 58747bc7..da11f3e3 100644 --- a/HowtoDovecot.md +++ b/HowtoDovecot.md @@ -159,6 +159,27 @@ pass_attrs = uid=user,userPassword=password,homeDirectory=userdb_home,uidNumber= On peut alors créer des fichiers .dovecot.sieve de ce type dans le $HOME d'un utilisateur, qui seront traités par dovecot/LDA : +Simple : + +~~~ +require ["vacation"]; + +if anyof (true) +{ + vacation + :days 1 + :subject "Message d'absence" + text: +Bonjour, + +Veuillez utiliser email@example.net à présent pour me contacter. + +Cordialement, +. +; +} +~~~ + ~~~ require ["fileinto", "copy", "vacation", "variables"];