aboutsummaryrefslogtreecommitdiff
path: root/app/build/postfix
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/postfix
parent0c4ee40e01c95d7bf73236cbead5cc261f67eb9d (diff)
downloadinfrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.tar.gz
infrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.zip
Proposal: reorganize app/ folder by modules
Diffstat (limited to 'app/build/postfix')
-rw-r--r--app/build/postfix/Dockerfile13
-rw-r--r--app/build/postfix/README.md18
-rwxr-xr-xapp/build/postfix/entrypoint.sh31
3 files changed, 0 insertions, 62 deletions
diff --git a/app/build/postfix/Dockerfile b/app/build/postfix/Dockerfile
deleted file mode 100644
index 0c74fdc..0000000
--- a/app/build/postfix/Dockerfile
+++ /dev/null
@@ -1,13 +0,0 @@
-FROM amd64/debian:buster
-
-ARG VERSION
-
-RUN apt-get update && \
- apt-get install -y \
- postfix=$VERSION \
- postfix-ldap
-
-COPY entrypoint.sh /usr/local/bin/entrypoint
-
-ENTRYPOINT ["/usr/local/bin/entrypoint"]
-CMD ["postfix", "start-fg"]
diff --git a/app/build/postfix/README.md b/app/build/postfix/README.md
deleted file mode 100644
index ac44fc0..0000000
--- a/app/build/postfix/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-```
-sudo docker build -t superboum/amd64_postfix:v1 .
-```
-
-```
-sudo docker run -t -i \
- -e TLSINFO="/C=FR/ST=Bretagne/L=Rennes/O=Deuxfleurs/CN=smtp.deuxfleurs.fr" \
- -e MAILNAME="smtp.deuxfleurs.fr" \
- -p 25:25 \
- -p 465:465 \
- -p 587:587 \
- -v `pwd`/../../ansible/roles/container_conf/files/email/postfix-conf:/etc/postfix-conf \
- -v /mnt/glusterfs/email/postfix-ssl/private:/etc/ssl/private \
- -v /mnt/glusterfs/email/postfix-ssl/certs:/etc/ssl/certs \
- superboum/amd64_postfix:v1 \
- bash
-```
-
diff --git a/app/build/postfix/entrypoint.sh b/app/build/postfix/entrypoint.sh
deleted file mode 100755
index fcf1a66..0000000
--- a/app/build/postfix/entrypoint.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-if [[ ! -f /etc/ssl/certs/postfix.crt || ! -f /etc/ssl/private/postfix.key ]]; then
- cd /root
- openssl req \
- -new \
- -newkey rsa:4096 \
- -days 3650 \
- -nodes \
- -x509 \
- -subj ${TLSINFO} \
- -keyout postfix.key \
- -out postfix.crt
-
- mkdir -p /etc/ssl/{certs,private}/
-
- cp postfix.crt /etc/ssl/certs/postfix.crt
- cp postfix.key /etc/ssl/private/postfix.key
- chmod 400 /etc/ssl/certs/postfix.crt
- chmod 400 /etc/ssl/private/postfix.key
-fi
-
-# A way to map files inside the postfix folder :s
-for file in $(ls /etc/postfix-conf); do
- cp /etc/postfix-conf/${file} /etc/postfix/${file}
-done
-
-echo ${MAILNAME} > /etc/mailname
-postmap /etc/postfix/transport
-
-exec "$@"