[PATCH 3/5] rewrote plugins/sender_permitted_from - uses Mail::SPF (new, supported) instead of Mail::SPF::Query (deprecated) - enhanced POD documentation - more robust handling of SPF results - automa

2010-05-02 Thread matt
+=head1 AUTHOR + +Matt Simerson + +=head1 ACKNOWLEDGEMENTS + +whomever wrote the original SPF plugin, upon which I based this. + =cut -use Mail::SPF::Query 1.991; +use strict; +use Mail::SPF 2.000; +use Data::Dumper; sub register { my ($self, $qp, @args) = @_; @@ -34,40 +43,55 @@ sub

Re: Mail::SPF::Query

2008-02-20 Thread Jose Luis Martinez
Ask Bjørn Hansen escribió: On Feb 18, 2008, at 4:13 PM, Jared Johnson wrote: Is there a good reason for the QP sender-permited-from plugin use Mail::SPF::Query rather than Mail::SPF along with using best-guess and trusted forwarder by default, or is it only because nobody has ported it to

Re: Mail::SPF::Query

2008-02-18 Thread Ask Bjørn Hansen
On Feb 18, 2008, at 4:13 PM, Jared Johnson wrote: Is there a good reason for the QP sender-permited-from plugin use Mail::SPF::Query rather than Mail::SPF along with using best-guess and trusted forwarder by default, or is it only because nobody has ported it to Mail::SPF? I'm p

Mail::SPF::Query

2008-02-18 Thread Jared Johnson
I stumbled upon the following information in an article at http://www.openspf.org/Implementations The Mail::SPF::Query Perl module was the very first implementation of SPF and was the de facto reference implementation for quite some time. It roughly conforms to the final SPFv1 specification