-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added authentication plugins for SASL
- Loading branch information
1 parent
455ba9b
commit 11f8c5f
Showing
2 changed files
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,9 @@ FROM alpine:3.10 | |
MAINTAINER RiotKit <[email protected]> | ||
|
||
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing mailutils \ | ||
&& apk add --update bash sudo rsyslog postfix opendkim mailutils cyrus-sasl spamassassin-client \ | ||
&& apk add --update bash sudo rsyslog postfix opendkim mailutils cyrus-sasl \ | ||
cyrus-sasl-plain cyrus-sasl-crammd5 cyrus-sasl-login cyrus-sasl-digestmd5 cyrus-sasl-gs2 cyrus-sasl-scram \ | ||
cyrus-sasl-ntlm cyrus-sasl-gssapiv2 spamassassin-client \ | ||
opendkim opendkim-utils py3-pip python3 supervisor \ | ||
&& adduser -D -u 1090 spamcuser \ | ||
&& addgroup sasl \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#!/bin/bash |