Hello,

This is a snipet of my roundcube configuration file, originally made
when all services were running on localhost. I've now separated the
webserver from the mail server and want to have all tls connections
between services. I've got letsencrypt-supplied certificates, is this
still the correct configuration for tls with separate systems handling
each service?

Thanks.
Dave.

$config['default_host'] = 'tls://172.16.21.3';
$config['imap_auth_type'] = 'PLAIN';
$config['imap_conn_options'] = array (
  'ssl' =>
  array (
    'verify_peer' => false,
    'verify_peer_name' => false,
  ),
);
$config['smtp_server'] = 'tls://172.16.21.3';
$config['smtp_port'] = 587;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['smtp_auth_type'] = 'PLAIN';
$config['smtp_conn_options'] = array (
  'ssl' =>
  array (
    'verify_peer' => false,
    'verify_peer_name' => false,
  ),
);
_______________________________________________
Roundcube Users mailing list
users@lists.roundcube.net
http://lists.roundcube.net/mailman/listinfo/users

Reply via email to