Commit c508ff23e5338c82c5b913137aa59a82be701c3c
Exists in
master
and in
66 other branches
Merge branch 'mailman_fix' into 'master'
Mailman fix fixed mailman list name and held messages See merge request !26
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
cookbooks/mailman/templates/centos/mm_cfg.py.erb
... | ... | @@ -16,11 +16,11 @@ except: |
16 | 16 | # site-specific items |
17 | 17 | ############################################################### |
18 | 18 | |
19 | -DEFAULT_URL_HOST = '<%= node['config']['external_hostname'] %>' | |
19 | +DEFAULT_URL_HOST = '<%= node['config']['lists_hostname'] %>' | |
20 | 20 | DEFAULT_EMAIL_HOST = '<%= node['config']['lists_hostname'] %>' |
21 | 21 | MTA = None |
22 | 22 | POSTFIX_STYLE_VIRTUAL_DOMAINS = ['<%= node['config']['lists_hostname']%>'] |
23 | -DEFAULT_URL_PATTERN = 'http://%s/mailman/cgi-bin/' | |
23 | +DEFAULT_URL_PATTERN = 'https://%s/mailman/cgi-bin/' | |
24 | 24 | |
25 | 25 | ############################################################### |
26 | 26 | # copied from default mailman config file | ... | ... |