add courier imap
This commit is contained in:
parent
1531600fd0
commit
152d5b7604
4 changed files with 30 additions and 0 deletions
|
@ -20,3 +20,10 @@ services:
|
|||
- "/dev/log:/dev/log"
|
||||
ports:
|
||||
- "143:143/tcp"
|
||||
|
||||
courier:
|
||||
build:
|
||||
context: ./docker/courier/
|
||||
image: courier
|
||||
ports:
|
||||
- "144:143/tcp"
|
||||
|
|
10
tests/instrumentation/docker/courier/Dockerfile
Normal file
10
tests/instrumentation/docker/courier/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM debian:sid
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y courier-imap
|
||||
RUN useradd -m debian -p '$1$B8Mq5Hki$fg5f4SndVNWsfq.mJiqbI0'
|
||||
USER debian
|
||||
RUN maildirmake /home/debian/Maildir
|
||||
USER root
|
||||
COPY ./entrypoint.sh /entrypoint
|
||||
ENTRYPOINT ["/entrypoint"]
|
5
tests/instrumentation/docker/courier/entrypoint.sh
Executable file
5
tests/instrumentation/docker/courier/entrypoint.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
/usr/lib/courier/courier-authlib/authdaemond &
|
||||
/usr/sbin/couriertcpd -address=0 -maxprocs=40 -maxperip=20 -access=/etc/courier/imapaccess.dat -nodnslookup -noidentlookup 143 /usr/lib/courier/courier/imaplogin /usr/bin/imapd Maildir
|
|
@ -51,6 +51,14 @@ parameters = {
|
|||
"ext": ".cyrus",
|
||||
"mb": "INBOX."+base_test_mb,
|
||||
},
|
||||
"courier": {
|
||||
"con": IMAP4,
|
||||
"port": 144,
|
||||
"user": "debian",
|
||||
"pw": "debian",
|
||||
"ext": ".courier",
|
||||
"mb": base_test_mb,
|
||||
},
|
||||
"stalwart": {
|
||||
"con": IMAP4_SSL,
|
||||
"port": 1993,
|
||||
|
|
Loading…
Reference in a new issue