Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| email:configure-dovecot [2026/01/15 16:08] – willy | email:configure-dovecot [2026/04/07 06:49] (current) – willy | ||
|---|---|---|---|
| Line 74: | Line 74: | ||
| Sieve let's you create custom filters that will filter your inbound emails. | Sieve let's you create custom filters that will filter your inbound emails. | ||
| - | |||
| - | Changes in **conf.d/ | ||
| - | < | ||
| - | protocol lmtp { | ||
| - | mail_plugins = $mail_plugins sieve | ||
| - | } | ||
| - | </ | ||
| - | |||
| - | And specify which folder should store the filters. | ||
| Changes in **conf.d/ | Changes in **conf.d/ | ||
| < | < | ||
| sieve_script personal { | sieve_script personal { | ||
| + | driver = file | ||
| path = / | path = / | ||
| + | active_path = / | ||
| } | } | ||
| </ | </ | ||
| + | |||
| + | And enable sieve for lmtp (local delivery), edit **conf.d/ | ||
| + | < | ||
| + | protocol lmtp { | ||
| + | mail_plugins { | ||
| + | sieve = yes | ||
| + | } | ||
| + | </ | ||
| + | |||
| ===== Setup authentication ===== | ===== Setup authentication ===== | ||
| Line 118: | Line 120: | ||
| ssl = yes | ssl = yes | ||
| ssl_server { | ssl_server { | ||
| - | cert_file = / | + | cert_file = / |
| - | key_file = / | + | key_file = / |
| } | } | ||
| </ | </ | ||
| - | |||
| - | |||
| ===== Testing ===== | ===== Testing ===== | ||