This role installs Postfix (MTA), Dovecot (IMAP), DSPAM (antispam), ClamAV (antivirus) and OpenDKIM on Gentoo Linux *.
If you need also a web interface (aka webmail), then try my other role to install Roundcube.
TODO
* When slightly modified it can be used also on other Linux distributions.
Open these ports:
- TCP 25 ... SMTP for inbound e-mails.
- TCP 465 ... SMTP over TLS for sending e-mails (authorized relay).
- TCP 993 ... IMAP over TLS.
- TCP 995 ... POP3 over TLS (disabled by default).
Let’s say that you want to migrate all your mails from Gmail to your own mail server.
Gmail has labels, but IMAP knowns only folders. If a message has multiple labels, it shows up in multiple IMAP folders, but it’s still the same message. Dovecot currently doesn’t have such support, so the migration will copy the message to multiple folders and each instance will use up quota.
If you want to prevent mails duplication, then ensure that each message has at most one label.
Run the following command on the machine that hosts your mail server. You have to provide your current Gmail address and password (the source) and email address of your new local mailbox (the target).
If you have another mail provider than Gmail, then replace imap.gmail.com
with address of your actual IMAP server and change port number or SSL type if needed.
WARNING: The target mailbox must be empty! If not, the migration will probably fail and all mails in the target mailbox will be lost!
This command will not modify your source mailbox (Gmail) in any way (the Dovecot authors say so).
doveadm \
-o [email protected] \
-o imapc_password=SOURCE-PASSWORD \
-o imapc_host=imap.gmail.com \
-o imapc_port=993 \
-o imapc_ssl=imaps \
-o ssl_client_ca_dir=/etc/ssl/certs \
-o imapc_features="rfc822.size fetch-headers" \
-o mail_prefetch_count=20 \
-o mail_fsync=never \
backup -R \
-x '\All' -x '\Flagged' -x '\Important' \
-u [email protected] imapc:
Gmail has virtual folders: “All Mail”, “Starred” and “Important”. From the migration point of view this means that the migration should skip these folders, since their mails are in other folders anyway. That’s what these -x
options do.
If the migration fails with Error: Mailbox INBOX sync: mailbox_delete failed: INBOX can't be deleted, then delete content of $mailsrv_maildir_location
(e.g. /var/lib/dovecot/encom.org/flynn
) and try it again.
Some useful resources I have been using to configure a mail server and migrate mails.
- NSA-proof your e-mail in 2 hours by Drew Crawford
- Sovereign playbooks by Alex Payne
- Postfix, dovecot, dspam and dovecot antispam by Colin Stewart
- Migrating from any IMAP/POP3 server to Dovecot via dsync by Timo Sirainen
- Migration from Gmail to Dovecot
This project is licensed under MIT license.