Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
To continue sharing your ideas and feedback, please visit features.plesk.com
I haven't been succeeding in connecting to my mail server using an imap client (I'm trying to use gmail app on Android to connect to my imap server), but I have just found the error and therefore the very simple solution, as indicated on this forum: https://adeelejaz.com/blog/smtp-authorization-does-not-work-on-plesk-11/.
Checking my mail log I found this error: Dec 21 20:17:23 vps94844 postfix/smtpd[32304]: warning: SASL authentication failure: cannot connect to saslauthd server: No such file or directory Dec 21 20:17:23 vps94844 postfix/smtpd[32304]: warning: SASL authentication failure: Password verification failed Dec 21 20:17:23 vps94844 postfix/smtpd[32304]: warning: unknown[151.68.132.160]: SASL PLAIN authentication failed: generic failure
I am using Ubuntu server and my smtpd.conf is located at /etc/postfix/sasl/smtpd.conf.
Checking the contents of this file I see: pwcheck_method: auxprop saslauthd
auxprop_plugin: plesk
saslauthd_path: /postfix/private/plesk_saslauthd
mech_list: DIGEST-MD5 CRAM-MD5 PLAIN LOGIN
sql_engine: intentionally disabled
log_level: 4
Voilà, saslauthd_path is incomplete! I corrected this error just so: pwcheck_method: auxprop saslauthd auxprop_plugin: plesk saslauthd_path: /var/spool/postfix/private/plesk_saslauthd mech_list: DIGEST-MD5 CRAM-MD5 PLAIN LOGIN sql_engine: intentionally disabled log_level: 4
And after reloading postfix, now I can connect from my gmail app to my imap server without any problems.
Obviously, Plesk is not generating correctly the smtpd.conf file.