[Mimedefang] Can't make filter_sender from slide to work

David F. Skoll dfs at roaringpenguin.com
Sat Dec 16 11:57:33 EST 2006


aNguyen wrote:

> my ($from, $hostip, $hostname, $helo) eq @_;

eq is string comparison.  You want assignment:

my ($from, $hostip, $hostname, $helo) = @_;

Regards,

David.



More information about the MIMEDefang mailing list