I have tried localhost as well as 127.0.0.1 to connect to my Dovecot
server. Nothing is visible in the Dovecot logs to indicate a
connection is being made or attempted.
Squirrelmail works fine. I have read the documentation but see no
reference to what I might try next.
-Bill NL
List info: http://lists.roundcube.net/users/
I have tried localhost as well as 127.0.0.1 to connect to my Dovecot server. Nothing is visible in the Dovecot logs to indicate a connection is being made or attempted.
Can you log into your web server and connect to your imap server using the telnet command, ie telnet localhost 143 ?
FWIW, RCU works fine with my dovecot instance here. In my case I have it bound to just my eth0 address, not *, so I have to tell the various web apps to connect to the host's real IP address instead of localhost.
List info: http://lists.roundcube.net/users/
Jason Fesler wrote:
I have tried localhost as well as 127.0.0.1 to connect to my Dovecot server. Nothing is visible in the Dovecot logs to indicate a connection is being made or attempted.
Can you log into your web server and connect to your imap server using the telnet command, ie telnet localhost 143 ?
FWIW, RCU works fine with my dovecot instance here. In my case I have it bound to just my eth0 address, not *, so I have to tell the various web apps to connect to the host's real IP address instead of localhost.
It works fine here too, with SSL enabled:
$rcmail_config['default_host'] = 'ssl://localhost:993';
(dovecot does not listen on the un-encrypted port). Maybe that is your problem..? _______________________________________________ List info: http://lists.roundcube.net/users/
On Nov 8, 2007, at 4:36 PM, bb wrote:
Jason Fesler wrote:
I have tried localhost as well as 127.0.0.1 to connect to my Dovecot server. Nothing is visible in the Dovecot logs to indicate a connection is being made or attempted.
Can you log into your web server and connect to your imap server
using the telnet command, ie telnet localhost 143 ?FWIW, RCU works fine with my dovecot instance here. In my case I
have it bound to just my eth0 address, not *, so I have to tell the
various web apps to connect to the host's real IP address instead of localhost.It works fine here too, with SSL enabled:
$rcmail_config['default_host'] = 'ssl://localhost:993';
(dovecot does not listen on the un-encrypted port). Maybe that is your problem..?
I can telnet fine with and without ssl.
I _do_ get the following error in the error logs, though with ssl.
[08-Nov-2007 20:55:20 +0100] IMAP Error: Open SSL not available; in / var/apache2/roundcubemail-svn/program/include/rcube_imap.inc on line 0
List info: http://lists.roundcube.net/users/
I _do_ get the following error in the error logs, though with ssl.
[08-Nov-2007 20:55:20 +0100] IMAP Error: Open SSL not available; in / var/apache2/roundcubemail-svn/program/include/rcube_imap.inc on line 0
You need OpenSSL support in your PHP.
http://www.php.net/manual/en/ref.openssl.php
To use PHP's OpenSSL support you must also compile PHP --with- openssl[=DIR].
It will show up when phpinfo() is run, you will get
OpenSSL support enabled
under "openssl"
Charles Dostale System Admin - Silver Oaks Communications http://www.silveroaks.com/ 824 17th Street, Moline IL 61265
List info: http://lists.roundcube.net/users/
chasd wrote:
I _do_ get the following error in the error logs, though with ssl.
[08-Nov-2007 20:55:20 +0100] IMAP Error: Open SSL not available; in / var/apache2/roundcubemail-svn/program/include/rcube_imap.inc on line 0
You need OpenSSL support in your PHP.
http://www.php.net/manual/en/ref.openssl.php
To use PHP's OpenSSL support you must also compile PHP --with- openssl[=DIR].
It will show up when phpinfo() is run, you will get
OpenSSL support enabled
under "openssl"
Charles Dostale System Admin - Silver Oaks Communications http://www.silveroaks.com/ 824 17th Street, Moline IL 61265
Although if you can use IMAP without openssl too you might just as well connect that way... now all that is left is to make it work :) _______________________________________________ List info: http://lists.roundcube.net/users/