No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

etc_dovecot_sieve_before.d_no-spam.sieve 183B

123456789101112
  1. require "fileinto";
  2. require "imap4flags";
  3. if header :contains "X-Spam-Flag" "YES" {
  4. fileinto "Junk";
  5. stop;
  6. }
  7. if header :is "X-Spam" "Yes" {
  8. fileinto "Junk";
  9. stop;
  10. }