aboutsummaryrefslogtreecommitdiff
path: root/app/email/build/dovecot/conf/dovecot.conf
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2021-09-14 17:46:06 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2021-09-14 17:46:06 +0200
commitacd46fde80585764224395a6de93a217a0ff2a30 (patch)
tree04d1cec052b72476875e532539b1dd7e6341028a /app/email/build/dovecot/conf/dovecot.conf
parent6716687fd7d15867d9b43d1560515f29f8260e95 (diff)
downloadinfrastructure-acd46fde80585764224395a6de93a217a0ff2a30.tar.gz
infrastructure-acd46fde80585764224395a6de93a217a0ff2a30.zip
Remove connection limit dovecot
Diffstat (limited to 'app/email/build/dovecot/conf/dovecot.conf')
-rw-r--r--app/email/build/dovecot/conf/dovecot.conf85
1 files changed, 0 insertions, 85 deletions
diff --git a/app/email/build/dovecot/conf/dovecot.conf b/app/email/build/dovecot/conf/dovecot.conf
deleted file mode 100644
index b0fffbf..0000000
--- a/app/email/build/dovecot/conf/dovecot.conf
+++ /dev/null
@@ -1,85 +0,0 @@
-auth_mechanisms = plain login
-auth_username_format = %u
-log_timestamp = "%Y-%m-%d %H:%M:%S "
-mail_location = maildir:/var/mail/%u
-mail_privileged_group = mail
-
-log_path = /dev/stderr
-info_log_path = /dev/stdout
-debug_log_path = /dev/stdout
-
-protocols = imap sieve lmtp
-
-ssl_cert = < /etc/ssl/certs/dovecot.crt
-ssl_key = < /etc/ssl/private/dovecot.key
-
-service auth {
- inet_listener {
- port = 1337
- }
-}
-
-
-
-service lmtp {
- inet_listener lmtp {
- address = 0.0.0.0
- port = 24
- }
-}
-
-# https://doc.dovecot.org/configuration_manual/authentication/ldap_authentication/
-passdb {
- args = /etc/dovecot/dovecot-ldap.conf
- driver = ldap
-}
-userdb {
- driver = prefetch
-}
-userdb {
- args = /etc/dovecot/dovecot-ldap.conf
- driver = ldap
-}
-
-
-service imap-login {
- inet_listener imap {
- port = 143
- }
- inet_listener imaps {
- port = 993
- }
-}
-
-protocol imap {
- mail_plugins = $mail_plugins imap_sieve
-}
-
-protocol lda {
- auth_socket_path = /var/run/dovecot/auth-master
- info_log_path = /var/log/dovecot-deliver.log
- log_path = /var/log/dovecot-deliver-errors.log
- postmaster_address = postmaster@deuxfleurs.fr
- mail_plugins = $mail_plugins sieve
-}
-
-plugin {
- sieve = file:~/sieve;active=~/dovecot.sieve
- sieve_before = /etc/dovecot/all_before.sieve
-
- # antispam learn
- sieve_plugins = sieve_imapsieve sieve_extprograms
- sieve_global_extensions = +vnd.dovecot.pipe +vnd.dovecot.environment +vnd.dovecot.debug
- sieve_pipe_bin_dir = /usr/bin
-
- imapsieve_mailbox1_name = Junk
- imapsieve_mailbox1_causes = COPY FLAG APPEND
- imapsieve_mailbox1_before = file:/etc/dovecot/report-spam.sieve
-
- imapsieve_mailbox2_name = *
- imapsieve_mailbox2_from = Spam
- imapsieve_mailbox2_causes = COPY APPEND
- imapsieve_mailbox2_before = file:/etc/dovecot/report-ham.sieve
-
-}
-