ubuntu:email:install_dovecot
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:email:install_dovecot [2020/12/06 13:23] – peter | ubuntu:email:install_dovecot [2020/12/06 13:30] (current) – peter | ||
---|---|---|---|
Line 124: | Line 124: | ||
</ | </ | ||
+ | ---- | ||
+ | |||
+ | ==== Configuring Dovecot as the Local Delivery Agent ==== | ||
+ | |||
+ | The following is sufficient to configure the Dovecot LDA: | ||
+ | |||
+ | <file bash / | ||
+ | ... | ||
+ | protocol lda { | ||
+ | postmaster_address = admin@sharewiz.net | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Firewall Configuration ==== | ||
+ | |||
+ | Open firewall ports: | ||
+ | |||
+ | * 993: IMAP. | ||
+ | * 110: POP3. Only needed if using POP. | ||
+ | * 587: SMTP. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Running Dovecot ===== | ||
+ | |||
+ | Start Dovecot using: | ||
+ | |||
+ | <code bash> | ||
+ | systemctl start dovecot | ||
+ | </ | ||
+ | |||
+ | If Dovecot is already running, and you have changed a configuration file, you can get Dovecot to reread these files using: | ||
+ | |||
+ | <code bash> | ||
+ | systemctl reload dovecot | ||
+ | </ | ||
+ | |||
+ | You can stop Dovecot with: | ||
+ | |||
+ | <code bash> | ||
+ | systemctl stop dovecot | ||
+ | </ | ||
+ | |||
+ | You can get Dovecot status with: | ||
+ | |||
+ | <code bash> | ||
+ | systemctl status dovecot | ||
+ | </ | ||
+ | |||
+ | Once Dovecot is running, you should configure your email client and confirm that you can both view the mailboxes and you can send messages. | ||
+ | |||
+ | * Look in **/ | ||
+ | |||
+ | Once Dovecot is running properly, you can enable it so that it starts automatically when the server starts using: | ||
+ | |||
+ | <code bash> | ||
+ | systemctl enable dovecot | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Configuring Email Client ===== | ||
+ | |||
+ | To configure Thunderbird to use your new Postfix/ | ||
+ | |||
+ | < | ||
+ | IMAP server: sharewiz.net | ||
+ | Port: 993 | ||
+ | Security: SSL/TLS | ||
+ | Authentication Method: normal password | ||
+ | Username: peter@sharewiz.net | ||
+ | SMTP server: sharewiz.net | ||
+ | Port: 587 | ||
+ | Security: STARTTLS | ||
+ | Authentication Method: normal password | ||
+ | Username: peter@sharewiz.net | ||
+ | </ | ||
+ | |||
+ | To configure Mutt to use your new Postfix/ | ||
+ | |||
+ | < | ||
+ | set spoolfile=imaps:// | ||
+ | set folder=imaps:// | ||
+ | set smtp_url=smtp:// | ||
+ | # ^ do not use smtps here | ||
+ | |||
+ | # Alternative ways of giving username and password. | ||
+ | set imap_user=" | ||
+ | set imap_pass=" | ||
+ | set smtp_pass=$imap_pass | ||
+ | set smtp_authenticators=" | ||
+ | </ |
ubuntu/email/install_dovecot.1607260985.txt.gz · Last modified: 2020/12/06 13:23 by peter