12 lines
226 B
Sieve
12 lines
226 B
Sieve
|
require ["vnd.dovecot.pipe", "copy", "imapsieve", "environment", "variables"];
|
||
|
|
||
|
if environment :matches "imap.mailbox" "*" {
|
||
|
set "mailbox" "${1}";
|
||
|
}
|
||
|
|
||
|
if string "${mailbox}" "Trash" {
|
||
|
stop;
|
||
|
}
|
||
|
|
||
|
pipe :copy "rspamd-pipe-ham";
|