Re: [AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-04-06 Thread Phil Regnauld
Gary V (mr88talent) writes: > I added that as patch 6. Patch 5 is the Perl 5.8.9 taint bug (which is > only required if one is using Perl 5.8.9. > > http://www200.pair.com/mecham/spam/amavisd.2.6.2.patch1.txt > http://www200.pair.com/mecham/spam/amavisd.2.6.2.patch2.txt > http://www200.pair.com/me

Re: [AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-04-02 Thread Gary V
> Here is an additional patch for that section: > > --- amavisd.orig2008-12-15 01:50:09.0 +0100 > +++ amavisd 2009-04-02 16:57:16.0 +0200 > @@ -12566,10 +12566,10 @@ > $hdrfrom_recip = expand_variables($hdrfrom_recip); > my($mailfrom_recip_q); > - if (de

Re: [AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-04-02 Thread Mark Martinec
Stefan, > need the same quoting for $mailfrom_recip_q (about 20 lines > below that code), too. You are right, thanks for spotting the omission! Here is an additional patch for that section: --- amavisd.orig2008-12-15 01:50:09.0 +0100 +++ amavisd 2009-04-02 16:57:16.0

Re: [AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-04-01 Thread Stefan Förster
* Mark Martinec wrote: >> sending the infected report fails, because the >> postmas...@mailhost1.domain.local smtp envelope sender address is not >> wraped with <>. >> it sends >> MAIL FROM:postmas...@mailhost1.domain.local >> instead of >> MAIL FROM: >> seems that somewhere msginfo->sender_sm

Re: [AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-03-27 Thread Mark Martinec
Gary, > Mark, I now have collected: > http://www200.pair.com/mecham/spam/amavisd.2.6.2.patch1.txt > http://www200.pair.com/mecham/spam/amavisd.2.6.2.patch2.txt > http://www200.pair.com/mecham/spam/amavisd.2.6.2.patch3.txt > http://www200.pair.com/mecham/spam/amavisd.2.6.2.patch4.txt > You can sh

Re: [AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-03-27 Thread Mark Martinec
Thomas, > sending the infected report fails, because the > postmas...@mailhost1.domain.local smtp envelope sender address is not > wraped with <>. > it sends > MAIL FROM:postmas...@mailhost1.domain.local > instead of > MAIL FROM: > seems that somewhere msginfo->sender_smtp gets filled without

Re: [AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-03-27 Thread Thomas Mueller
i think i found the codepart: --- amavisd-new.orig2009-03-27 10:49:11.0 +0100 +++ amavisd-new 2009-03-27 12:16:20.0 +0100 @@ -12536,6 +12536,7 @@ $mailfrom_admin_q = qquote_rfc2821_local($mailfrom_admin); } else { # defaults to email address in hdrfrom_notify_admin

[AMaViS-user] "warning: Illegal address syntax from localhost" on infected reports

2009-03-27 Thread Thomas Mueller
hi sending the infected report fails, because the postmas...@mailhost1.domain.local smtp envelope sender address is not wraped with <>. it sends MAIL FROM:postmas...@mailhost1.domain.local instead of MAIL FROM: seems that somewhere msginfo->sender_smtp gets filled without <> around. I co