Quantcast
Channel: iRedMail
Viewing all articles
Browse latest Browse all 14122

Roundcube error 220 after updating php.

$
0
0

======== Required information ====
- iRedMail version: 0.9.0
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MySQL
- Web server (Apache or Nginx): Apache
- Linux/BSD distribution name and version: Ubuntu 14.10
- Related log if you're reporting an issue:
====

Hello, how are u?
I've recently updated php to 5.6 and i think i'm having the same problem as this post.

Do you have any update about that?
If i want to get back to php 5.5, what should i do? I mean, just removing and reinstalling will work or need to do some configuration to have everything working again?

Thanks!

UPDATE:
Found the solution here
nano /usr/share/apache2/roundcubemail/config/config.inc.php
add at the bottom:
$config['imap_conn_options'] = array(
   'ssl'         => array(
      'verify_peer'  => false,
      'verify_peer_name' => false,
    ),
);


$config['smtp_conn_options'] = array(
   'ssl'         => array(
       'verify_peer'      => false,
       'verify_peer_name' => false,
   ),
);

And it works.


Viewing all articles
Browse latest Browse all 14122

Trending Articles