Displaying 1 result from an estimated 1 matches for "from_addr".
2010 Nov 12
1
dovecot sieve enotify question
...sieve enotify
not only for notify mail i.e arrived
but with add the incomming mail as attachment to the notification ?
i.e.
i have found
a example
require ["enotify", "fileinto", "variables"];
if header :contains "X-Spam-Flag" "YES" {
set "from_addr" "admin at example.com";
set "subject" "Spam";
notify :message "${from_addr}: ${subject}"
"mailto:user at example.com";
}
is there a way to add the orginal mail as attach to the notfication mail
, and finally perhaps delete it
th...