Created
April 6, 2023 13:30
-
-
Save jschpp/06da24e704fa47db71eb71c10c2dcbdb to your computer and use it in GitHub Desktop.
my dovecot conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2.3.19.1 (9b53102964): /etc/dovecot/dovecot.conf | |
# Pigeonhole version 0.5.19 (4eae2f79) | |
# OS: OpenBSD 7.2 amd64 | |
# Hostname: mx.jschpp.de | |
first_valid_uid = 1000 | |
mail_debug = yes | |
mail_location = maildir:~/Maildir | |
managesieve_notify_capability = mailto | |
managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date index ihave duplicate mime foreverypart extracttext imapsieve vnd.dovecot.imapsieve | |
mbox_write_locks = fcntl | |
mmap_disable = yes | |
namespace inbox { | |
inbox = yes | |
location = | |
mailbox Drafts { | |
special_use = \Drafts | |
} | |
mailbox Junk { | |
special_use = \Junk | |
} | |
mailbox Sent { | |
special_use = \Sent | |
} | |
mailbox "Sent Messages" { | |
special_use = \Sent | |
} | |
mailbox Trash { | |
special_use = \Trash | |
} | |
prefix = | |
} | |
passdb { | |
driver = bsdauth | |
} | |
plugin { | |
imapsieve_mailbox1_before = file:/usr/local/lib/dovecot/sieve/report-spam.sieve | |
imapsieve_mailbox1_causes = COPY APPEND | |
imapsieve_mailbox1_name = Junk | |
imapsieve_mailbox2_before = file:/usr/local/lib/dovecot/sieve/report-ham.sieve | |
imapsieve_mailbox2_causes = COPY | |
imapsieve_mailbox2_from = Junk | |
imapsieve_mailbox2_name = * | |
imapsieve_mailbox3_before = file:/usr/local/lib/dovecot/sieve/report-ham.sieve | |
imapsieve_mailbox3_causes = APPEND | |
imapsieve_mailbox3_name = Inbox | |
sieve = file:~/sieve;active=~/.dovecot.sieve | |
sieve_global_extensions = +vnd.dovecot.pipe +vnd.dovecot.environment | |
sieve_pipe_bin_dir = /usr/local/lib/dovecot/sieve | |
sieve_plugins = sieve_imapsieve sieve_extprograms | |
} | |
protocols = imap pop3 lmtp sieve | |
service managesieve-login { | |
inet_listener sieve { | |
port = 4190 | |
} | |
process_min_avail = 1 | |
service_count = 1 | |
} | |
ssl_cert = </etc/ssl/mx.jschpp.de.fullchain.pem | |
ssl_key = # hidden, use -P to show it | |
userdb { | |
driver = passwd | |
} | |
protocol lmtp { | |
mail_plugins = " sieve" | |
} | |
protocol lda { | |
mail_plugins = " sieve" | |
} | |
protocol imap { | |
mail_plugins = " imap_sieve" | |
} | |
protocol sieve { | |
managesieve_implementation_string = Dovecot Pigeonhole | |
managesieve_logout_format = bytes=%i/%o | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment