• 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.

Email error with roundcube. SMTP Error (250): Authentication failed.

RaulBoli

New Pleskian
Hello.
I have a VPS with plesk 12 I created an email account with one of my domains and when I try to send emails from this account through webmal of roundcube, I get the following error.:

An error has occurred!
SMTP Error (250): Authentication failed.

I would like to know what this error is due and as he could fix it.

Thank you.
 
Up please ! I have the same problem... and no solution to fix it... It's impossible to send an email (with roundcube or horde...)

Same message :
An error has occurred!
SMTP Error (250): Authentication failed.

Any idea ?
 
for me, the solution was to set the following variables:
$rcmail_config['smtp_server'] = '%t';
$rcmail_config['smtp_port'] = 25; //same as default
$rcmail_config['smtp_user'] = '%u'; //same as default
$rcmail_config['smtp_pass'] = '%p'; //same as default
$rcmail_config['smtp_auth_type'] = 'LOGIN';
 
If you're not keen on changing defaults in files, and are happy for users to have permission to relay using their email/password combo, the following should sort:

Server Management... Tools & Settings... Mail Server Settings... Relay Options... Authorisation Is Required - SMTP

With this turned OFF, RoundCube in its default state won't work :)
 
I have set
smtpd_tls_auth_only = yes
and so setting user and password to blank didn't work for me.

What worked:
Code:
// SMTP server host (for sending mails).
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
//$config['smtp_server'] = 'localhost';
$config['smtp_server'] = 'tls://localhost';

// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
// deprecated SSL over SMTP (aka SMTPS))
//$config['smtp_port'] = 25;
$config['smtp_port'] = 587;

Now everything works fine.

This may help some other people with the same problem saving some time.

Best regards
 
Hello!
I have set
smtpd_tls_auth_only = yes
and so setting user and password to blank didn't work for me.

What worked:
Code:
// SMTP server host (for sending mails).
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
//$config['smtp_server'] = 'localhost';
$config['smtp_server'] = 'tls://localhost';

// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
// deprecated SSL over SMTP (aka SMTPS))
//$config['smtp_port'] = 25;
$config['smtp_port'] = 587;

Now everything works fine.

This may help some other people with the same problem saving some time.

Best regards

When I do these changes, after doing smtpd_tls_auth_only = yes and smtpd_use_tls = yes I get the following, SMTP Error (-1): Connection to server failed

Also changed smtp_auth_type to LOGIN .. I just don't know what to do.
 
Properly setting up of POP3 and SMTP for the gmail is important in this case, as the same resolves variety of soft and hard bounce errors associated with email even I have resolved variety of gmail associated issues when I was having trouble while sending email including Error 007
 
Back
Top