mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-11-04 03:57:53 +00:00 
			
		
		
		
	2460: Switch to a base image containing base tools and the podop and socrate libs r=mergify[bot] a=ghostwheel42 ## What type of PR? enhancement of build process ## What does this PR do? Changes build.hcl to build core images using a base image. Also adds a "assets" base image for the admin container. Co-authored-by: Alexander Graf <ghostwheel42@users.noreply.github.com> Co-authored-by: Pierre Jaury <pierre@jaury.eu> Co-authored-by: kaiyou <pierre@jaury.eu> Co-authored-by: Dimitri Huisman <52963853+Diman0@users.noreply.github.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python3
 | 
						|
 | 
						|
import os
 | 
						|
import logging as log
 | 
						|
import sys
 | 
						|
 | 
						|
log.basicConfig(stream=sys.stderr, level=os.environ.get("LOG_LEVEL", "INFO"))
 | 
						|
 | 
						|
os.system("flask mailu advertise")
 | 
						|
os.system("flask db upgrade")
 | 
						|
 | 
						|
account = os.environ.get("INITIAL_ADMIN_ACCOUNT")
 | 
						|
domain = os.environ.get("INITIAL_ADMIN_DOMAIN")
 | 
						|
password = os.environ.get("INITIAL_ADMIN_PW")
 | 
						|
 | 
						|
if account is not None and domain is not None and password is not None:
 | 
						|
    mode = os.environ.get("INITIAL_ADMIN_MODE", default="ifmissing")
 | 
						|
    log.info("Creating initial admin account %s@%s with mode %s", account, domain, mode)
 | 
						|
    os.system("flask mailu admin %s %s '%s' --mode %s" % (account, domain, password, mode))
 | 
						|
 | 
						|
def test_DNS():
 | 
						|
    import dns.resolver
 | 
						|
    import dns.exception
 | 
						|
    import dns.flags
 | 
						|
    import dns.rdtypes
 | 
						|
    import dns.rdatatype
 | 
						|
    import dns.rdataclass
 | 
						|
    import time
 | 
						|
    # DNS stub configured to do DNSSEC enabled queries
 | 
						|
    resolver = dns.resolver.Resolver()
 | 
						|
    resolver.use_edns(0, dns.flags.DO, 1232)
 | 
						|
    resolver.flags = dns.flags.AD | dns.flags.RD
 | 
						|
    nameservers = resolver.nameservers
 | 
						|
    for ns in nameservers:
 | 
						|
        resolver.nameservers=[ns]
 | 
						|
        while True:
 | 
						|
            try:
 | 
						|
                result = resolver.resolve('example.org', dns.rdatatype.A, dns.rdataclass.IN, lifetime=10)
 | 
						|
            except Exception as e:
 | 
						|
                log.critical("Your DNS resolver at %s is not working (%s). Please see https://mailu.io/master/faq.html#the-admin-container-won-t-start-and-its-log-says-critical-your-dns-resolver-isn-t-doing-dnssec-validation", ns, e)
 | 
						|
            else:
 | 
						|
                if result.response.flags & dns.flags.AD:
 | 
						|
                    break
 | 
						|
                log.critical("Your DNS resolver at %s isn't doing DNSSEC validation; Please see https://mailu.io/master/faq.html#the-admin-container-won-t-start-and-its-log-says-critical-your-dns-resolver-isn-t-doing-dnssec-validation.", ns)
 | 
						|
            time.sleep(5)
 | 
						|
 | 
						|
test_DNS()
 | 
						|
 | 
						|
start_command="".join([
 | 
						|
    "gunicorn --threads ", str(os.cpu_count()),
 | 
						|
    " -b :80 ",
 | 
						|
    "--access-logfile - " if (log.root.level<=log.INFO) else "",
 | 
						|
    "--error-logfile - ",
 | 
						|
    "--preload ",
 | 
						|
    "'mailu:create_app()'"])
 | 
						|
 | 
						|
os.system(start_command)
 |