Skip to content
Snippets Groups Projects
Commit 356e16ed authored by Stéphane Diemer's avatar Stéphane Diemer
Browse files

Added postfix relay auth support (refs #21500).

parent f09fddc6
No related branches found
No related tags found
No related merge requests found
...@@ -32,3 +32,23 @@ def setup(interactive=True): ...@@ -32,3 +32,23 @@ def setup(interactive=True):
'newaliases', 'newaliases',
] ]
utils.run_commands(cmds) utils.run_commands(cmds)
# Setup authentication if any
user = utils.get_conf('EMAIL_SMTP_USER')
if user:
utils.log('Enabling authentication for SMTP relay.')
pwd = utils.get_conf('EMAIL_SMTP_PWD', '')
with open('/etc/postfix/sasl-passwords', 'w') as fo:
fo.write('%s %s:%s\n' % (server, user, pwd))
auth_conf = '''
# SMTP relay authentication
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl-passwords
smtp_sasl_security_options = noanonymous
'''
with open('/etc/postfix/main.cf', 'a') as fo:
fo.write(auth_conf)
cmds = [
'postmap hash:/etc/postfix/sasl-passwords',
'service postfix restart',
]
utils.run_commands(cmds)
...@@ -35,6 +35,8 @@ SHELL_ADMIN_PWD= ...@@ -35,6 +35,8 @@ SHELL_ADMIN_PWD=
# -- Emails -- # -- Emails --
EMAIL_SMTP_SERVER= EMAIL_SMTP_SERVER=
EMAIL_SMTP_USER=
EMAIL_SMTP_PWD=
EMAIL_SENDER='support@ubicast.eu' EMAIL_SENDER='support@ubicast.eu'
# separate emails with comas in EMAIL_ADMINS # separate emails with comas in EMAIL_ADMINS
EMAIL_ADMINS='sysadmin@ubicast.eu' EMAIL_ADMINS='sysadmin@ubicast.eu'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment