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.
_______________________________________________
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

Reply via email to