Evironment variables for configuring mail #1003
Unanswered
Morpheus636
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I was literally checking mails 😂
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on documentation for the Docker image. Is there anywhere I can look for the environment variables used for configuring mail? So far I've been able to find the following from reading the source, but I'm missing anything about postmark and mandrill. (I believe sendmail just needs the first 3 settings to be configured, but if someone could fact-check me on that, I would appreciate it.)
MAIL_MAILER
: The driver to use for sending email.[log, sendmail, smtp, mailgun, postmark, mandrill]
Default: logMAIL_FROM_ADDRESS
: The email address from which to send email. Default: no-reply@example.comMAIL_FROM_NAME
: The name from which to send email. Default: Pelican AdminIf using SMTP
MAIL_HOST
: The hostname of your SMTP server.MAIL_PORT
: The port of your SMTP server.MAIL_ENCRYPTION
: What transport security type to use for the SMTP server.[ssl, tls, none]
MAIL_USERNAME
: The username with which to log into your SMTP server.MAIL_PASSWORD
: The password with which to log into your SMTP server.If using Mailgun
MAILGUN_DOMAIN
: Domain name used to send the message.MAILGUN_SECRET
: Your Mailgun API key.MAILGUN_ENDPOINT
: The domain from your Mailgun API base URL. See https://documentation.mailgun.com/docs/mailgun/api-reference/#base-url `[api.mailgun.net, api.eu.mailgun.net]Beta Was this translation helpful? Give feedback.
All reactions