You've already forked Mailu
mirror of
https://github.com/Mailu/Mailu.git
synced 2025-07-13 01:20:28 +02:00
Fix a typo when renaming the domain variable
This commit is contained in:
@ -45,6 +45,7 @@ def certbot_install(domain):
|
|||||||
@scheduler.scheduled_job('cron', hour=2, minute=0)
|
@scheduler.scheduled_job('cron', hour=2, minute=0)
|
||||||
def generate_cert():
|
def generate_cert():
|
||||||
print("Generating TLS certificates using Certbot")
|
print("Generating TLS certificates using Certbot")
|
||||||
|
hostname = app.config["HOSTNAME"]
|
||||||
email = "{}@{}".format(app.config["POSTMASTER"], app.config["DOMAIN"])
|
email = "{}@{}".format(app.config["POSTMASTER"], app.config["DOMAIN"])
|
||||||
result = certbot_command(
|
result = certbot_command(
|
||||||
"certonly",
|
"certonly",
|
||||||
@ -52,7 +53,7 @@ def generate_cert():
|
|||||||
"--agree-tos",
|
"--agree-tos",
|
||||||
"--preferred-challenges", "http",
|
"--preferred-challenges", "http",
|
||||||
"--email", email,
|
"--email", email,
|
||||||
"-d", app.config["HOSTNAME"],
|
"-d", hostname,
|
||||||
# The port is hardcoded in the nginx image as well, we should find
|
# The port is hardcoded in the nginx image as well, we should find
|
||||||
# a more suitable way to go but this will do until we have a proper
|
# a more suitable way to go but this will do until we have a proper
|
||||||
# daemon handling certbot stuff
|
# daemon handling certbot stuff
|
||||||
@ -63,6 +64,6 @@ def generate_cert():
|
|||||||
result.stdout.decode("utf8") + result.stdout.decode("utf8")))
|
result.stdout.decode("utf8") + result.stdout.decode("utf8")))
|
||||||
else:
|
else:
|
||||||
print("Successfully generated or renewed TLS certificates")
|
print("Successfully generated or renewed TLS certificates")
|
||||||
if certbot_install(domain):
|
if certbot_install(hostname):
|
||||||
print("Reloading TLS-dependant services")
|
print("Reloading TLS-dependant services")
|
||||||
dockercli.reload("http", "smtp", "imap")
|
dockercli.reload("http", "smtp", "imap")
|
||||||
|
Reference in New Issue
Block a user