email:install_a_full_secure_mail_server
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
email:install_a_full_secure_mail_server [2020/07/25 16:26] – old revision restored (2016/11/28 16:40) 92.220.10.100 | email:install_a_full_secure_mail_server [2020/07/26 11:22] (current) – old revision restored (2016/11/28 17:09) 158.69.243.115 | ||
---|---|---|---|
Line 57: | Line 57: | ||
- **Exim4** – the SMTP daemon. | - **Exim4** – the SMTP daemon. | ||
- | - **Courier** – communication extension for Exim4 to have IMAP and POP access to emails. | + | - **Courier** – communication extension for Exim4 to have IMAP and POP access to emails; or |
+ | - **Dovecot** - communication extension for Exim4 to have IMAP and POP access to emails. | ||
- **Swaks** – Swiss army knife for SMTP troubleshooting. | - **Swaks** – Swiss army knife for SMTP troubleshooting. | ||
- **SSL-cert packages** – for easy work with generating certificates in later parts of the tutorial. | - **SSL-cert packages** – for easy work with generating certificates in later parts of the tutorial. | ||
Line 69: | Line 70: | ||
<code bash> | <code bash> | ||
apt-get update | apt-get update | ||
- | apt-get install exim4-daemon-heavy courier-authdaemon courier-imap courier-imap-ssl courier-pop courier-pop-ssl | + | apt-get install exim4-daemon-heavy |
+ | </ | ||
+ | |||
+ | Decide on using Courier or Dovecot. | ||
+ | |||
+ | ==== For Courier ==== | ||
+ | |||
+ | <code bash> | ||
+ | apt-get install | ||
</ | </ | ||
Line 89: | Line 98: | ||
</ | </ | ||
+ | |||
+ | |||
+ | ==== For Dovecot ==== | ||
+ | |||
+ | <code bash> | ||
+ | apt-get install dovecot-imapd dovecot-pop3d | ||
+ | </ | ||
+ | |||
+ | Edit the file / | ||
+ | |||
+ | < | ||
+ | protocols = pop3 pop3s imap imaps | ||
+ | </ | ||
+ | |||
+ | In addition, add the following line in the " | ||
+ | |||
+ | < | ||
+ | pop3_uidl_format = %08Xu%08Xv | ||
+ | </ | ||
+ | |||
+ | Configure Dovecot to use the maildir mailbox format. | ||
+ | |||
+ | < | ||
+ | mail_location = maildir: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE**: | ||
+ | </ | ||
+ | |||
+ | or alternatively change to: | ||
+ | |||
+ | < | ||
+ | mail_location = maildir:/ | ||
+ | </ | ||
+ | |||
+ | <WRAP note> | ||
+ | If !include conf.d/ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | mail_location = maildir: | ||
+ | </ | ||
+ | |||
+ | For SSL add or amend the following to the / | ||
+ | |||
+ | < | ||
+ | disable_plaintext_auth = no | ||
+ | ssl = yes | ||
+ | ssl_cert_file = </ | ||
+ | ssl_key_file = </ | ||
+ | </ | ||
+ | |||
+ | Uncomment following line in / | ||
+ | |||
+ | < | ||
+ | listen = * | ||
+ | </ | ||
+ | |||
+ | However, this method may cause conflicts with other servers already listening on other ports. The alternative (and probably more desirable) method, then, is to enable the specific listening ports for the protocols that are intended to be used. For example, for IMAP/IMAPS and POP3/POP3S, add to the correct protocol imap and protocol pop3 sections: | ||
+ | |||
+ | < | ||
+ | protocol imap { | ||
+ | | ||
+ | | ||
+ | ... | ||
+ | } | ||
+ | |||
+ | protocol pop3 { | ||
+ | | ||
+ | | ||
+ | ... | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | If you want to see the config Dovecot is currently using (including the mail_location), | ||
+ | |||
+ | <code bash> | ||
+ | dovecot -n | ||
+ | </ | ||
+ | |||
+ | Start dovecot: | ||
+ | |||
+ | <code bash> | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | See https:// | ||
+ | |||
+ | |||
+ | ==== Verify the setup ==== | ||
Verification of the installation can be done by checking the running ports with a netstat command. | Verification of the installation can be done by checking the running ports with a netstat command. | ||
Line 107: | Line 207: | ||
In this example, each user will have their email inside their own home directory under ~/ | In this example, each user will have their email inside their own home directory under ~/ | ||
+ | |||
+ | It's a good idea to pre-create the Maildir for future users: | ||
+ | |||
+ | <code bash> | ||
+ | sudo maildirmake.dovecot / | ||
+ | sudo maildirmake.dovecot / | ||
+ | sudo maildirmake.dovecot / | ||
+ | sudo maildirmake.dovecot / | ||
+ | sudo maildirmake.dovecot / | ||
+ | </ | ||
+ | |||
+ | Then, for an existing user: | ||
<code bash> | <code bash> | ||
- | maildirmake | + | sudo cp -r /etc/skel/Maildir / |
+ | sudo chown -R myuser: | ||
+ | sudo chmod -R 700 / | ||
</ | </ | ||
- | For existing users, you have to do this manually (or have a script | + | or for the example test user " |
<code bash> | <code bash> | ||
Line 383: | Line 497: | ||
===== Step 10: Configure courier for IMAP ===== | ===== Step 10: Configure courier for IMAP ===== | ||
- | You want this because it is most useful for your smartphone access | + | Ensure |
<code bash> | <code bash> | ||
Line 751: | Line 865: | ||
The next step is to check how well SPF/DKIM and other functions are filtering out incoming spam! | The next step is to check how well SPF/DKIM and other functions are filtering out incoming spam! | ||
+ | |||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | http:// | ||
+ | |||
+ |
email/install_a_full_secure_mail_server.1595694402.txt.gz · Last modified: 2020/07/25 16:26 by 92.220.10.100