update the website code files, fix dns check for DKIM

This commit is contained in:
nahakubuilde
2025-06-08 22:51:07 +01:00
parent a7e41ad231
commit a0dfe8a535
24 changed files with 2747 additions and 1630 deletions

View File

@@ -1 +1,17 @@
# Email frontend module
"""
SMTP Server Web UI Package
This package provides a web interface for managing the SMTP server.
"""
# First import the blueprint definition
from .routes import email_bp
# Then import all route functions
from .dashboard import *
from .domains import *
from .senders import *
from .ip_whitelist import *
from .dkim import *
from .settings import *
from .logs import *