mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-06-24 09:49:12 +02:00
* Introducing global filters * added optional after.dovecot.sieve/before.dovecot.sieve files * added global filter test
6 lines
109 B
Sieve
6 lines
109 B
Sieve
require ["fileinto", "copy"];
|
|
|
|
if address :contains ["From"] "spam@spam.com" {
|
|
fileinto :copy "INBOX";
|
|
}
|
|
|