1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00
Mailu/webmails/start.py

126 lines
4.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2018-10-23 10:58:36 +02:00
import os
import logging
import sys
2019-11-21 14:46:38 +02:00
import subprocess
import shutil
import hmac
2018-12-07 13:37:40 +02:00
from socrate import conf, system
env = os.environ
2022-12-08 13:46:31 +02:00
system.set_env(['ROUNDCUBE','SNUFFLEUPAGUS'])
2018-12-07 13:37:40 +02:00
# jinja context
context = {}
context.update(env)
context["MAX_FILESIZE"] = str(int(int(env.get("MESSAGE_SIZE_LIMIT", "50000000")) * 0.66 / 1048576))
2023-01-28 19:30:33 +02:00
# Get the first DNS server
with open("/etc/resolv.conf") as handle:
content = handle.read().split()
resolver = content[content.index("nameserver") + 1]
context["RESOLVER"] = f"[{resolver}]" if ":" in resolver else resolver
db_uri = env.get("SQLALCHEMY_DATABASE_URI_ROUNDCUBE", "sqlite:////data/roundcube.db")
db_flavor = env.get("ROUNDCUBE_DB_FLAVOR")
2021-06-18 23:21:24 +02:00
if db_flavor == "sqlite":
context["DB_DSNW"] = "sqlite:////data/roundcube.db"
2021-06-18 23:21:24 +02:00
elif db_flavor == "mysql":
context["DB_DSNW"] = "mysql://%s:%s@%s/%s" % (
env.get("ROUNDCUBE_DB_USER", "roundcube"),
env.get("ROUNDCUBE_DB_PW"),
env.get("ROUNDCUBE_DB_HOST", "database"),
env.get("ROUNDCUBE_DB_NAME", "roundcube")
2021-06-18 23:21:24 +02:00
)
elif db_flavor == "postgresql":
context["DB_DSNW"] = "pgsql://%s:%s@%s/%s" % (
env.get("ROUNDCUBE_DB_USER", "roundcube"),
env.get("ROUNDCUBE_DB_PW"),
env.get("ROUNDCUBE_DB_HOST", "database"),
env.get("ROUNDCUBE_DB_NAME", "roundcube")
2021-06-18 23:21:24 +02:00
)
elif db_uri:
context["DB_DSNW"] = db_uri
2019-11-19 13:22:09 +02:00
else:
print(f"Unknown ROUNDCUBE_DB_FLAVOR: {db_flavor}", file=sys.stderr)
2019-11-19 13:22:09 +02:00
exit(1)
conf.jinja("/etc/snuffleupagus.rules.tpl", context, "/etc/snuffleupagus.rules")
# roundcube plugins
# (using "dict" because it is ordered and "set" is not)
plugins = dict((p, None) for p in env.get("ROUNDCUBE_PLUGINS", "").replace(" ", "").split(",") if p and os.path.isdir(os.path.join("/var/www/roundcube/plugins", p)))
if plugins:
plugins["mailu"] = None
else:
plugins = dict((k, None) for k in ["archive", "zipdownload", "markasjunk", "managesieve", "enigma", "carddav", "mailu"])
context["PLUGINS"] = ",".join(f"'{p}'" for p in plugins)
# add overrides
2022-11-10 21:03:26 +02:00
context["INCLUDES"] = sorted(inc for inc in os.listdir("/overrides") if inc.endswith((".inc", ".inc.php"))) if os.path.isdir("/overrides") else []
# create config files
conf.jinja("/conf/config.inc.php", context, "/var/www/roundcube/config/config.inc.php")
2018-10-23 10:58:36 +02:00
# create dirs
os.system("mkdir -p /data/gpg")
2019-11-21 14:46:38 +02:00
2022-11-24 20:08:30 +02:00
base = "/data/_data_/_default_/"
shutil.rmtree(base + "domains/", ignore_errors=True)
os.makedirs(base + "domains", exist_ok=True)
os.makedirs(base + "configs", exist_ok=True)
conf.jinja("/defaults/default.json", context, "/data/_data_/_default_/domains/default.json")
conf.jinja("/defaults/application.ini", context, "/data/_data_/_default_/configs/application.ini")
conf.jinja("/defaults/php.ini", context, "/etc/php83/php.ini")
2022-11-24 20:08:30 +02:00
# setup permissions
os.system("chown -R mailu:mailu /data")
2022-12-23 11:58:06 +02:00
def demote(username='mailu'):
2022-11-24 19:40:56 +02:00
def result():
2022-12-23 11:58:06 +02:00
system.drop_privs_to(username)
2022-11-24 19:40:56 +02:00
return result
print("Initializing database")
2019-11-21 22:05:15 +02:00
try:
result = subprocess.check_output(["/var/www/roundcube/bin/initdb.sh", "--dir", "/var/www/roundcube/SQL"],
2022-12-23 11:58:06 +02:00
stderr=subprocess.STDOUT, preexec_fn=demote())
2019-11-21 22:05:15 +02:00
print(result.decode())
except subprocess.CalledProcessError as exc:
err = exc.stdout.decode()
if "already exists" in err:
2022-11-10 21:03:26 +02:00
print("Already initialized")
2019-11-21 22:05:15 +02:00
else:
print(err)
exit(3)
2019-11-21 22:05:15 +02:00
print("Upgrading database")
2019-11-21 22:05:15 +02:00
try:
2022-12-23 11:58:06 +02:00
subprocess.check_call(["/var/www/roundcube/bin/update.sh", "--version=?", "-y"], stderr=subprocess.STDOUT, preexec_fn=demote())
except subprocess.CalledProcessError as exc:
exit(4)
else:
print("Cleaning database")
try:
2022-12-23 11:58:06 +02:00
subprocess.check_call(["/var/www/roundcube/bin/cleandb.sh"], stderr=subprocess.STDOUT, preexec_fn=demote())
except subprocess.CalledProcessError as exc:
exit(5)
2019-11-21 22:05:15 +02:00
# Configure nginx
conf.jinja("/conf/nginx-webmail.conf", context, "/etc/nginx/http.d/webmail.conf")
if os.path.exists("/var/run/nginx.pid"):
os.system("nginx -s reload")
2022-12-08 13:46:31 +02:00
system.clean_env()
# run nginx
os.system("php-fpm83")
os.execv("/usr/sbin/nginx", ["nginx", "-g", "daemon off;"])