-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encryption during forwarding #6
Comments
It seems because the SMF can't use TLS to send mail to gmail.
I did not see this warning in my Google Apps for Your Domain free plan. Could you tell me about:
|
I'm just using a standard gmail acount ( |
got it. I'll check for this when I have time. thanks! :) |
I've definitely noticed this as well. An unfortunate side effect for me, is that all of my messages end up in the spam folder. I was trying to use Thanks for the great image. Wonderfully easy interface, with all that i need. Please let me know if I can provide any info in helping to troubleshoot this issue. 👍 |
@counterbeing thanks for your comments! I had just put it into README. :) I have no idea why the lastest code not work, but it seems that the tests failed without any major modification for now. I will check it later. and if you familar with postfix and run into this issue, I hope you can try to help needed. |
I think the latest build fails because openssl is not included in the docker file. Tests still fail but it works fine. |
I think it does have something to do with openssl, but I'm not sure what yet. I keep running into This being the command: |
The openssl package is missing that's why it can't find the binary. The proper fix for this is to add openssl to the list of packages in the dockerfile. If you just want to hack it together you can run "apk add openssl" inside the container. |
@dimitrovs I'm wondering why there's no problem before, because I know I used openssl command inside the test script... |
@zixi may be one of the underlying images changed? But that's not the only problem with the test scripts, I was never able to get them to pass even though forwarding works fine. It also tries to connect to some host that's not available during build/test, haven't figured out which one yet. |
yes, the unit test fail is because part of after disabled it, all unit tests passed again, with new version 0.4.2 |
I can confirm, my tests are passing. Mail is forwarding as expected. But I'm still getting an unencrypted warning from gmail. Is that still expected? |
@counterbeing warning from gmail is not expected, it's a confirmed bug(but we do not know where it lies in yet). hope somebody could fingure it out, then we can easy to get rid of it. |
I'm experiencing this, at least in my case stuff is not going to SPAM. |
@nelfer unfortunately I had to switch to tomav/docker-mailserver in order to overcome this. It turns out that handling emails is not so trivial and requires to learn various scary words like AMAVIS, DKIM, TLS, SPF and others. When your emails go through your server either way, they need to be signed with a DKIM key, which is then verified by a receiver (e.g. gmail) by means of a special DKIM TXT record in your domain's DNS (yes, it's necessary to edit your DNS as well!). Sorry for advertising a competing project; what I hope is it can work as an inspiration for this one. I'm not 100% happy with If you decide not just to redirect emails, but also to 'reply as' via your server, what I'd recommend is this nice tool: http://mail-tester.com/ |
@kachkaev OK. I read a little bit about DKIM and that's for sending email and confirming that the name@domain.com actually comes from @domain.com. I might be wrong, but I think this is not needed when we're just forwarding.
Because the certificate is self signed, it's not considered valid. |
Pull request is now just waiting for test/approval |
Hi @kachkaev |
Hi again Zhuohuan,
A little possible issue here. Could you please document on how encryption can be done during forwarding? I've got this message from google after getting a redirected email.
Learn more points here.
No worries if this is not possible - I personally don't needed encryption. Just curious about how things work – this may also help other potential users :–)
The text was updated successfully, but these errors were encountered: