You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The webmail uses a standalone configuration file (default.toml), there is this section which controls the configuration info shown in /help page:
[setup]
# these values are shown in the configuration help page
[setup.imap]
hostname="localhost"secure=trueport=9993
[setup.pop3]
hostname="localhost"secure=trueport=9995
[setup.smtp]
hostname="localhost"secure=falseport=2587
But if POP3 is disabled, the webmail would not know, and still displays those info in /help page.
I would like to suggest adding a disabled key to the [setup.*] section, and hide the corresponding info:
[setup.pop3]
disabled=true
The text was updated successfully, but these errors were encountered:
The webmail uses a standalone configuration file (default.toml), there is this section which controls the configuration info shown in
/help
page:But if POP3 is disabled, the webmail would not know, and still displays those info in
/help
page.I would like to suggest adding a
disabled
key to the[setup.*]
section, and hide the corresponding info:The text was updated successfully, but these errors were encountered: