diff options
-rw-r--r-- | .config/dovecot/canonical.sieve | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/dovecot/canonical.sieve b/.config/dovecot/canonical.sieve index 3802ffb..6c45c57 100644 --- a/.config/dovecot/canonical.sieve +++ b/.config/dovecot/canonical.sieve @@ -26,7 +26,9 @@ if address :is :domain "from" "rt.canonical.com" { stop; } -if address :matches :domain "from" ["launchpad.net", "*.launchpad.net"] { +if anyof (address :is "from" "archive@ubuntu.com", + address :matches :domain "from" ["launchpad.net", "*.launchpad.net"]) +{ fileinto :create "launchpad"; stop; } |