forked from mattermost-community/mattermost-plugin-antivirus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.json
35 lines (35 loc) · 1.46 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
{
"id": "antivirus",
"name": "Antivirus",
"description": "Antivirus plugin for scanning uploaded files.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-antivirus",
"support_url": "https://github.com/mattermost/mattermost-plugin-antivirus/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-antivirus/releases/tag/v0.1.2",
"version": "0.1.2",
"min_server_version": "5.2.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": "Antivirus plugin which uses ClamAV to scan files uploaded to Mattermost. See [documentation here](https://github.com/mattermost/mattermost-plugin-antivirus).",
"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
}]
}
}