You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
575 B
Python
21 lines
575 B
Python
#!/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"])
|