mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-28 03:56:43 +02:00
21 lines
575 B
Python
Executable File
21 lines
575 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import os
|
|
import glob
|
|
import logging as log
|
|
import sys
|
|
from mailustart import resolve, convert
|
|
|
|
log.basicConfig(stream=sys.stderr, level=os.environ.get("LOG_LEVEL", "WARNING"))
|
|
|
|
# Actual startup script
|
|
os.environ["FRONT_ADDRESS"] = resolve(os.environ.get("FRONT_ADDRESS", "front"))
|
|
|
|
if "HOST_REDIS" not in os.environ: os.environ["HOST_REDIS"] = "redis"
|
|
|
|
for rspamd_file in glob.glob("/conf/*"):
|
|
convert(rspamd_file, os.path.join("/etc/rspamd/local.d", os.path.basename(rspamd_file)))
|
|
|
|
# Run rspamd
|
|
os.execv("/usr/sbin/rspamd", ["rspamd", "-i", "-f"])
|