Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [paulj] SpamAssassin & Remote POP Collection

Quote Reply
Re: [paulj] SpamAssassin & Remote POP Collection In reply to
Yes, it was meant to do that, but we originally forgot to put the plugin hooks into the POP3 checking. You can fix this by changing admin/GMail/POP3.pm, around line 379 and 387, you'll see:
Code:
$fid = GMail::Options::Filters->process($head);
and
Code:
defined($spam) or $spam = GMail::Options::Spam->process($head);

Change these to:
Code:
$fid = $PLG->dispatch('GMail::Options::Filters::process', sub { GMail::Options::Filters->process(@_) }, $head);
and
Code:
defined($spam) or $spam = $PLG->dispatch('GMail::Options::Spam::process', sub { GMail::Options::Spam->process(@_) }, $head);

Adrian
Subject Author Views Date
Thread SpamAssassin & Remote POP Collection paulj 3655 Nov 23, 2002, 1:40 PM
Thread Re: [paulj] SpamAssassin & Remote POP Collection
brewt 3596 Nov 23, 2002, 3:23 PM
Post Re: [brewt] SpamAssassin & Remote POP Collection
Dale_Brown 3463 Jan 29, 2003, 5:20 PM
Thread Re: [brewt] SpamAssassin & Remote POP Collection
Dale_Brown 3450 Jan 30, 2003, 3:21 PM
Post Re: [Dale_Brown] SpamAssassin & Remote POP Collection
Alex 3420 Feb 3, 2003, 5:05 PM