mirror of
https://github.com/friendica/docker
synced 2025-02-19 14:43:26 +01:00
12 lines
333 B
Text
12 lines
333 B
Text
|
# Based on .exmples/dockerfiles/smtp/fpm
|
||
|
FROM friendica/server:fpm
|
||
|
|
||
|
# simple = using an smtp without any credentials (mostly in local networks)
|
||
|
# custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support)
|
||
|
ENV SMTP_TYPE simple
|
||
|
|
||
|
ENV SMTP_HOST smtp.example.org
|
||
|
|
||
|
COPY *.sh /
|
||
|
RUN chmod +x /*.sh
|
||
|
RUN /smtp-config.sh
|