[Mimedefang] Mimedefang stream-by-recipient and Mailman
    David F. Skoll 
    dfs at roaringpenguin.com
       
    Tue Apr 26 15:26:41 EDT 2005
    
    
  
Rich West wrote:
> Quite suddenly, emails FROM the mailman server were not going out. 
> After a frazzling hour, it was discovered that a section of code in the
> mimedefang filter was causing the problem, although the piece of code
> was in place for well over a month.  Commenting it out and restarting
> mimedefang allowed the mailman mail to be sent out.
> The code was:
>   if (stream_by_recipient())
>   {
>      return;
>   }
The mail should be going out, just more slowly. :-)  You should see
a lot of queue files in your clientmqueue directory, which will all
be delivered at the next clientmqueue run.
The fix, obviously, is:
   if ($RelayAddr ne "127.0.0.1") {
      return if stream_by_recipient();
   }
Regards,
David.
    
    
More information about the MIMEDefang
mailing list