• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Plesk + Postfix = Mail Problems on MAC with Update 10.10.4

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:

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
Info found here: https://discussions.apple.com/thread/7104500?start=60&tstart=0

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:
As far as I was able to find out - it's Version independent ....
Our Plesk Servers are Centos/RHEL 6.6 with 12.0.18 Update #55
 
Well ... KB125741 killed proFTPd on all of my Plesk Servers ...

Jul 22 10:14:53 kdnx xinetd[15911]: START: ftp pid=16118 from=::ffff:000.000.00.00
Jul 22 10:14:53 kdnx proftpd[16118]: processing configuration directory '/etc/proftpd.d'
Jul 22 10:14:53 kdnx proftpd[16118]: fatal: TLSDHParamFile: '=' does not exist on line 4 of '/etc/proftpd.d/60-nosslv3.conf'
Jul 22 10:14:53 kdnx xinetd[15911]: EXIT: ftp status=1 pid=16118 duration=0(sec)

in /etc/proftpd.d/60-nosslv3.conf Line 4: TLSDHParamFile = /usr/local/psa/etc/dhkey.pem
but correct is: TLSDHParamFile /usr/local/psa/etc/dhkey.pem

No FTP connection to Server possible until this Config Line is changed ...
 
also Courier is broken after Patch ... you need to change:
TLS_DHPARAMS= /usr/local/psa/etc/dhkey.pem to
TLS_DHPARAMS=/usr/local/psa/etc/dhkey.pem
otherwise you get Error: /etc/courier-imap/imapd-ssl: line 237: /usr/local/psa/etc/dhkey.pem: Permission denied and TLS Connections no longer work ...

Even if you say this Patch is not well tested ... that much Bugs in an official released Bugfix is ... well ... embarrassing

Andreas
 
Back
Top