1 (edited by GsLabs 2015-03-28 04:45:14)

Topic: Roundcube error 220 after updating php.

======== 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.

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Roundcube error 220 after updating php.

Yeah, I've had to apply this myself, glad you found this; and are back to Working. I'll close this topic but if you have any other issues, just open another

3

Re: Roundcube error 220 after updating php.

OK. next release of iRedMail will add this setting in Roundcube by default. Will mentions this in iRedMail upgrade tutorial.