mirror of
https://github.com/friendica/docker
synced 2025-12-20 17:49:41 +01:00
| .. | ||
| apache | ||
| fpm | ||
| fpm-alpine | ||
| README.md | ||
SMTP section
In this subfolder are examples how to add SMTP support to the Friendica docker images.
Each directory represents the image-version of the Dockerfile.
It uses the stable-branches of the Friendica Dockerfiles out-of-the-box.
So if you want to use the develop-branch, you have to add the prefix develop- at the FROMclause (e.g. FROM friendica:apache -> FROM friendica:develop-apache)
SMTP_HOSTThe host/IP of the SMTP-MTA
Custom SMTP Settings
Currently, only apache and fpm supports custom SMTP settings.
You have to set SMTP_TYPE to custom for other settings than SMTP_HOST (default: simple)
SMTP Authentication
SMTP_USERNAMEUsername for the SMTP-MTA user to authenticate.SMTP_PASSWORDPassword for the SMTP-MTA user to authenticate.
Additional settings
SMTP_PORTThe port of the SMTP-MTA (default:25)SMTP_AUTHThe authentication string for the SMTP-MTA (default:A p)SMTP_TRUST_AUTH_MECHThe trusted authentication mechanism for the SMTP-MTA (default:EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN)SMTP_AUTH_MECHThe authentication mechanism for the SMTP-MTA (default:EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 LOGIN PLAIN)