Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread LuKreme
I have much the same, only with a path pointing to the fullchain.pem file from LE. I suspect it is not readable by the http server, so how are you getting that /etc/Ppi file generated, since it is not the same path as you show in dovecot? I tried linking to the fullchain.pem, but I haven't trie

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
verify_peer was added in php 5.6.0 so if you are running a lower version that option won't work. On 03/02/2018 08:28 PM, Maarten wrote: > https://secure.php.net/manual/en/context.ssl.php > > > On 03/02/2018 08:22 PM, Maarten wrote: >> Or you could try setting verify_peer => false >> >> >> On 03/0

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
https://secure.php.net/manual/en/context.ssl.php On 03/02/2018 08:22 PM, Maarten wrote: > Or you could try setting verify_peer => false > > > On 03/02/2018 08:20 PM, Maarten wrote: >> In my roundcube I have the following set: >> >> $config['imap_conn_options'] = array( >>   'ssl' => array

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
Or you could try setting verify_peer => false On 03/02/2018 08:20 PM, Maarten wrote: > In my roundcube I have the following set: > > $config['imap_conn_options'] = array( >   'ssl' => array( > 'verify_peer'  => true, > 'verify_depth' => 3, > 'cafile'   => '/etc/pki/tls/

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
In my roundcube I have the following set: $config['imap_conn_options'] = array( 'ssl' => array( 'verify_peer' => true, 'verify_depth' => 3, 'cafile' => '/etc/pki/tls/certs/combined.pem', ), ); Combined being ca-bundle.trust.crt and ca-bundle.crt. When I remove

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread Maarten
ssl_cert = How do you have it setup? > > In dovecot I have the key and cert set to point to > /usr/local/etc/dehydrated/certs/domain/privkey.pem and .../fullchain.pem > > >> On Mar 1, 2018, at 11:01, Maarten wrote: >> >> I'm using letsencrypt certificates with roundcube and I'm not having any >

Re: [RCU] Cannot send mail via round cube

2018-03-02 Thread ɹןʇnqן
How do you have it setup? In dovecot I have the key and cert set to point to /usr/local/etc/dehydrated/certs/domain/privkey.pem and .../fullchain.pem > On Mar 1, 2018, at 11:01, Maarten wrote: > > I'm using letsencrypt certificates with roundcube and I'm not having any > issues.