On Mon, 25 Mar 2013, David F. Skoll wrote: >On Mon, 25 Mar 2013 13:30:31 -0400 >James Curtis <[email protected]> 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");
Shouldn't that be: my ($retval, $text, $code, $dsn) = md_check_against_smtp_server($sender, $recip, "localhost", "192.168.1.10"); I assume that you intent to use meaningfull variable names. Regards, Kees Theunissen. -- Kees Theunissen, System and network manager, Tel: +31 (0)30 6096724 Dutch Institute For Fundamental Energy Research (DIFFER) e-mail address: [email protected] postal address: PO Box 1207, 3430 BE Nieuwegein, NL visitors address: Edisonbaan 14, 3439 MN Nieuwegein, NL _______________________________________________ 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 [email protected] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

