Sync en_US/upgrade/0-upgrade.ubuntu.14.04-16.04.md.

This commit is contained in:
Zhang Huangbin 2017-01-31 12:26:27 +08:00
parent 73e5dae0ee
commit 8b015c599a
2 changed files with 42 additions and 0 deletions

View File

@ -20,6 +20,28 @@ iRedAPD requires package `python-pymysql`:
apt -y install python-pymysql
```
## Roundcube webmail
Make sure you have settings below in Roundcube config file `config/config.inc.php`:
```
// Required if you're running PHP 5.6 or later
$config['imap_conn_options'] = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
),
);
// Required if you're running PHP 5.6 or later
$config['smtp_conn_options'] = array(
'ssl' => array(
'verify_peer' => false,
'verify_peer_name' => false,
),
);
```
## PHP [OPTIONAL]
> NOTE: This step is toally optional if you're fine with old PHP release.

View File

@ -21,6 +21,7 @@
<li><a href="#fixes-you-need-after-upgrading-ubuntu-to-1604-from-1404">Fixes you need after upgrading Ubuntu to 16.04 from 14.04</a><ul>
<li><a href="#postfix">Postfix</a></li>
<li><a href="#iredapd">iRedAPD</a></li>
<li><a href="#roundcube-webmail">Roundcube webmail</a></li>
<li><a href="#php-optional">PHP [OPTIONAL]</a><ul>
<li><a href="#nginx-and-php-fpm">Nginx and php-fpm</a></li>
</ul>
@ -43,6 +44,25 @@ postconf -e shlib_directory='/usr/lib/postfix'
<pre><code>apt -y install python-pymysql
</code></pre>
<h2 id="roundcube-webmail">Roundcube webmail</h2>
<p>Make sure you have settings below in Roundcube config file <code>config/config.inc.php</code>:</p>
<pre><code>// Required if you're running PHP 5.6 or later
$config['imap_conn_options'] = array(
'ssl' =&gt; array(
'verify_peer' =&gt; false,
'verify_peer_name' =&gt; false,
),
);
// Required if you're running PHP 5.6 or later
$config['smtp_conn_options'] = array(
'ssl' =&gt; array(
'verify_peer' =&gt; false,
'verify_peer_name' =&gt; false,
),
);
</code></pre>
<h2 id="php-optional">PHP [OPTIONAL]</h2>
<blockquote>
<p>NOTE: This step is toally optional if you're fine with old PHP release.</p>