-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
37 lines (37 loc) · 1.04 KB
/
extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "EmailLogger",
"author": "MyWikis LLC",
"url": "https://github.com/mywikis/EmailLogger",
"description": "Enables send activity audit capabilities.",
"version": "1.1.1",
"license-name": "GPL-2.0",
"type": "antispam",
"manifest_version": 1,
"MessagesDirs": {
"EmailLogger": [
"i18n"
]
},
"config": {
"EmailLoggerLogFilePath": {
"value": "emailsends.csv",
"path": true,
"description": "The path on your filesystem to log email sends to.",
"descriptionmsg": "emaillogger-logfilepath-desc",
"public": false
},
"EmailLoggerFailSilently": {
"value": false,
"path": false,
"description": "Whether the email should send or not if the email can't be logged. If true, email sends. If false, email does not send.",
"descriptionmsg": "emaillogger-failsilently-desc",
"public": false
}
},
"Hooks": {
"AlternateUserMailer": "EmailLoggerHooks::onAlternateUserMailer"
},
"AutoloadClasses": {
"EmailLoggerHooks": "EmailLogger.hooks.php"
}
}