Hi,
A quick thing i found while trying to get the mail part working.
if you setup 3rd party smtp email in the config.py to use unencrypted and anonymous connection (aka no user or password), the field in the docker-compose file are replaced by "none" after running the script.
mail:
#! types are "localhelper" , "localrelay" ,"3rd"
#! "localhelper" uses fxa-auth-local-mail-helper which self sending and receiving and smtp_host/smtp_port/smtp_user/smtp_pass/smtp_secure do not affect.
#! "localrelay" use exim-sender and smtp_host/smtp_port/smtp_user/smtp_pass/smtp_secure do not affect.
#! "3rd" send mail to 3rd (like gmail etc)
type: "3rd"
#! for "3rd": refer to your mail service provider
smtp_host: mailserver.domain.com
smtp_port: 25
smtp_user:
smtp_pass:
smtp_secure: false
Hi, A quick thing i found while trying to get the mail part working. if you setup 3rd party smtp email in the config.py to use unencrypted and anonymous connection (aka no user or password), the field in the docker-compose file are replaced by "none" after running the script.
translate to
but should be
Thank for the hard work