[Mimedefang] md_check_against_smtp_server and md_graphdefang_log

David F. Skoll dfs at roaringpenguin.com
Mon Mar 25 14:51:51 EDT 2013


On Mon, 25 Mar 2013 13:30:31 -0400
James Curtis <jameswcurtis at hotmail.com> wrote:

> md_check_against_smtp_server($sender, $recip, "localhost", "192.168.1.10");

You are throwing away the return values from that function.  You need
to assign them to some local variables like this:

my ($retval, $code, $dsn, $text) = md_check_against_smtp_server($sender, $recip, "localhost", "192.168.1.10");

Regards,

David.



More information about the MIMEDefang mailing list