Skip to content

Commit 9111ef8

Browse files
committed
install dovecot extensions
1 parent 2583066 commit 9111ef8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

dovecot/Dockerfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,16 @@ ARG DOVECOT_UID=4006
55
ARG DOVECOT_GID=4006
66
ARG VMAIL_UID=4007
77
ARG VMAIL_GID=4007
8-
RUN apt-get update && apt-get install -qy dovecot-core dovecot-imapd dovecot-pop3d
8+
RUN apt-get update && \
9+
apt-get install -qy \
10+
dovecot-core \
11+
dovecot-imapd \
12+
dovecot-pop3d \
13+
dovecot-lmtpd \
14+
dovecot-sieve \
15+
dovecot-managesieved \
16+
dovecot-ldap \
17+
dovecot-antispam
918

1019
RUN groupadd -g ${VMAIL_GID} vmail && \
1120
useradd -u $VMAIL_UID -g vmail -s /bin/false vmail && \

0 commit comments

Comments
 (0)