aboutsummaryrefslogtreecommitdiff
path: root/app/build/opendkim
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-01-16 17:07:01 +0100
committerAlex Auvolat <alex@adnab.me>2021-01-16 17:07:01 +0100
commitc74dc92febd1841c8ea5ff31caab0f941d57527d (patch)
treed05a203d95cac988952799667ec43c327a5d9038 /app/build/opendkim
parent0c4ee40e01c95d7bf73236cbead5cc261f67eb9d (diff)
downloadinfrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.tar.gz
infrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.zip
Proposal: reorganize app/ folder by modules
Diffstat (limited to 'app/build/opendkim')
-rw-r--r--app/build/opendkim/Dockerfile8
-rw-r--r--app/build/opendkim/README.md12
-rw-r--r--app/build/opendkim/opendkim.conf12
3 files changed, 0 insertions, 32 deletions
diff --git a/app/build/opendkim/Dockerfile b/app/build/opendkim/Dockerfile
deleted file mode 100644
index 70a39e4..0000000
--- a/app/build/opendkim/Dockerfile
+++ /dev/null
@@ -1,8 +0,0 @@
-FROM amd64/debian:buster
-
-RUN apt-get update && \
- apt-get dist-upgrade -y && \
- apt-get install -y opendkim opendkim-tools
-
-COPY ./opendkim.conf /etc/opendkim.conf
-CMD opendkim -f -v -x /etc/opendkim.conf
diff --git a/app/build/opendkim/README.md b/app/build/opendkim/README.md
deleted file mode 100644
index e146125..0000000
--- a/app/build/opendkim/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-```
-sudo docker build -t superboum/amd64_opendkim:v1 .
-```
-
-```
-sudo docker run -t -i \
- -v `pwd`/conf:/etc/dkim \
- -v /dev/log:/dev/log \
- -p 8999:8999
- superboum/amd64_opendkim:v1
- opendkim -f -v -x /etc/opendkim.conf
-```
diff --git a/app/build/opendkim/opendkim.conf b/app/build/opendkim/opendkim.conf
deleted file mode 100644
index 0d6465f..0000000
--- a/app/build/opendkim/opendkim.conf
+++ /dev/null
@@ -1,12 +0,0 @@
-Syslog yes
-SyslogSuccess yes
-LogWhy yes
-UMask 007
-Mode sv
-OversignHeaders From
-TrustAnchorFile /usr/share/dns/root.key
-KeyTable refile:/etc/dkim/keytable
-SigningTable refile:/etc/dkim/signingtable
-ExternalIgnoreList refile:/etc/dkim/trusted
-InternalHosts refile:/etc/dkim/trusted
-Socket inet:8999