Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info.xml « appinfo - github.com/nextcloud/files_antivirus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a7efe75871db5520f31bec14dbfd3604b433b6c (plain)
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
<?xml version="1.0"?>
<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) or Kaspersky Scan Engine

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>3.3.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="20" max-version="25" />
	</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>

	<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>