change admin menu url to smtp-server

This commit is contained in:
2026-08-15 21:51:43 +01:00
parent f60dbcc6b0
commit ca0ad630d2
45 changed files with 188 additions and 188 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
// Package webui is the admin web interface, mirroring email_server/server_web_ui/.
// It's mounted at /pymta-manager, matching the Flask blueprint's url_prefix exactly.
// It's mounted at /smtp-server, matching the Flask blueprint's url_prefix exactly.
package webui
import (
@@ -18,7 +18,7 @@ import (
"mailgoserver/internal/toolbox"
)
const Prefix = "/pymta-manager"
const Prefix = "/smtp-server"
// App holds every dependency the web routes need, mirroring the module-level
// singletons (Session, DKIMManager, settings) that server_web_ui/*.py imports.