diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-11-27 14:41:57 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-11-27 14:41:57 +0100 |
commit | d241948034cc2f0dc9691520495f98bf84dd4338 (patch) | |
tree | 0fd81d45745be4949ecc5c5137a9ddf31895e625 /app/build/dovecot/conf/report-spam.sieve | |
parent | e2bb0e1b4ea9597db127b87c464f2933d5e01f38 (diff) | |
download | infrastructure-d241948034cc2f0dc9691520495f98bf84dd4338.tar.gz infrastructure-d241948034cc2f0dc9691520495f98bf84dd4338.zip |
Add missing dovecot conf files
Diffstat (limited to 'app/build/dovecot/conf/report-spam.sieve')
-rw-r--r-- | app/build/dovecot/conf/report-spam.sieve | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/build/dovecot/conf/report-spam.sieve b/app/build/dovecot/conf/report-spam.sieve new file mode 100644 index 0000000..1be7389 --- /dev/null +++ b/app/build/dovecot/conf/report-spam.sieve @@ -0,0 +1,9 @@ +require ["vnd.dovecot.pipe", "copy", "imapsieve", "environment", "variables", "vnd.dovecot.debug"]; + +if environment :matches "imap.user" "*" { + set "username" "${1}"; +} + +pipe :copy "sa-learn" [ "--spam", "-u", "debian-spamd"]; +debug_log "spam reported by ${username}"; + |