update maddy and cyrus

This commit is contained in:
Quentin 2024-01-07 21:53:28 +01:00
parent 44ca458c5c
commit 1531600fd0
Signed by: quentin
GPG Key ID: E9602264D639FF68
3 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
FROM debian:buster
FROM debian:sid
ARG DEBIAN_FRONTEND=noninteractive
RUN apt update && \
@ -6,7 +6,7 @@ RUN apt update && \
echo "admins: cyrus" >> /etc/imapd.conf && \
touch /var/lib/cyrus/tls_sessions.db && \
chown cyrus:mail /var/lib/cyrus/tls_sessions.db && \
mkdir /run/cyrus && \
mkdir -p /run/cyrus && \
chown -R cyrus:mail /run/cyrus
COPY entrypoint.sh /usr/local/bin/entrypoint.sh

View File

@ -4,7 +4,7 @@ WORKDIR /root
RUN apt-get update && apt-get install -y openssl && \
openssl req -nodes -new -x509 -subj "/C=DW/ST=Sto/L=Ankh-Morpork /O=Unseen University/OU=Library/CN=Ook/emailAddress=ook@ook.ook" -keyout privkey.pem -out fullchain.pem
FROM foxcpp/maddy:0.6.2
FROM foxcpp/maddy:0.7.0
COPY --from=builder /root/privkey.pem /data/tls/privkey.pem
COPY --from=builder /root/fullchain.pem /data/tls/fullchain.pem

View File

@ -3,7 +3,7 @@
maddy -config /data/maddy.conf run &
sleep 2
maddyctl creds create --password pass test@example.com
maddyctl imap-acct create test@example.com
maddy creds create --password pass test@example.com
maddy imap-acct create test@example.com
wait