forked from mattermost-community/mattermost-plugin-antivirus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
32 lines (32 loc) · 1.19 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
{
"id": "antivirus",
"name": "Antivirus",
"description": "Antivirus plugin for scanning uploaded files.",
"version": "0.1.1",
"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": "Antivirus plugin for scanning uploaded files to Mattermost, uses ClamAV to scan files. See [documentation here](https://github.com/mattermost/mattermost-plugin-antivirus)",
"footer": "",
"settings": [{
"key": "ClamavHostPort",
"display_name": "ClamAV - Host and Port",
"type": "text",
"help_text": "The hostname and port to connect to clamd",
"placeholder": "localhost:3310",
"default": "localhost:3310"
}, {
"key": "ScanTimeoutSeconds",
"display_name": "Scan Timeout (seconds)",
"type": "number",
"help_text": "How long the virus scan can take before giving up.",
"placeholder": "10",
"default": 10
}]
}
}