Update iRedMail upgrade tutorial: fix hard-coded mailbox folder name in dovecot-mysql.conf.

This commit is contained in:
Zhang Huangbin 2018-12-20 00:36:47 +08:00
parent 702d06dcff
commit cddf7f2281
2 changed files with 4 additions and 2 deletions

View File

@ -10,6 +10,7 @@
## ChangeLog
* Dec 20, 2018, fix hard-coded mailbox folder name in `dovecot-mysql.conf`.
* Dec 19, 2018, add section for upgrading mlmmjadmin.
* Dec 17, 2018, initial release.
@ -369,7 +370,7 @@ Add a new `CONCAT` line after above `CONCAT()` line:
user_query = SELECT \
...
CONCAT(mailbox.storagebasedirectory, '/', mailbox.storagenode, '/', mailbox.maildir) AS home, \
CONCAT(mailbox.mailboxformat, ':', mailbox.storagebasedirectory, '/', mailbox.storagenode, '/', mailbox.maildir, '/Maildir') AS mail, \
CONCAT(mailbox.mailboxformat, ':', mailbox.storagebasedirectory, '/', mailbox.storagenode, '/', mailbox.maildir, '/', mailbox.mailboxfolder) AS mail, \
...
```

View File

@ -63,6 +63,7 @@ check <a href="https://www.iredmail.org/support.html">the details</a> and
</div>
<h2 id="changelog">ChangeLog</h2>
<ul>
<li>Dec 20, 2018, fix hard-coded mailbox folder name in <code>dovecot-mysql.conf</code>.</li>
<li>Dec 19, 2018, add section for upgrading mlmmjadmin.</li>
<li>Dec 17, 2018, initial release.</li>
</ul>
@ -376,7 +377,7 @@ line like below:</p>
<pre><code>user_query = SELECT \
...
CONCAT(mailbox.storagebasedirectory, '/', mailbox.storagenode, '/', mailbox.maildir) AS home, \
CONCAT(mailbox.mailboxformat, ':', mailbox.storagebasedirectory, '/', mailbox.storagenode, '/', mailbox.maildir, '/Maildir') AS mail, \
CONCAT(mailbox.mailboxformat, ':', mailbox.storagebasedirectory, '/', mailbox.storagenode, '/', mailbox.maildir, '/', mailbox.mailboxfolder) AS mail, \
...
</code></pre>