mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
cc7c1f8804
* Introducing global filters * added optional after.dovecot.sieve/before.dovecot.sieve files * added global filter test
7 lines
109 B
Sieve
7 lines
109 B
Sieve
require ["fileinto", "copy"];
|
|
|
|
if address :contains ["From"] "spam@spam.com" {
|
|
fileinto :copy "INBOX";
|
|
}
|
|
|