Roundcube Community Forum

 

Cannot login Roundcube dashboard

Started by TomHsiung, January 18, 2019, 08:37:48 AM

Previous topic - Next topic

TomHsiung

Unfortunately, I encountered new issue when I tried to send email via the webmail. Note that the desktop email client of Macintosh Mail.app worked well.

This error:

SMTP Error (530): Failed to set sender "[email protected]" (5.7.0 Must issue a STARTTLS command first).

Tom

JohnDoh

perhaps the same as this https://github.com/roundcube/roundcubemail/issues/4590? may be you need to the smtp auth settings. If its not that then when config do you have in $config['smtp_server'] and $config['smtp_port']?
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more...

TomHsiung

It's solved by adding to config.inc.php

$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';


However, this raise safety concern. Is it secure to add this two lines?

Tom

JohnDoh

QuoteHowever, this raise safety concern.
What concern?
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more...

TomHsiung

Quote from: JohnDoh on February 17, 2019, 02:53:13 AM
QuoteHowever, this raise safety concern.
What concern?

That is, would these two lines cause security flaws, or reduce the effect of TLS. Thanks.

Tom

JohnDoh

#20
The options have nothing to do with TLS. SMTP login is done during transaction time, after the TLS connection is established. It's a similar process to how Roundcube logins to your IMAP server.
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more...