sieve_extlists_list
Default | [None] |
---|---|
Value | Named List Filter |
See Also |
This named list filter creates a new list definition for the ":list" match type
in Sieve (extlists extension). The filter name refers to the
sieve_extlists_list_name
setting. That is the name of the list as it
will be accessible from the Sieve. A dict definition that is placed inside
the scope of this list filter will serve as the lookup for this extlists list.
So, values from Sieve are looked up in the defined dict. This is often used to
define an address book or whitelist external to the Sieve script. If no dict is
present, the list will function as an empty list.
Example:
sieve_extlists_list :addrbook:default {
dict proxy {
name = addressbook
}
}