[Mimedefang] add_recipient and delete_recipient

Dianne Skoll dfs at roaringpenguin.com
Sat Jul 16 21:43:35 EDT 2016


Hi,

>     # Si no se puede leer el dominio, dejamos que sendmail se ocupe.
>     return ( 'CONTINUE', 'ok' ) unless ( $dominio = extrae_dominio($recip) );

I suspect that's where you are going wrong.  You are using numeric comparison
rather than string comparison.  I think you probably want:

     return ( 'CONTINUE', 'ok' ) unless ( $dominio eq extrae_dominio($recip) );

"eq" instead of "="

Regards,

Dianne.



More information about the MIMEDefang mailing list