mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
8 lines
115 B
Sieve
8 lines
115 B
Sieve
|
require ["fileinto"];
|
||
|
|
||
|
if address :contains ["From"] "spam@spam.com" {
|
||
|
fileinto "INBOX.spam";
|
||
|
} else {
|
||
|
keep;
|
||
|
}
|