On Mon, 25 Mar 2013 13:30:31 -0400
James Curtis <jameswcur...@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.
_______________________________________________
NOTE: If there is a disclaimer or other legal boilerplate in the above
message, it is NULL AND VOID.  You may ignore it.

Visit http://www.mimedefang.org and http://www.roaringpenguin.com
MIMEDefang mailing list MIMEDefang@lists.roaringpenguin.com
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to