> On Tue, 8 Aug 2006, Rob McEwen wrote: > > The following are what I have deemed as frequently used official e-bay > > smtp servers. This list might be used for whitelisting or/and negative > > scoring:
Seems like ebay is signing messages with DomainKeys, I'm getting DK_VERIFIED in my log for mail from [EMAIL PROTECTED] and [EMAIL PROTECTED] and similar. The Mail::SpamAssassin::Plugin::DKIM offers whitelist_from_dkim, it should not be difficult to port it to Mail::SpamAssassin::Plugin::DomainKeys, making a whitelist_from_dk. Anyone? Btw, the following patch is needed for Mail::DomainKeys 0.82 (the author has been notified): --------------- --- DomainKeys/Signature.pm~ Wed Jun 21 06:25:26 2006 +++ DomainKeys/Signature.pm Thu Aug 3 20:01:52 2006 @@ -46,5 +46,5 @@ /^d=([A-Za-z0-9\-\.]+)$/ and $self->{'DOMN'} = lc $1; - /^h=(\S+)$/ and + /^h=(.*)$/s and $self->{'HDRS'} = lc $1; /^q=(dns)$/i and @@ -269,5 +269,5 @@ if (wantarray and $self->{'HDRS'}) { - my @list = split /:/, $self->{'HDRS'}; + my @list = split /[ \t]*:[ \t]*/, $self->{'HDRS'}; return @list; } --------------- Mark