You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
meli/melib/src/sieve/tests/compile/errors/address-part.sieve

18 lines
291 B
Sieve

/*
* Address part errors
*
* Total errors: 2 (+1 = 3)
*/
# Duplicate address part (1)
if address :all :comparator "i;octet" :domain "from" "STEPHAN" {
# Duplicate address part (2)
if address :domain :localpart :comparator "i;octet" "from" "friep.example.com" {
keep;
}
stop;
}