Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
envsetup
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mediaserver
envsetup
Commits
356e16ed
Commit
356e16ed
authored
7 years ago
by
Stéphane Diemer
Browse files
Options
Downloads
Patches
Plain Diff
Added postfix relay auth support (refs
#21500
).
parent
f09fddc6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
2.Common_services/1.Postfix/0_setup.py
+20
-0
20 additions, 0 deletions
2.Common_services/1.Postfix/0_setup.py
global-conf.sh
+2
-0
2 additions, 0 deletions
global-conf.sh
with
22 additions
and
0 deletions
2.Common_services/1.Postfix/0_setup.py
+
20
−
0
View file @
356e16ed
...
@@ -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
)
This diff is collapsed.
Click to expand it.
global-conf.sh
+
2
−
0
View file @
356e16ed
...
@@ -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'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment