User Tools

Site Tools


roundcube

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
roundcube [2022/07/22 19:33] adminroundcube [2022/07/22 20:50] – Roundcube to use imaps 993 admin
Line 29: Line 29:
 In your browser navigate to: http://server/roundcube and it should show. In your browser navigate to: http://server/roundcube and it should show.
  
-If you try and login with dummy details, it will show: **Connection to storage server failed.**+==== Config Roundcube ==== 
 +Need to config for imaps and to ignore self-signed cert. 
 +<code> 
 +vi /etc/roundcube/config.inc.php
  
-==== Configure SQLite ====+$config['default_host''ssl://server.com'; 
 +$config['default_port'993;
  
 +$config['imap_conn_options'] = array(
 +  'ssl'         => array(
 +     'verify_peer'  => false,
 +     'verify_depth' => 3,
 +     'cafile'       => '/etc/ssl/certs/ca-certificates.crt',
 +   ),
 + );
 +
 +</code>
 +Now you should be able to login.
  
  
roundcube.txt · Last modified: 2022/07/27 21:56 by admin