fix(mailserver): Add IMAP port 143 to status check
- Added port 143 to RPCD port detection list - Fixed KISS nav path for Nextcloud (admin/secubox/services/nextcloud) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
efa74990be
commit
16ed7e2d7a
@ -93,7 +93,7 @@ case "$1" in
|
||||
if [ "$state" = "running" ]; then
|
||||
container_ports=$(lxc-attach -n "$container" -- netstat -tln 2>/dev/null)
|
||||
fi
|
||||
for port in 25 587 465 993 995; do
|
||||
for port in 25 143 587 465 993 995; do
|
||||
if echo "$container_ports" | grep -q ":$port "; then
|
||||
json_add_boolean "$port" 1
|
||||
else
|
||||
|
||||
@ -95,7 +95,7 @@ var KissThemeClass = baseclass.extend({
|
||||
]},
|
||||
{ cat: 'Apps', icon: '📦', collapsed: true, items: [
|
||||
{ icon: '✉️', name: 'Mail Server', path: 'admin/services/mailserver' },
|
||||
{ icon: '☁️', name: 'Nextcloud', path: 'admin/services/nextcloud' },
|
||||
{ icon: '☁️', name: 'Nextcloud', path: 'admin/secubox/services/nextcloud' },
|
||||
{ icon: '🎬', name: 'Media Flow', path: 'admin/services/media-flow' },
|
||||
{ icon: '🪞', name: 'MagicMirror', path: 'admin/services/magicmirror2' },
|
||||
{ icon: '📰', name: 'HexoJS', path: 'admin/services/hexojs' },
|
||||
|
||||
Loading…
Reference in New Issue
Block a user