aboutsummaryrefslogtreecommitdiffstats
path: root/tests/config/dovecot
diff options
context:
space:
mode:
Diffstat (limited to 'tests/config/dovecot')
-rw-r--r--tests/config/dovecot/dhparams.pem8
-rw-r--r--tests/config/dovecot/imapd.conf16
-rw-r--r--tests/config/dovecot/interimap-required-capabilities.conf3
-rw-r--r--tests/config/dovecot/lmtpd.conf9
-rw-r--r--tests/config/dovecot/ssl.conf6
5 files changed, 42 insertions, 0 deletions
diff --git a/tests/config/dovecot/dhparams.pem b/tests/config/dovecot/dhparams.pem
new file mode 100644
index 0000000..7734d2a
--- /dev/null
+++ b/tests/config/dovecot/dhparams.pem
@@ -0,0 +1,8 @@
+-----BEGIN DH PARAMETERS-----
+MIIBCAKCAQEA0J1dU8erRgIk4bMCBMLezjx32pcQpXrdNgl04dxZVxnJ5Ik2gGhA
+uQRbbZhAlHNHtFtp9s4TdQ3Ddrv9SuWXYul8U5BWbcxs4nOtwFU8912SfiuVr/kc
+4ok2zQ1hdMODtaqWS2ZKBmwcuk4QM6e7fMEAkuZX+Dtf2u8bG5G9B7OL5LggYtrP
+cFVNQDtfhs64D+sUKJLWkgeg5NH6nbf+0Gs5a8v3/urHKvoxdVScGmKzF+LsFsBm
+ycQjYeVtA9gLr41mo80rrFysUQqZtNkbdkaXOIA2r9JGTYex1l/XaediR8J94ck9
+dwAe2ubRqWcPjmoLJYQIPKiCbvXuJAd0wwIBAg==
+-----END DH PARAMETERS-----
diff --git a/tests/config/dovecot/imapd.conf b/tests/config/dovecot/imapd.conf
new file mode 100644
index 0000000..6f456f6
--- /dev/null
+++ b/tests/config/dovecot/imapd.conf
@@ -0,0 +1,16 @@
+protocols {
+ imap = yes
+}
+
+service imap-login {
+ inet_listener imap {
+ port = 10143
+ }
+ inet_listener imaps {
+ port = 10993
+ ssl = yes
+ }
+}
+
+# we should avoid sending command lines that are too long
+imap_max_line_length = 8192
diff --git a/tests/config/dovecot/interimap-required-capabilities.conf b/tests/config/dovecot/interimap-required-capabilities.conf
new file mode 100644
index 0000000..10dd8e1
--- /dev/null
+++ b/tests/config/dovecot/interimap-required-capabilities.conf
@@ -0,0 +1,3 @@
+# strict minimum of IMAP capabilities required for interimap to work
+# (in particular, no LITERAL+, MULTIAPPEND, COMPRESS=DEFLATE, SASL-IR)
+imap_capability = IMAP4rev1 ENABLE UIDPLUS LIST-EXTENDED QRESYNC LIST-STATUS
diff --git a/tests/config/dovecot/lmtpd.conf b/tests/config/dovecot/lmtpd.conf
new file mode 100644
index 0000000..23cdc1e
--- /dev/null
+++ b/tests/config/dovecot/lmtpd.conf
@@ -0,0 +1,9 @@
+protocols {
+ lmtp = yes
+}
+
+service lmtp {
+ inet_listener lmtp {
+ port = 10024
+ }
+}
diff --git a/tests/config/dovecot/ssl.conf b/tests/config/dovecot/ssl.conf
new file mode 100644
index 0000000..fd119cd
--- /dev/null
+++ b/tests/config/dovecot/ssl.conf
@@ -0,0 +1,6 @@
+ssl = required
+ssl_server_cert_file = dovecot.rsa.crt
+ssl_server_key_file = dovecot.rsa.key
+ssl_server_dh_file = dhparams.pem
+ssl_min_protocol = TLSv1.2
+ssl_cipher_list = DEFAULT@SECLEVEL=2