[Mimedefang] Bypassing outgoing mail - filter_relay blocking all incomming mail

Rick Knight rick at rlknight.com
Sun Feb 23 15:56:01 EST 2003


David F. Skoll wrote:

>On Sat, 22 Feb 2003, Rick Knight wrote:
>
>  
>
>>sub filter_end_aux ($) {
>>    my($entity) = @_;
>>
>># No sense doing any extra work
>>    return if message_rejected();
>>    
>>
>
>This means send_quarantine_notifications won't get sent.
>Your filter_end should look like this:
>
>sub filter_end ($) {
>	my($entity) = @_;
>	filter_end_aux($entity);
>	send_quarantine_notifications();
>}
>  
>
David,

Isn't that what I have here? It's at the bottom of mimedefang-filter and 
except the comments, it looks like yours above.


                # Now this is the real filter_end
                sub filter_end ($) {
                my($entity) = @_;

                # Do the real work
                filter_end_aux($entity);

                # And send notifications
                send_quarantine_notifications();
                }






More information about the MIMEDefang mailing list