aNguyen wrote: > my ($from, $hostip, $hostname, $helo) eq @_;
eq is string comparison. You want assignment: my ($from, $hostip, $hostname, $helo) = @_; 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 [email protected] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

