-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
56 lines (56 loc) · 1.53 KB
/
plugin.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"id": "com.mattermost.mailermost-plugin",
"name": "Mailermost",
"description": "Replying to notification emails sends the reply as a post in Mattermost.",
"version": "0.1.0",
"min_server_version": "5.10.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"header": "Configure the IMAP connection information for the email address that response emails will be sent to. The email address used is the address set in `EmailSettings.ReplyToAddress` in the Mattermost config.",
"footer": "",
"settings": [
{
"key": "server",
"display_name": "IMAP Server and Port:",
"type": "text",
"placeholder": "imap.example.com:443"
},
{
"key": "security",
"display_name": "IMAP Security:",
"type": "dropdown",
"default": "ssl",
"options": [
{
"display_name": "None",
"value": "none"
},
{
"display_name": "SSL",
"value": "ssl"
},
{
"display_name": "TLS",
"value": "tls"
}
]
},
{
"key": "password",
"display_name": "IMAP Password:",
"type": "text"
},
{
"key": "polling_interval",
"display_name": "Polling Interval (seconds):",
"type": "number"
}
]
}
}