Fresh install on OS X... Giving me some grief at login.
Receiving:
"IMAP Error in /Library/WebServer/Documents/mail/program/include/rcube_imap.inc (): Open SSL not available;" after clicking the login button. Database is adding entries to "roundcube:session" table but that's about it.
Suspect this may be a symptom of using self-signed certs but I'm having trouble tracking down the proper logging facility.
Any ideas on how to effectively troubleshoot this? At this point, I've enabled "/var/log/all.log" and here is the unhelpful (to me at least) result:
Oct 30 08:56:18 localhost xinetd[335]: START: imap pid=6484 from=10.10.0.2 Oct 30 08:56:18 localhost imapd[6484]: imap service init from 10.10.0.2 Oct 30 08:56:18 localhost imapd[6484]: Login disabled user=myusername auth=myusername host=localhost [10.10.0.2] Oct 30 08:56:21 localhost imapd[6484]: Command stream end of file, while reading line user=myusername host=localhost [10.10.0.2]
Server config:
Apache/1.3.33 (Darwin) PHP/4.3.11 mod_perl/1.26 mod_ssl/2.8.22 OpenSSL/0.9.7g MySQL/4.0.18-standard
Relevant RoundCube host settings:
$rcmail_config['default_host'] = 'ssl://localhost:993'; $rcmail_config['default_port'] = 993;
Any help will be immensely appreciated.
-Paul
Paul Talbot wrote:
$rcmail_config['default_host'] = 'ssl://localhost:993'; $rcmail_config['default_port'] = 993;
Hmm..What does a phpinfo() say? Do you have OpenSSL support compiled into php? What about imaps in php? Does it work when the setting is 127.0.0.1 rather than localhost [ Note - Your logs claims that the login is coming from 10.10.0.2 whereas the server should say 127.0.01]. Does it work without ssl?
-Bruno
As the error messages said: "Open SSL not available" You need PHP installed with Open SSL in order to open SSL connections to the IMAP server. If that is not provided, you can't use SSL.
Thomas
Paul Talbot wrote:
Fresh install on OS X... Giving me some grief at login.
Receiving:
"*IMAP Error in /Library/WebServer/Documents/mail/program/include/rcube_imap.inc ():* Open SSL not available;" after clicking the login button. Database is adding entries to "roundcube:session" table but that's about it.
Suspect this may be a symptom of using self-signed certs but I'm having trouble tracking down the proper logging facility.
Any ideas on how to effectively troubleshoot this? At this point, I've enabled "/var/log/all.log" and here is the unhelpful (to me at least) result:
Oct 30 08:56:18 localhost xinetd[335]: START: imap pid=6484 from=10.10.0.2 Oct 30 08:56:18 localhost imapd[6484]: imap service init from 10.10.0.2 Oct 30 08:56:18 localhost imapd[6484]: Login disabled user=myusername auth=myusername host=localhost [10.10.0.2] Oct 30 08:56:21 localhost imapd[6484]: Command stream end of file, while reading line user=myusername host=localhost [10.10.0.2]
Server config:
Apache/1.3.33 (Darwin) PHP/4.3.11 mod_perl/1.26 mod_ssl/2.8.22 OpenSSL/0.9.7g MySQL/4.0.18-standard
Relevant RoundCube host settings:
$rcmail_config['default_host'] = 'ssl://localhost:993'; $rcmail_config['default_port'] = 993;
Any help will be immensely appreciated.
-Paul