DNS: distinguish between mail_server and mail_domain

This commit is contained in:
missytake
2023-11-13 17:17:07 +01:00
parent 5305dfab12
commit c7625fad81
2 changed files with 16 additions and 9 deletions

View File

@@ -295,7 +295,7 @@ def deploy_chatmail(mail_domain: str, mail_server: str, dkim_selector: str) -> N
dovecot_need_restart = _configure_dovecot(mail_server, debug=debug)
postfix_need_restart = _configure_postfix(mail_domain, debug=debug)
opendkim_need_restart = _configure_opendkim(mail_domain, dkim_selector)
nginx_need_restart = _configure_nginx(mail_domain)
nginx_need_restart = _configure_nginx(mail_domain, mail_server)
# deploy web pages and info if we have them
pkg_root = importlib.resources.files(__package__)