User Tools

Site Tools


email:install_a_full_secure_mail_server

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
email:install_a_full_secure_mail_server [2020/07/25 16:26] – old revision restored (2016/11/28 16:59) 92.220.10.100email: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 140: Line 140:
 <code> <code>
 mail_location = maildir:~/Maildir mail_location = maildir:~/Maildir
 +</code>
 +
 +For SSL add or amend the following to the /etc/dovecot/dovecot.conf file.
 +
 +<code>
 +disable_plaintext_auth = no
 +ssl = yes
 +ssl_cert_file = </etc/ssl/certs/ssl-cert-snakeoil.pem
 +ssl_key_file = </etc/ssl/private/ssl-cert-snakeoil.key
 +</code>
 +
 +Uncomment following line in /etc/dovecot/dovecot.conf:
 +
 +<code>
 +listen = *
 +</code>
 +
 +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:
 +
 +<code>
 +protocol imap {
 +     listen = *:143
 +     ssl_listen = *:993
 +     ...
 +     }
 +
 +protocol pop3 {
 +     listen = *:110
 +     ssl_listen = *:995
 +     ...
 +     }
 </code> </code>
  
Line 155: Line 186:
  
 See https://help.ubuntu.com/community/Dovecot See https://help.ubuntu.com/community/Dovecot
- 
  
  
Line 467: 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 that is definitely supporting mainly IMAP.  Just follow these basic commands:+Ensure that the email client is definitely supporting IMAP.  Just follow these basic commands:
  
 <code bash> <code bash>
Line 835: 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://help.ubuntu.com/community/Dovecot
 +
 +http://wiki.dovecot.org/
 +
 +
email/install_a_full_secure_mail_server.1595694408.txt.gz · Last modified: 2020/07/25 16:26 by 92.220.10.100

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki