futureweb
Regular Pleskian
Hey there,
it seems that Apple tightened their Security requirements for Mail-Servers (and other SSL/TLS Services).
iOS 8.4 and OS X v10.10.4 provide increased security against the "Logjam" vulnerability - server administrators must use a group size of 2048 bits or greater when using Diffie-Hellman key exchange (https://support.apple.com/en-us/HT204932)
So since 10.10.4 Update Mac Users can't send E-Mail over TLS/SSL SMTP Outbound on our Plesk Servers anymore ...
I was able to fix Sendmail Servers - so MAC Users can again send outbound E-Mail ... but had no luck with Plesk + Postfix yet! :-/
How to solve it with Sendmail:
Info found here: https://discussions.apple.com/thread/7104500?start=60&tstart=0
For Postfix I tried it with
But did not help ... Mac Users still can't send out Mails ... :-/
Maybe someone here knows a solution?
Thank you, bye from Austria
Andreas Schnederle-Wagner
it seems that Apple tightened their Security requirements for Mail-Servers (and other SSL/TLS Services).
iOS 8.4 and OS X v10.10.4 provide increased security against the "Logjam" vulnerability - server administrators must use a group size of 2048 bits or greater when using Diffie-Hellman key exchange (https://support.apple.com/en-us/HT204932)
So since 10.10.4 Update Mac Users can't send E-Mail over TLS/SSL SMTP Outbound on our Plesk Servers anymore ...
I was able to fix Sendmail Servers - so MAC Users can again send outbound E-Mail ... but had no luck with Plesk + Postfix yet! :-/
How to solve it with Sendmail:
Code:
Create 2048 Bit DH Param File:
openssl gendh -out dh_2048.pem -2 2048
Add this File within Configuration:
vi /etc/mail/sendmail.mc
dnl # Added to resolve issues with Mac Mail
define(`confDH_PARAMETERS',`/etc/mail/certs/dh_2048.pem')
make -C /etc/mail
service sendmail restart
For Postfix I tried it with
Code:
vi /etc/postfix/main.cf
smtpd_tls_dh1024_param_file = ${config_directory}/dh_2048.pem
smtpd_tls_dh512_param_file = ${config_directory}/dh_512.pem
smtpd_tls_eecdh_grade = strong
tls_preempt_cipherlist = yes
But did not help ... Mac Users still can't send out Mails ... :-/
Maybe someone here knows a solution?
Thank you, bye from Austria
Andreas Schnederle-Wagner
Last edited: