|
Literature
Africa |
Problems with large folders in IMAPOur server is using Dovecot to offer IMAPS mail storage. In case of trouble with one or more folders, the first thing to try is to delete the index files which are build automatically by Dovecot. Before doing this, you must log out from mail: close your mail client, logout from webmail. Then login on the PSI server and
$ cd /MAIL/<username>/Maildir
$ find . -name ".imap.index*"
./.Drafts/.imap.index
./.Drafts/.imap.index.data
./.Drafts/.imap.index.tree
./.Drafts/.imap.index.log
./.INBOX/.imap.index
./.INBOX/.imap.index.data
./.INBOX/.imap.index.tree
./.INBOX/.imap.index.log
./.Sent/.imap.index
./.Sent/.imap.index.data
./.Sent/.imap.index.tree
./.Sent/.imap.index.log
./.Trash/.imap.index
./.Trash/.imap.index.data
./.Trash/.imap.index.tree
./.Trash/.imap.index.log
...
$ find . -name ".imap.index*" -exec rm {} \;
Make sure you type it exactly, and with the first |