Chris wrote:
During the CPAN upgrade from 3.1.0 to 3.1.2 last night I could have swore I
saw --lint being ran as a test. However, when I got up this morning I
found this in my RDJ output email folder:
[9324] warn: config: SpamAssassin failed to parse line, "MAKEPENIBIG .33" is
not valid for "score", skipping: score MAKEPENIBIG .33
[9324] warn: config: SpamAssassin failed to parse line, "hilton_b64 .01" is
not valid for "score", skipping: score hilton_b64 .01
[9324] warn: config: SpamAssassin failed to parse line, "MY_XXX_BODY .55" is
not valid for "score", skipping: score MY_XXX_BODY .55
[9324] warn: config: SpamAssassin failed to parse line, "MY_LIFE .66" is not
valid for "score", skipping: score MY_LIFE .66
[9324] warn: config: SpamAssassin failed to parse line, "SUBJECT_XXX_2 .33"
is not valid for "score", skipping: score SUBJECT_XXX_2 .33
[9324] warn: config: SpamAssassin failed to parse line, "MY_LRGROD .85" is
not valid for "score", skipping: score MY_LRGROD .85
I thought this was required in 3.1.0 (but not 3.0.x) too, but anyway,
all of these scores require a leading zero.
[9324] warn: trusted_networks doesn't contain internal_networks entry
'192.168/16'
[9324] warn: lint: 7 issues detected, please rerun with debug enabled for
more information
Here is my local.cf entry for trusted_networks:
clear_trusted_networks
trusted_networks 127/8
internal_networks 192.168/16
Exactly what the error message says. Your trusted_networks (12/78)
doesn't contain your internal_networks (192.168/16).
You need to add your internal_networks entry to your list of
trusted_networks.
Even after you do that though, your configuration is still probably
wrong. 127/8 is also internal and unless your mail server is NATed and
doesn't see your public IP, you also need to add your public IP to both
internal and trusted networks.
BTW... if internal_networks are the same as trusted_networks, there's no
need to declare internal_networks as trusted_networks will be used if
internal_networks aren't defined.
Daryl