Displaying 1 result from an estimated 1 matches for "address_mailman_field".
Did you mean:
address_mailman_fields
2016 Nov 18
0
Any way to simplify repeated use of same string-list?
I often use the same set of header names when doing an 'address'
comparison.
I would prefer to be able to specify that once, then re-use it in
several places.
As an example
set "address_mailman_fields" "\"To\", \"Cc\", \"From\", \"Errors-To\"";
if address :domain :matches ["${address_mailman_fields}"]
"example.com" {
[...]
}
if address :domain :matches ["${address_mailman_fields}"]
&...