Fix header texts to meet access 5 requirements.
This commit is contained in:
parent
dc7716ff14
commit
acfe60007f
1 changed files with 2 additions and 2 deletions
|
|
@ -171,7 +171,7 @@ sub exempt_localhost {
|
||||||
my $attr = $options{attr};
|
my $attr = $options{attr};
|
||||||
if ($attr->{client_address} != '') {
|
if ($attr->{client_address} != '') {
|
||||||
my $client_address = NetAddr::IP->new($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);
|
if grep($_->contains($client_address), localhost_addresses);
|
||||||
};
|
};
|
||||||
return 'DUNNO';
|
return 'DUNNO';
|
||||||
|
|
@ -186,7 +186,7 @@ sub exempt_relay {
|
||||||
my $attr = $options{attr};
|
my $attr = $options{attr};
|
||||||
if ($attr->{client_address} != '') {
|
if ($attr->{client_address} != '') {
|
||||||
my $client_address = NetAddr::IP->new($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);
|
if grep($_->contains($client_address), relay_addresses);
|
||||||
};
|
};
|
||||||
return 'DUNNO';
|
return 'DUNNO';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue