Hi all,
I am having issues trying to connect to the mailserver with a fresh install of roundcube 1.4.
Here is the server configurations:
Mailserver:
Ubuntu18, iredmail 0.99, ports 993 incoming & 587 outgoing.
2 domains serving: mail.example1,com, mail.example2.com
IP 192.168.100.17
Webserver
Ubuntu18, nginx, Mysql, PHP7.3, Letsencrypt, roundcube1.4, Rainloop.
IP 192.168.100.18
Everything functioning correctly, Thunderbird, android K9, Evolution, rainloop.
Roundcube can't connect to mailserver.
current config.inc.php
<?php
$config = array();
$config['db_dsnw'] = 'mysql://user:password@localhost/roundcube_db';
$config['default_host'] = array(
'ssl://mail.example1:993' => 'Example1 Secure Webmail',
'ssl://mail.example2.com:993' => 'Example2 Secure Webmail'
);
$config['smtp_server'] = 'tls://%h';
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['support_url'] = '';
$config['product_name'] = 'Webmail';
$config['des_key'] = 'rcmail-!24ByteDESkey*Str';
$config['plugins'] = array(
'archive',
'zipdownload',
);
Any assistance will be greatly appreciated, have been trying to figure out this config file for a couple of days already
Regards
What error do you get exactly (check the roundcube error log)?
I see you are using SSL so could it be related to this https://github.com/roundcube/roundcubemail/wiki/FAQ#problems-connecting-imapsmtp-server-via-ssltls?
Hi sorry for the late response, I was out of the country
I added that ssl config to the config file. to no avail.
No errors are showing in the dovecot log either.
In the roundcube errors.log, I am getting this:
[10-Dec-2019 15:15:10 -0700]: <dvrhl7kt> IMAP Error: Login failed for [email protected] against mail.example1.com from 192.168.1.1. Could not connect to ssl://mail.example1.com:993: Unknown reason in /var/www/roundcube/program/lib/Roundcube/rcube_imap.php on line 200 (POST /?_task=login&_action=login)
Don't know what to do with this.