mirror of
https://github.com/optim-enterprises-bv/Mailu.git
synced 2025-11-01 18:47:52 +00:00
As discussed on #mailu-dev
Don't attempt to guess what the user wants
This commit is contained in:
@@ -4,11 +4,7 @@ import os
|
||||
import time
|
||||
import subprocess
|
||||
|
||||
hostnames = list(set(os.environ['HOSTNAMES'].split(',')))
|
||||
for hostname in hostnames:
|
||||
if not hostname.startswith('autoconfig.'):
|
||||
hostnames.append(f'autoconfig.{hostname}')
|
||||
hostnames = ','.join(set(hostnames))
|
||||
hostnames = ','.join(set(os.environ['HOSTNAMES'].split(',')))
|
||||
|
||||
command = [
|
||||
"certbot",
|
||||
|
||||
Reference in New Issue
Block a user