Re: [exim] Alias to external server and SPF failure

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Adam Major
Datum:  
To: exim-users
Betreff: Re: [exim] Alias to external server and SPF failure
Hello

> There are details about the SRS scheme on the exim wiki:
>
> http://wiki.exim.org/SRS


Thank You. I use simple router:

mysql_forward:
     driver = redirect
     srs = forward
     data = ${lookup mysql {SELECT send_to FROM mail_alias WHERE
    mail_domain='${quote_mysql:$domain}' AND
    mail_user='${quote_mysql:$local_part}' AND is_forward=1}}



It working ok in almost all situation.

When I sent mail from login@??? to login@???
and it is alias to login@???

Mail disappeared :/
In exim log this mail was sent but not found in gmail mailbox.


I tested many combination ex:
login1@gmail-> login@mydomain -> login2@gmail
or
login@??? -> login@mydomain -> login@???

and this is working :)


Is it safe use SRS to all aliases, even local domains ?
Is there any contraindications?


Best Regards.