Dovecot Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 25: Line 25:
  chown -R 58580:58580 Maildir
  chown -R 58580:58580 Maildir


Remove index files:
=Logs=


find ./Maildir -name ... -exec rm {} \;
On the docker host: /rackstation/dovecot/log

Latest revision as of 05:50, 21 May 2018

Internal

Backup a Mailbox

On the Dovecot server host:

cd .../<user-home>
tar -cvspf - Maildir | gzip > yyyy.mm.dd-dovecot-IMAP-<user-name>-Maildir.tar.gz

Restore a Mailbox

As root:

cd .../<user-home>

The following command will create a Maildir subdirectory, so if there's one already, back it up:

gunzip < archive.tar.gz | tar -xvspf -

Restore ownership:

chown -R <dovecot-owner-uid>:<dovecot-owner-gid> Maildir
chown -R 58580:58580 Maildir

Logs

On the docker host: /rackstation/dovecot/log