Exim forwards not going out through TLS
- by Blake
I'm trying to get Exim to use STARTTLS to send emails that are just FORWARDS.
I have a server accepting email at example-accepting.com for users. So I want user@example-accepting.com to forward all email to user@example.com.
If I do this from the command like on example-accepting.com...
echo "test" | mail -s "ssl/tls test" user@example.com
Success!! Sent via TLS
BUT, if I send an email to user@example-accepting.com the forward fails, it's NOT being sent via TLS. I've tried both forwarding the email via /etc/aliases and the user .forward file. The email is indeed sent, but NOT via TLS.
Why is it when I run "mail" from the command like it's working like it should, but a .forward is not using TLS?
Thanks