[AMaViS-user] New modules in SpamAssassin 3.2.0-pre2

2007-03-06 Thread Mark Martinec
I decided to give it a try with SA 3.2.0-pre2 to see how it cooperates with amavisd-new. Not much trouble there, even plugins like FuzzyOcr, Botnet, ImageCheck and ImageInfo seem to still work, along with SQL-based bayes and AWL. One thing I noticed is an extended list of Perl modules that are not

Re: [AMaViS-user] amavis and aliases

2007-03-06 Thread mouss
Philippe Trolliet wrote: > >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] Behalf Of Philippe >> Trolliet >> Sent: Montag, 5. Marz 2007 11:41 >> To: amavis-user >> Subject: Re: [AMaViS-user] amavis and aliases >> >> >> >> >> >>> -Original Message---

Re: [AMaViS-user] R: Why p0f-analyzer.pl?

2007-03-06 Thread Giampaolo Tomassoni
>> On Tue, 6 Mar 2007, Giampaolo Tomassoni wrote: >> -Messaggio originale- Da: Vincent Li [mailto:[EMAIL PROTECTED] Inviato: martedì 6 marzo 2007 19.22 A: Giampaolo Tomassoni Cc: amavis-user@lists.sourceforge.net Oggetto: RE: [AMaViS-user] Why p0f-analyzer.pl?

Re: [AMaViS-user] R: Why p0f-analyzer.pl?

2007-03-06 Thread Giampaolo Tomassoni
> On Tue, 6 Mar 2007, Giampaolo Tomassoni wrote: > >>> -Messaggio originale- >>> Da: Vincent Li [mailto:[EMAIL PROTECTED] >>> Inviato: martedì 6 marzo 2007 19.22 >>> A: Giampaolo Tomassoni >>> Cc: amavis-user@lists.sourceforge.net >>> Oggetto: RE: [AMaViS-user] Why p0f-analyzer.pl? >>> >>>

Re: [AMaViS-user] [SPAM] R: Why p0f-analyzer.pl?

2007-03-06 Thread Vincent Li
On Tue, 6 Mar 2007, Giampaolo Tomassoni wrote: -Messaggio originale- Da: Vincent Li [mailto:[EMAIL PROTECTED] Inviato: martedì 6 marzo 2007 19.22 A: Giampaolo Tomassoni Cc: amavis-user@lists.sourceforge.net Oggetto: RE: [AMaViS-user] Why p0f-analyzer.pl? On Thu, 15 Feb 2007, Giampaolo T

[AMaViS-user] R: Why p0f-analyzer.pl?

2007-03-06 Thread Giampaolo Tomassoni
> -Messaggio originale- > Da: Vincent Li [mailto:[EMAIL PROTECTED] > Inviato: martedì 6 marzo 2007 19.22 > A: Giampaolo Tomassoni > Cc: amavis-user@lists.sourceforge.net > Oggetto: RE: [AMaViS-user] Why p0f-analyzer.pl? > > On Thu, 15 Feb 2007, Giampaolo Tomassoni wrote: > > > From: [EMAI

Re: [AMaViS-user] Why p0f-analyzer.pl?

2007-03-06 Thread Vincent Li
On Thu, 15 Feb 2007, Giampaolo Tomassoni wrote: > From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] Behalf Of Vincent >> >> On Fri, 26 Jan 2007, Giampaolo Tomassoni wrote: >> >>> Why does the p0f-analyzer.pl script exists? >>> >>> I see that the p0f tool is capable of caching a specified >> amo

Re: [AMaViS-user] penpals & SQL logging

2007-03-06 Thread Mark Martinec
Peter, > I am very interested in setting up the penpals feature and I see that this > relies upon SQL logging. README.sql-mysql.txt gives some info but I do not > find it very clear. I figure I need to create a database, say, amavisd, > and then create the 'msgs' table like shown in the docs? S

[AMaViS-user] penpals & SQL logging

2007-03-06 Thread Peter
I am very interested in setting up the penpals feature and I see that this relies upon SQL logging. README.sql-mysql.txt gives some info but I do not find it very clear. I figure I need to create a database, say, amavisd, and then create the 'msgs' table like shown in the docs? CREATE TABLE

[AMaViS-user] Mailbox filter

2007-03-06 Thread Laurent RICHET
Hi, I use the system Postfix-Amavis-Spamassassin-Clamav since a long time and it works well. I have a question about filter with amavis : In Amavis, I use read_hash variable for spam/virus scan for the domains that I want analyze. I want to know if it's possible to disable scan for a special mail

Re: [AMaViS-user] logging of perl runtime errors when daemonized

2007-03-06 Thread Mark Martinec
... and ___DIE__ need not be resignalled, it is propagated naturally. if ($daemonize) { # log warnings and uncaught errors $SIG{'__DIE__' } = sub { do_log(0,"_DIE: %s", $_[0]) if !$^S }; $SIG{'__WARN__'} = sub { do_log(2,"_WARN: %s",$_[0]) if !$^S }; } Mark

Re: [AMaViS-user] logging of perl runtime errors when daemonized

2007-03-06 Thread Mark Martinec
> Makes sense, looks fine, accepted, thanks. Actually, it is not so good, warnings should not be converted to die. I'm trying the following now: if ($daemonize) { # propagate signal when called from an eval, log otherwise $SIG{'__DIE__' } = sub { $^S && die @_; do_log(0,"_DIE: %s", join('