mirror of
https://github.com/optim-enterprises-bv/Mailu.git
synced 2025-11-01 18:47:52 +00:00
Need this too
This commit is contained in:
@@ -20,6 +20,12 @@ context.update(env)
|
||||
|
||||
context["MAX_FILESIZE"] = str(int(int(env.get("MESSAGE_SIZE_LIMIT", "50000000")) * 0.66 / 1048576))
|
||||
|
||||
# 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_flavor = env.get("ROUNDCUBE_DB_FLAVOR", "sqlite")
|
||||
if db_flavor == "sqlite":
|
||||
context["DB_DSNW"] = "sqlite:////data/roundcube.db"
|
||||
|
||||
Reference in New Issue
Block a user