Config sections (Basic, Mail, DNS, Firewall, …) rendered as a bare name. Add a small data-driven icon before each: config files now carry a `# @icon <emoji>` directive in their header, the config generator surfaces it as the subcategory's `icon`, and the config editor prepends it to the section <h3> (covers every render path — regular/master/toggle/domains/catalogs/whitelist — since they all drop displaySubcategory straight into the heading). - webui_generate_configs.sh: parse `# @icon` (first 10 lines) → emit "icon". - config-manager.js: prepend subcategoryData.icon to the section title. - configs/**: added an @icon to all 23 base config files (backup/general/network/ security/webui). The live install's config files get the same directive + a configs.json regen so existing installs show the icons too. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
12 lines
934 B
Plaintext
Executable File
12 lines
934 B
Plaintext
Executable File
# ================================================================================
|
|
# Mail - Mail Server Settings
|
|
# @icon ✉️
|
|
# ================================================================================
|
|
CFG_MAIL_ENABLED=false # Mail Enabled - Enable mail server configuration for applications
|
|
CFG_MAIL_HOST=mail.domain.com # Mail Server Host - Your mail server hostname
|
|
CFG_MAIL_PORT=587 # Mail Server Port - Usually 587 for TLS, 465 for SSL, 25 for none
|
|
CFG_MAIL_SECURE=tls # Security - tls, ssl, or none
|
|
CFG_MAIL_USERNAME=your-email@domain.com # Mail Username - Your email address for authentication
|
|
CFG_MAIL_PASSWORD=your-app-password # Mail Password - Use app password for authentication
|
|
CFG_MAIL_FROM=noreply@domain.com # From Email Address - Sender email address
|