-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathplugin.xml
26 lines (24 loc) · 1.05 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<class>org.igniterealtime.openfire.plugins.httpfileupload.HttpFileUploadPlugin</class>
<name>HTTP File Upload</name>
<description>Allows clients to share files, as described in the XEP-0363 'HTTP File Upload' specification.</description>
<author>Guus der Kinderen</author>
<version>${project.version}</version>
<date>2024-11-19</date>
<minServerVersion>4.7.0</minServerVersion>
<priorToServerVersion>5.0.0</priorToServerVersion>
<minJavaVersion>1.8</minJavaVersion>
<csrfProtectionEnabled>true</csrfProtectionEnabled>
<adminconsole>
<tab id="tab-server">
<sidebar id="sidebar-server-settings">
<!-- Note that the item id here is the used as the page id in the jsp-->
<item id="httpfileupload-settings" name="${httpfileupload.sidebar.settings}"
url="httpfileupload-settings.jsp"
description="${httpfileupload.sidebar.settings.desc}">
</item>
</sidebar>
</tab>
</adminconsole>
</plugin>