[mailman3] Use the same variable name everywhere

Signed-off-by: Michal Konecny <mkonecny@redhat.com>
This commit is contained in:
Michal Konecny 2024-06-27 13:00:45 +02:00
parent 897190bcc6
commit 1d562201ed
2 changed files with 4 additions and 4 deletions

View file

@ -44,8 +44,8 @@ enable: yes
[webservice] [webservice]
hostname: localhost hostname: localhost
port: 8001 port: 8001
admin_user: {{ mailman_rest_api_user }} admin_user: {{ mailman_rest_api_username }}
admin_pass: {{ mailman_rest_api_pass }} admin_pass: {{ mailman_rest_api_password }}
workers: {{ mailman_rest_api_workers }} workers: {{ mailman_rest_api_workers }}
{% for item in mailman_log_items %} {% for item in mailman_log_items %}

View file

@ -38,8 +38,8 @@ ALLOWED_HOSTS = [
# Mailman API credentials # Mailman API credentials
MAILMAN_REST_API_URL = 'http://localhost:8001' MAILMAN_REST_API_URL = 'http://localhost:8001'
MAILMAN_REST_API_USER = '{{ mailman_rest_api_user }}' MAILMAN_REST_API_USER = '{{ mailman_rest_api_username }}'
MAILMAN_REST_API_PASS = '{{ mailman_rest_api_pass }}' MAILMAN_REST_API_PASS = '{{ mailman_rest_api_password }}'
MAILMAN_ARCHIVER_KEY = '{{ mailman_hyperkitty_archiver_key }}' MAILMAN_ARCHIVER_KEY = '{{ mailman_hyperkitty_archiver_key }}'
MAILMAN_ARCHIVER_FROM = ('127.0.0.1', '::1') MAILMAN_ARCHIVER_FROM = ('127.0.0.1', '::1')