Files
flarum-ext-disable-email-no…/composer.json
Victor_Jay 2dd2ae4266 feat: 彻底禁用 Flarum 邮件通知
- 从驱动层移除 EmailNotificationDriver,禁止所有邮件通知发送
- 新用户注册时自动关闭邮件通知偏好兜底
- 站点通知保持不变
2026-05-28 19:54:31 +08:00

25 lines
687 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "metazone/disable-email-notifications",
"description": "彻底禁用 Flarum 邮件通知——从驱动层移除 EmailNotificationDriver保留站点通知不受影响。",
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^1.0"
},
"autoload": {
"psr-4": {
"MetaZone\\DisableEmailNotifications\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Disable Email Notifications",
"icon": {
"name": "fas fa-envelope",
"backgroundColor": "#e74c3c",
"color": "#fff"
}
}
}
}