secubox-openwrt/package/secubox/luci-app-nextcloud/root/usr/share/rpcd/acl.d/luci-app-nextcloud.json
CyberMind-FR 7151bc6138 feat(mailserver): Add mail autoconfig and user repair features
Autoconfig:
- Created config-v1.1.xml (Thunderbird), autodiscover.xml (Outlook),
  email.mobileconfig (Apple) for automatic mail client configuration
- Added uhttpd instance on port 8025 to serve autoconfig files
- Added HAProxy backends with waf_bypass for autoconfig domains
- Added mailctl autoconfig-setup and autoconfig-status commands

LuCI Mailserver:
- Added user_repair method for mailbox repair (doveadm force-resync)
- Added repair button to user actions in overview

LuCI Nextcloud:
- Added list_users method to list Nextcloud users
- Added reset_password method for password reset via OCC

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-16 13:26:23 +01:00

31 lines
519 B
JSON

{
"luci-app-nextcloud": {
"description": "Grant access to Nextcloud LXC app",
"read": {
"ubus": {
"luci.nextcloud": ["status", "get_config", "list_backups", "logs", "list_users"]
},
"uci": ["nextcloud"]
},
"write": {
"ubus": {
"luci.nextcloud": [
"install",
"start",
"stop",
"restart",
"update",
"save_config",
"backup",
"restore",
"ssl_enable",
"ssl_disable",
"occ",
"reset_password"
]
},
"uci": ["nextcloud"]
}
}
}