The errata list is a list of errors and their corrections that were found after the product was released.
The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.
Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update
Version |
Location |
Description |
Submitted by |
Date submitted |
Printed |
Page 129
Example 6-9, end of page |
In example 6-9
$spam_whitelist_sender_ldap = {
query_filter => '(&(objectClass=amavisAccount)(mail=%m)
(amavisWhitelistSender=%s))',
res_filter => 'OK'};
$spam_blacklist_sender_ldap = {
query_filter => '(&(objectClass=amavisAccount)(mail=%m)
(amavisBlacklistSender=%s))',
res_filter => 'OK'};
should be replaced by
$spam_whitelist_sender_ldap = {
query_filter => '(&(objectClass=amavisAccount)(mail=%m))',
res_filter => 'OK'};
$spam_blacklist_sender_ldap = {
query_filter => '(&(objectClass=amavisAccount)(mail=%m))',
res_filter => 'OK'};
because otherwise, the filter is only applied when the sender address exactly matches the LDAP entry; thus disabling domain whitelisting or blacklisting.
See README_FILES/README.ldap in the most recent version of amavis (amavisd-new-2.4.5).
|
Anonymous |
|