From ef87c2622fb3f06b6e24dc2e1194c77469397e48 Mon Sep 17 00:00:00 2001 From: Thomas Schmid Date: Sun, 7 Nov 2021 01:26:05 +0100 Subject: [PATCH] Add a test user with a complex password --- tools/Docker/dovecot/dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/Docker/dovecot/dockerfile b/tools/Docker/dovecot/dockerfile index 34e60baafc..0fdc478fee 100644 --- a/tools/Docker/dovecot/dockerfile +++ b/tools/Docker/dovecot/dockerfile @@ -8,7 +8,8 @@ RUN adduser vmail -D COPY local.conf /etc/dovecot/local.conf COPY dovecot-openssl.conf /etc/dovecot/dovecot-openssl.conf -RUN echo "user:{plain}pencil::::::" > /etc/dovecot/users +RUN echo "user:{plain}pencil::::::" > /etc/dovecot/users && \ + echo "user2:{plain}€äöü§²³::::::" >> /etc/dovecot/users RUN openssl req -new -x509 -nodes -days 365 \ -config "/etc/dovecot/dovecot-openssl.conf" \ @@ -18,4 +19,4 @@ RUN openssl req -new -x509 -nodes -days 365 \ EXPOSE 143 993 4190 -CMD /usr/sbin/dovecot && tail -f /var/log/dovecot.log \ No newline at end of file +CMD /usr/sbin/dovecot && tail -f /var/log/dovecot.log