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

David F. Skoll dfs at roaringpenguin.com
Sun Feb 23 08:30:01 EST 2003


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.



More information about the MIMEDefang mailing list