I'm attempting to enable SSL on my RoundCube installation (v1.3.8). In the install instructions I see:
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
However, I don't see the line of code to add this. Kindly post an example of what I should be looking for and how it should look when I make the edit.
You prefix the default_host and smtp_server lines in the Roundcube config.inc.php
I tried:
$config['default_host'] = 'ssl://localhost';
and
$config['default_host'] = 'tls://localhost';
Neither worked... When I attempt to login I receive the error:
Connection to storage server failed.
Also, I do not have an "smtp_server" line of code in my config.inc.php file.