-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathinfo.xml
More file actions
98 lines (81 loc) · 3.5 KB
/
info.xml
File metadata and controls
98 lines (81 loc) · 3.5 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0"?>
<!--
- SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- SPDX-FileCopyrightText: 2012-2016 owncloud, Inc.
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>files_antivirus</id>
<name>Antivirus for files</name>
<summary>An antivirus app for Nextcloud</summary>
<description><![CDATA[Antivirus for files is an antivirus app for Nextcloud.
* 🕵️♂️ When the user uploads a file, it's checked
* ☢️ Uploaded and infected files will be deleted and a notification will be shown and/or sent via email
* 🔎 Background Job to scan all files
* ❓ Use ClamAV (open source), Kaspersky Scan Engine or an ICAP compatible scanner
This application inspects files that are uploaded to Nextcloud for viruses before they are written to the Nextcloud storage. If a file is identified as a virus, it is either logged or not uploaded to the server. The application relies on the underlying ClamAV virus scanning engine, which the admin points Nextcloud to when configuring the application. Alternatively, a Kaspersky Scan Engine can be configured, which has to run on a separate server.
For this app to be effective, the ClamAV virus definitions should be kept up to date. Also note that enabling this app will impact system performance as additional processing is required for every upload. More information is available in the Antivirus documentation.
]]></description>
<version>6.2.0</version>
<licence>agpl</licence>
<author>Manuel Delgado</author>
<author>Bart Visscher</author>
<author>thinksilicon.de</author>
<author>Victor Dubiniuk</author>
<author>Roeland Jago Douma</author>
<author>Robin Appelman</author>
<namespace>Files_Antivirus</namespace>
<types>
<filesystem/>
<dav />
</types>
<documentation>
<admin>https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/antivirus_configuration.html</admin>
</documentation>
<category>security</category>
<category>tools</category>
<bugs>https://github.com/nextcloud/files_antivirus/issues</bugs>
<repository type="git">http://github.com/nextcloud/files_antivirus.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/files_antivirus/master/screenshots/1.png</screenshot>
<dependencies>
<nextcloud min-version="32" max-version="33" />
</dependencies>
<background-jobs>
<job>OCA\Files_Antivirus\BackgroundJob\BackgroundScanner</job>
</background-jobs>
<repair-steps>
<pre-migration>
<step>OCA\Files_Antivirus\Migration\CleanupCronTask</step>
</pre-migration>
<install>
<step>OCA\Files_Antivirus\Migration\Install</step>
</install>
</repair-steps>
<commands>
<command>OCA\Files_Antivirus\Command\Status</command>
<command>OCA\Files_Antivirus\Command\BackgroundScan</command>
<command>OCA\Files_Antivirus\Command\Scan</command>
<command>OCA\Files_Antivirus\Command\Mark</command>
<command>OCA\Files_Antivirus\Command\Test</command>
</commands>
<settings>
<admin>OCA\Files_Antivirus\Settings\Admin</admin>
</settings>
<activity>
<settings>
<setting>OCA\Files_Antivirus\Activity\Setting</setting>
</settings>
<filters>
<filter>OCA\Files_Antivirus\Activity\Filter</filter>
</filters>
<providers>
<provider>OCA\Files_Antivirus\Activity\Provider</provider>
</providers>
</activity>
<sabre>
<plugins>
<plugin>OCA\Files_Antivirus\Sabre\PropfindPlugin</plugin>
</plugins>
</sabre>
</info>