[Mimedefang] Re: Bounce AND send a copy?

2004-10-03 Thread Tim Boyer
On Fri, 1 Oct 2004 09:20:57 -0700, <[EMAIL PROTECTED]> wrote: >I imagine the remail is also bouncing, as it is also being detected as spam. >I worry that each remail is spawning another remail... so every spam is spawning its >own infinite loop. (uh-oh!) >Try this... > >Instead of > if ($hi

[Mimedefang] Re: Bounce AND send a copy?

2004-10-03 Thread Tim Boyer
On Fri, 01 Oct 2004 09:07:07 -0700, Kelson <[EMAIL PROTECTED]> wrote: >Tim Boyer wrote: >> It's bouncing: >> >> Sep 30 21:14:43 melbourne2 sm-mta[17694]: i911EUd5017694: Milter: >> data, reject=554 5.7.1 SpamAssassin has identified this email as >> possible spam. Please see http://www.denmantir

Re: [Mimedefang] add boilerplate not working as expected

2004-10-03 Thread J.D. Bronson
At 09:15 PM 10/2/2004, you wrote: On Sat, 2004-10-02 at 16:35, J.D. Bronson wrote: > if ($RelayAddr =~ "^192\.168\.1" or "^127\.0\.0\.1") { Try this instead: if ($RelayAddr =~ "^192\.168\.1" or $RelayAddr eq "127.0.0.1") { The error is that "or" binds two conditional statements. In your exampl