Add docs for how to create a smtp gateway

This commit is contained in:
Eike Kettner
2020-06-14 21:35:20 +02:00
parent 151e831b1c
commit 09579eef16
11 changed files with 320 additions and 15 deletions

View File

@ -0,0 +1,8 @@
FROM alpine:latest
RUN apk add --no-cache exim curl
USER exim
COPY ./exim.conf /etc/exim/
EXPOSE 25
ENTRYPOINT ["exim"]
CMD ["-bdf", "-v", "-q1m"]