mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-02-10 14:31:38 +00:00
11 lines
226 B
YAML
11 lines
226 B
YAML
headline: lang.sieve_preset_8
|
|
content: |
|
|
require "envelope";
|
|
require "variables";
|
|
if allof (
|
|
envelope :all :matches "to" "*",
|
|
not header :contains "To" "${1}",
|
|
address :is "From" "${1}"
|
|
) {
|
|
discard;
|
|
} |