Re: [RCU] roundcube custom tls verification options

2018-04-09 Thread David Mehler
Hello, Thanks for everyone's replies. What is wrong with this code? I keep getting a syntax error, it wants a ) not a , Thanks. Dave. array( 'verify_peer' => true, // certificate is not self-signed if cafile provided 'allow_self_signed' => false, // Letsencrypt 'ssl_cert => '/path/to/letsencryp

Re: [RCU] roundcube custom tls verification options

2018-04-09 Thread Ralph Seichter
On 09.04.2018 02:37, David Mehler wrote: > what I'm wanting to do is tighten my tls verification options. My > domains each use a different letsencrypt certificate. Depending on your platform, you could do without any special Roundube configuration. With modern Linux distributions like Gentoo thi

Re: [RCU] roundcube custom tls verification options

2018-04-08 Thread A.L.E.C
On 09.04.2018 02:37, David Mehler wrote: > Can I put a config in each of the domain specific files? Yes. You can also do: $config['imap_conn_options'] = array( 'hostname' => array( 'ssl' => array( -- Aleksander 'A.L.E.C' Machniak Kolab Groupware Developer [http://kolab.org

[RCU] roundcube custom tls verification options

2018-04-08 Thread David Mehler
Hello, Is it possible to do custom connection information? This is how my config.inc.php file looks: $config['default_host'] = 'tls://localhost'; $config['imap_conn_options'] = array( 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, ), ); $config['smtp_server'] = 'tls://localh