Hi, Michael. > I just noticed that mimedefang.pl contains the following... > return (wantarray ? (999, 'swerr', 'tempfail') : 1);
> I'm assuming if *_contains_virus_* is called in scalar form it should > return the same $code as if called in array form. Actually, the *contains_virus* functions should never be called in scalar context -- the documentation states they must be called in list context. The wantarray() check is historical and will probably go away, or else call die() if the function is called in scalar context in a future version. Regards, David. _______________________________________________ Visit http://www.mimedefang.org and http://www.canit.ca MIMEDefang mailing list [EMAIL PROTECTED] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

