source: github/plugins/managesieve/package.xml @ be43144

release-0.7
Last change on this file since be43144 was c994e0e, checked in by alecpl <alec@…>, 18 months ago
  • Applied fixes from trunk up to r5451
  • Property mode set to 100644
File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.9.0" version="2.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
3    http://pear.php.net/dtd/tasks-1.0.xsd
4    http://pear.php.net/dtd/package-2.0
5    http://pear.php.net/dtd/package-2.0.xsd">
6        <name>managesieve</name>
7        <channel>pear.roundcube.net</channel>
8        <summary>Sieve filters manager for Roundcube</summary>
9        <description>
10            Adds a possibility to manage Sieve scripts (incoming mail filters).
11        It's clickable interface which operates on text scripts and communicates
12        with server using managesieve protocol. Adds Filters tab in Settings.
13        </description>
14        <lead>
15                <name>Aleksander Machniak</name>
16                <user>alec</user>
17                <email>alec@alec.pl</email>
18                <active>yes</active>
19        </lead>
20        <date>2011-11-17</date>
21        <version>
22                <release>5.0</release>
23                <api>5.0</api>
24        </version>
25        <stability>
26                <release>stable</release>
27                <api>stable</api>
28        </stability>
29        <license uri="http://www.gnu.org/licenses/gpl-2.0.html">GNU GPLv2</license>
30    <notes>-</notes>
31        <contents>
32                <dir baseinstalldir="/" name="/">
33                        <file name="managesieve.php" role="php">
34                                <tasks:replace from="@name@" to="name" type="package-info"/>
35                                <tasks:replace from="@package_version@" to="version" type="package-info"/>
36                        </file>
37                        <file name="managesieve.js" role="data">
38                                <tasks:replace from="@name@" to="name" type="package-info"/>
39                                <tasks:replace from="@package_version@" to="version" type="package-info"/>
40                        </file>
41                        <file name="localization/bg_BG.inc" role="data"></file>
42                        <file name="localization/cs_CZ.inc" role="data"></file>
43                        <file name="localization/de_CH.inc" role="data"></file>
44                        <file name="localization/de_DE.inc" role="data"></file>
45                        <file name="localization/el_GR.inc" role="data"></file>
46                        <file name="localization/en_GB.inc" role="data"></file>
47                        <file name="localization/en_US.inc" role="data"></file>
48                        <file name="localization/es_AR.inc" role="data"></file>
49                        <file name="localization/es_ES.inc" role="data"></file>
50                        <file name="localization/et_EE.inc" role="data"></file>
51                        <file name="localization/fi_FI.inc" role="data"></file>
52                        <file name="localization/fr_FR.inc" role="data"></file>
53                        <file name="localization/gl_ES.inc" role="data"></file>
54                        <file name="localization/hr_HR.inc" role="data"></file>
55                        <file name="localization/hu_HU.inc" role="data"></file>
56                        <file name="localization/it_IT.inc" role="data"></file>
57                        <file name="localization/ja_JP.inc" role="data"></file>
58                        <file name="localization/lv_LV.inc" role="data"></file>
59                        <file name="localization/nb_NO.inc" role="data"></file>
60                        <file name="localization/nl_NL.inc" role="data"></file>
61                        <file name="localization/pl_PL.inc" role="data"></file>
62                        <file name="localization/pt_BR.inc" role="data"></file>
63                        <file name="localization/pt_PT.inc" role="data"></file>
64                        <file name="localization/ru_RU.inc" role="data"></file>
65                        <file name="localization/sk_SK.inc" role="data"></file>
66                        <file name="localization/sl_SI.inc" role="data"></file>
67                        <file name="localization/sv_SE.inc" role="data"></file>
68                        <file name="localization/uk_UA.inc" role="data"></file>
69                        <file name="localization/zh_CN.inc" role="data"></file>
70                        <file name="localization/zh_TW.inc" role="data"></file>
71                        <file name="skins/default/managesieve.css" role="data"></file>
72                        <file name="skins/default/managesieve_mail.css" role="data"></file>
73                        <file name="skins/default/templates/filteredit.html" role="data"></file>
74                        <file name="skins/default/templates/managesieve.html" role="data"></file>
75                        <file name="skins/default/templates/setedit.html" role="data"></file>
76                        <file name="skins/default/images/add.png" role="data"></file>
77                        <file name="skins/default/images/del.png" role="data"></file>
78                        <file name="skins/default/images/down_small.gif" role="data"></file>
79                        <file name="skins/default/images/filter.png" role="data"></file>
80                        <file name="skins/default/images/up_small.gif" role="data"></file>
81                        <file name="managesieve.php" role="php"></file>
82                        <file name="lib/rcube_sieve.php" role="php"></file>
83                        <file name="lib/rcube_sieve_script.php" role="php"></file>
84                        <file name="lib/Net/Sieve.php" role="php"></file>
85                        <file name="config.inc.php.dist" role="data"></file>
86                </dir>
87                <!-- / -->
88        </contents>
89        <dependencies>
90                <required>
91                        <php>
92                                <min>5.2.1</min>
93                        </php>
94                        <pearinstaller>
95                                <min>1.7.0</min>
96                        </pearinstaller>
97                </required>
98        </dependencies>
99        <phprelease/>
100</package>
Note: See TracBrowser for help on using the repository browser.