On Sun, 11 Oct 2009 01:21:48 -0500, Russell Jones rjones@eggycrew.com wrote:
It appears that roundcube is connecting to the local SMTP server over TLS, even though I explicitly set it to not use SSL or TLS:
// the mail host chosen to perform the log-in // leave blank to show a textbox at login, give a list of hosts // to display a pulldown menu or set one host as string. // To use SSL/TLS connection, enter hostname with prefix ssl:// or
tls://
$rcmail_config['default_host'] = 'localhost';
The reason is simple. PEAR::Net_SMTP library has no option to force plain connection. It uses TLS if server returns STARTTLS capability.