Fix header texts to meet access 5 requirements.

This commit is contained in:
Scott Kitterman 2007-04-18 18:28:08 +00:00
commit acfe60007f

View file

@ -171,7 +171,7 @@ sub exempt_localhost {
my $attr = $options{attr};
if ($attr->{client_address} != '') {
my $client_address = NetAddr::IP->new($attr->{client_address});
return 'PREPEND X-Comment SPF not applicable to localhost connection, skipped check'
return 'PREPEND X-Comment: SPF not applicable to localhost connection - skipped check'
if grep($_->contains($client_address), localhost_addresses);
};
return 'DUNNO';
@ -186,7 +186,7 @@ sub exempt_relay {
my $attr = $options{attr};
if ($attr->{client_address} != '') {
my $client_address = NetAddr::IP->new($attr->{client_address});
return 'PREPEND X-Comment SPF skipped for whitelisted relay'
return 'PREPEND X-Comment: SPF skipped for whitelisted relay'
if grep($_->contains($client_address), relay_addresses);
};
return 'DUNNO';