[Mimedefang] md check agains lmtp (Cyrus LMTP)

David F. Skoll dfs at roaringpenguin.com
Thu Jun 14 13:15:40 EDT 2007


Kees Theunissen wrote:

>     if ( "missing$mailbox" eq "missing" ) {
>        ...
>     }
> 

Perl is not shell; it's safe to do:

if (! $mailbox ) {
   ...
}

Unless you happen to have a mailbox named "0".  Then you need:

if (!defined($mailbox) || $mailbox eq '') {
    ...
}

Regards,

David.



More information about the MIMEDefang mailing list