[Mimedefang] Slaves dying!

David F. Skoll dfs at roaringpenguin.com
Thu Nov 27 16:22:07 EST 2003


On Thu, 27 Nov 2003, Nels Lindquist wrote:

> Is there a problem with the '%' character in the subject, maybe...?

There should not me.  md_graphdefang_log boils down to a call to md_syslog,
which looks like this:

sub md_syslog ($$) {
    my($facility, $msg) = @_;

    if ($Features{"Unix::Syslog"}) {
	my $num_fac = convert_log_facility_to_number($facility);
	syslog($num_fac, "%s", $msg);
    } else {
	syslog($facility, "%s", $msg);
    }
}

So we are protected against "%" characters in the message.

Regards,

David.



More information about the MIMEDefang mailing list