Hi,
I'm trying to use RoundCube with UW-IMAP but am having a login problem that I can't seem to pin down. I've set the debug level to 8 but nothing more appears in the error logs than whatever the default was. This is all I'm seeing in my mail logs after a 'Login failed' from the UI:
Oct 17 10:58:23 mail imapd[30822]: imap service init from 192.168.1.114 Oct 17 10:58:26 mail imapd[30822]: Command stream end of file, while reading line user=gary host=mail [192.168.1.114]
Any suggestions?
Thanks, Gary
Hi,
That error may be caused by not using a SSL connection when it is required, by default IMAP-UW allows SSL only, but you can enable plaintext using the WITH_PLAINTEXT_AND_SSL option. If you're using SSL only, make sure the line in config/main.inc.php is set accordingly, eg $rcmail_config['default_host'] = 'ssl://localhost:993';
Stefan
On Mon, 17 Oct 2005 11:03:14 -0700, Gary gary@eyetraxx.net wrote:
Hi,
I'm trying to use RoundCube with UW-IMAP but am having a login problem that I can't seem to pin down. I've set the debug level to 8 but nothing more appears in the error logs than whatever the default was. This is all I'm seeing in my mail logs after a 'Login failed' from the UI:
Oct 17 10:58:23 mail imapd[30822]: imap service init from 192.168.1.114 Oct 17 10:58:26 mail imapd[30822]: Command stream end of file, while reading line user=gary host=mail [192.168.1.114]
Any suggestions?
Thanks, Gary
stefan wrote:
That error may be caused by not using a SSL connection when it is required, by default IMAP-UW allows SSL only, but you can enable plaintext using the WITH_PLAINTEXT_AND_SSL option.
I have UW-IMAP working with both plaintext and SSL authentication. Are you suggesting something like this? $rcmail_config['with_plaintext_and_ssl'] = TRUE;
If you're using SSL only, make sure the line in config/main.inc.php is set accordingly, eg $rcmail_config['default_host'] = 'ssl://localhost:993';
This is a confusing part of the config file. If you set port 993 in default_host, do you also have to set it in default_port?
Thanks, Gary