I was just browsing at the differences between 0.19 and 0.20 and noticed this (in Conf.pm):
if (/^spamcop_uri_limit\s+(\d+)$/) { $self->{spamcop_uri_limit} = $1; next; }
wouldn't it be a little more foolproof to allow ending whitespace in the config file? or is this not customary?
Like:
if (/^spamcop_uri_limit\s+(\d+)\s*$/) { $self->{spamcop_uri_limit} = $1; next; }
Regards.