[mailman3] Use the correct variable names
There was an inconsistency between variable names in configuration file and how the actual variable is defined. Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
parent
dc978573c4
commit
1dbb42ae89
1 changed files with 5 additions and 5 deletions
|
@ -37,15 +37,15 @@ configuration: /etc/mailman3.d/hyperkitty.cfg
|
|||
[webservice]
|
||||
hostname: localhost
|
||||
port: 8001
|
||||
admin_user: {{ mailman3_rest_api_user }}
|
||||
admin_pass: {{ mailman3_rest_api_pass }}
|
||||
workers: {{ mailman3_rest_api_workers }}
|
||||
admin_user: {{ mailman_rest_api_user }}
|
||||
admin_pass: {{ mailman_rest_api_pass }}
|
||||
workers: {{ mailman_rest_api_workers }}
|
||||
|
||||
{% for item in mailman3_log_items %}
|
||||
|
||||
[loggin.{{ item }}]
|
||||
level: {{ mailman3_log_level }}
|
||||
path: {{ mailman3_log_directory }}/{{ item }}.log
|
||||
level: {{ mailman_log_level }}
|
||||
path: {{ mailman_log_directory }}/{{ item }}.log
|
||||
|
||||
{% endfor %}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue