-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
42 lines (42 loc) · 956 Bytes
/
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
38
39
40
41
42
{
"name": "GPGMail",
"version": "0.1.0",
"author": [
"Gergő Tisza"
],
"url": "https://www.mediawiki.org/wiki/Extension:GPGMail",
"descriptionmsg": "gpgmail-desc",
"license-name": "MIT",
"type": "other",
"requires": {
"MediaWiki": ">= 1.35.0"
},
"callback": "GPGMailHooks::registerExtension",
"AutoloadClasses": {
"GPGMailHooks": "GPGMailHooks.php"
},
"config": {
"GPGMailBinary": {
"value": "gpg"
},
"GPGMailTempDir": {
"value": "/tmp"
},
"GpgMailUsePgpMime": {
"description": "true: use PGP/MIME, false: use inline encryption",
"value": true
}
},
"Hooks": {
"GetPreferences": "GPGMailHooks::onGetPreferences",
"UserMailerSplitTo": "GPGMailHooks::onUserMailerSplitTo",
"UserMailerTransformContent": "GPGMailHooks::onUserMailerTransformContent",
"UserMailerTransformMessage": "GPGMailHooks::onUserMailerTransformMessage"
},
"MessagesDirs": {
"GPGMail": [
"i18n"
]
},
"manifest_version": 2
}