comparison vendor/pear/net_sieve/package.xml @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children 05c4c32948af
comparison
equal deleted inserted replaced
-1:000000000000 0:1e000243b222
1 <?xml version="1.0" encoding="UTF-8"?>
2 <package packagerversion="1.4.6" version="2.0" 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" 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>Net_Sieve</name>
7 <channel>pear.php.net</channel>
8 <summary>Handles talking to a sieve server.</summary>
9 <description>This package provides an API to talk to servers implementing the managesieve protocol. It can be used to install and remove sieve scripts, mark them active etc.</description>
10 <lead>
11 <name>Aleksander Machniak</name>
12 <user>alec</user>
13 <email>alec@alec.pl</email>
14 <active>yes</active>
15 </lead>
16 <lead>
17 <name>Jan Schneider</name>
18 <user>yunosh</user>
19 <email>jan@horde.org</email>
20 <active>no</active>
21 </lead>
22 <lead>
23 <name>Richard Heyes</name>
24 <user>richard</user>
25 <email>richard@php.net</email>
26 <active>no</active>
27 </lead>
28 <lead>
29 <name>Damian Fernandez Sosa</name>
30 <user>damian</user>
31 <email>damlists@cnba.uba.ar</email>
32 <active>no</active>
33 </lead>
34 <lead>
35 <name>Anish Mistry</name>
36 <user>amistry</user>
37 <email>amistry@am-productions.biz</email>
38 <active>no</active>
39 </lead>
40 <date>2017-05-21</date>
41 <version>
42 <release>1.4.0</release>
43 <api>1.4.0</api>
44 </version>
45 <stability>
46 <release>stable</release>
47 <api>stable</api>
48 </stability>
49 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
50 <notes>
51 * Dropped PHP4 support, fixed PHP7 warnings
52 * Fixed E_DEPRECATED warning on Auth_SASL::factory() call
53 * Enable later TLS versions
54 </notes>
55 <contents>
56 <dir name="/" baseinstalldir="Net">
57 <dir name="tests">
58 <file name="largescript.siv" role="test" />
59 <file name="config.php.dist" role="test" />
60 <file name="SieveTest.php" role="test" />
61 </dir> <!-- /tests -->
62 <file name="Sieve.php" role="php">
63 <tasks:replace from="@package_version@" to="version" type="package-info" />
64 </file>
65 </dir> <!-- / -->
66 </contents>
67 <dependencies>
68 <required>
69 <php>
70 <min>5.0.0</min>
71 </php>
72 <pearinstaller>
73 <min>1.4.0b1</min>
74 </pearinstaller>
75 <package>
76 <name>Net_Socket</name>
77 <channel>pear.php.net</channel>
78 <min>1.0</min>
79 </package>
80 <package>
81 <name>PEAR</name>
82 <channel>pear.php.net</channel>
83 <min>1.0</min>
84 </package>
85 </required>
86 <optional>
87 <package>
88 <name>Auth_SASL</name>
89 <channel>pear.php.net</channel>
90 <min>1.0</min>
91 </package>
92 </optional>
93 </dependencies>
94 <phprelease />
95 <changelog>
96 <release>
97 <date>2015-01-20</date>
98 <version>
99 <release>1.3.4</release>
100 <api>1.3.0</api>
101 </version>
102 <stability>
103 <release>stable</release>
104 <api>stable</api>
105 </stability>
106 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
107 <notes>* Remove erroneous and unnecessary active script caching (Bug #20472).
108 </notes>
109 </release>
110 <release>
111 <date>2014-09-24</date>
112 <version>
113 <release>1.3.3</release>
114 <api>1.3.0</api>
115 </version>
116 <stability>
117 <release>stable</release>
118 <api>stable</api>
119 </stability>
120 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
121 <notes>* Fix notices from non-static calling of PEAR methods.
122 * Fix reading OK responses with string literal messages.
123 </notes>
124 </release>
125 <release>
126 <date>2011-08-06</date>
127 <version>
128 <release>1.3.2</release>
129 <api>1.3.0</api>
130 </version>
131 <stability>
132 <release>stable</release>
133 <api>stable</api>
134 </stability>
135 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
136 <notes>* Fix referrals if host data or user credentials are passed to connect() and login() instead of the constructor (Aleksander Machniak, Bug #17107).
137 </notes>
138 </release>
139 <release>
140 <date>2011-08-05</date>
141 <version>
142 <release>1.3.1</release>
143 <api>1.3.0</api>
144 </version>
145 <stability>
146 <release>stable</release>
147 <api>stable</api>
148 </stability>
149 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
150 <notes>* Query capabilities again after successful authentication (Jesse Crawford, Request #18382).
151 * Escape quotes and backslashes in script names, and use literal strings for script names with non-ASCII characters (Aleksander Machniak, Bug #16691).
152 * Work around broken STARTTLS behavior in Cyrus versions before 2.3.10 (Aleksander Machniak, Bug #18241).
153 * Improve string literal parsing (Aleksander Machniak, Bug #18228).</notes>
154 </release>
155 <release>
156 <date>2010-07-01</date>
157 <version>
158 <release>1.3.0</release>
159 <api>1.3.0</api>
160 </version>
161 <stability>
162 <release>stable</release>
163 <api>stable</api>
164 </stability>
165 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
166 <notes>* Add debug handler parameter to constructor.
167 * Fix LOGIN authentication (Agustín Eijo, Aleksander Machniak, Bug #17527).</notes>
168 </release>
169 <release>
170 <date>2010-06-13</date>
171 <version>
172 <release>1.2.2</release>
173 <api>1.2.0</api>
174 </version>
175 <stability>
176 <release>stable</release>
177 <api>stable</api>
178 </stability>
179 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
180 <notes>* Fix SASL authentication without Auth_SASL (Bug #17489).</notes>
181 </release>
182 <release>
183 <date>2010-04-19</date>
184 <version>
185 <release>1.2.1</release>
186 <api>1.2.0</api>
187 </version>
188 <stability>
189 <release>stable</release>
190 <api>stable</api>
191 </stability>
192 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
193 <notes>* Fix DIGEST-MD5 authentication with Dovecot (Stef Simoens, Bug #17320).</notes>
194 </release>
195 <release>
196 <date>2010-04-01</date>
197 <version>
198 <release>1.2.0</release>
199 <api>1.2.0</api>
200 </version>
201 <stability>
202 <release>stable</release>
203 <api>stable</api>
204 </stability>
205 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
206 <notes>Changes since version 1.2.0b1:
207 * Fix DIGEST-MD5 authentication (Aleksander Machniak, Bug #17285).
208 * Don't try to call dl() if mbstring extension isn't loaded (Bug #17038).
209 Changes since version 1.1.7:
210 * Added support for adding a custom debug handler (Aleksander Machniak, Request #16681).
211 * Fix breakage with certain locales, especially Turkish.
212 * Fix reading authentication responses without literals (Bug #16647).
213 * Code cleanup.</notes>
214 </release>
215 <release>
216 <date>2009-10-07</date>
217 <version>
218 <release>1.2.0b1</release>
219 <api>1.2.0</api>
220 </version>
221 <stability>
222 <release>beta</release>
223 <api>stable</api>
224 </stability>
225 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
226 <notes>* Added support for adding a custom debug handler (Aleksander Machniak, Request #16681).
227 * Fix breakage with certain locales, especially Turkish.
228 * Fix reading authentication responses without literals (Bug #16647).
229 * Code cleanup.</notes>
230 </release>
231 <release>
232 <date>2009-07-24</date>
233 <version>
234 <release>1.1.7</release>
235 <api>1.1.6</api>
236 </version>
237 <stability>
238 <release>stable</release>
239 <api>stable</api>
240 </stability>
241 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
242 <notes>* Fixed STARTTLS support (Bug #14205).
243 * Added connect options and EXTERNAL authentication.</notes>
244 </release>
245 <release>
246 <date>2008-03-22</date>
247 <version>
248 <release>1.1.6</release>
249 <api>1.1.6</api>
250 </version>
251 <stability>
252 <release>stable</release>
253 <api>stable</api>
254 </stability>
255 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
256 <notes>
257 * Fixed Bug #9273
258 * Fixed copy/paste error in CRAM and DIGEST authentication error case.
259 </notes>
260 </release>
261 <release>
262 <date>2006-10-24</date>
263 <version>
264 <release>1.1.5</release>
265 <api>1.1.5</api>
266 </version>
267 <stability>
268 <release>stable</release>
269 <api>stable</api>
270 </stability>
271 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
272 <notes>
273 * Fixed Bug connect() bug
274 * Fixed Request #8071
275 </notes>
276 </release>
277 <release>
278 <date>2006-09-09</date>
279 <version>
280 <release>1.1.4</release>
281 <api>1.1.4</api>
282 </version>
283 <stability>
284 <release>stable</release>
285 <api>stable</api>
286 </stability>
287 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
288 <notes>
289 * Fixed Bug #8452 Unterminated read loop
290 * Fixed Bug #7845 Add mbstring support
291 * Added Request #8071 Enable the ability to toggle TLS support if available.
292 * Added Request #8453 Clean up PHPDoc and comments
293 </notes>
294 </release>
295 <release>
296 <date>2006-05-21</date>
297 <version>
298 <release>1.1.3</release>
299 <api>1.1.3</api>
300 </version>
301 <stability>
302 <release>stable</release>
303 <api>stable</api>
304 </stability>
305 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
306 <notes>
307 * Correctly Fixed Bug #3519 Net_Sieve w/ externally established sockets
308 * Fixed Bug #7197 getScript() truncates long scripts
309 * Added PHPUnit2 regression test script
310 </notes>
311 </release>
312 <release>
313 <date>2006-02-09</date>
314 <version>
315 <release>1.1.2</release>
316 <api>1.1.2</api>
317 </version>
318 <stability>
319 <release>stable</release>
320 <api>stable</api>
321 </stability>
322 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
323 <notes>* Fixed Request #4053 Added STARTTLS support for PHP 5.1 and above
324 * Fixed Bug #3519 Net_Sieve w/ externally established sockets
325 * Fixed Bug #4794 drops protocol prefix, e.g. &quot;ssl://&quot; in referrals
326 * Fixed STARTTLS detection
327 * Allow $options[] to be passed to Net_Socket
328 </notes>
329 </release>
330 <release>
331 <version>
332 <release>1.1.1</release>
333 <api>1.1.1</api>
334 </version>
335 <stability>
336 <release>stable</release>
337 <api>stable</api>
338 </stability>
339 <date>2005-02-02</date>
340 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
341 <notes>* Fixed Bug #3242 cyrus murder referrals not followed
342 </notes>
343 </release>
344 <release>
345 <version>
346 <release>1.1.0</release>
347 <api>1.1.0</api>
348 </version>
349 <stability>
350 <release>stable</release>
351 <api>stable</api>
352 </stability>
353 <date>2004-12-18</date>
354 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
355 <notes>* Fixed Bug #2728 Linebreaks not being read using getScript()
356 </notes>
357 </release>
358 <release>
359 <version>
360 <release>1.0.1</release>
361 <api>1.0.1</api>
362 </version>
363 <stability>
364 <release>stable</release>
365 <api>stable</api>
366 </stability>
367 <date>2004-03-13</date>
368 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
369 <notes>* Fixed BUG #1006
370
371 </notes>
372 </release>
373 <release>
374 <version>
375 <release>1.0.0</release>
376 <api>1.0.0</api>
377 </version>
378 <stability>
379 <release>stable</release>
380 <api>stable</api>
381 </stability>
382 <date>2004-03-10</date>
383 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
384 <notes>* Fixed DIGEST-MD5 sasl version handling (sasl v1.xx responses are diferent than v2.xx)
385 * Fixed LOGIN Method
386
387 </notes>
388 </release>
389 <release>
390 <version>
391 <release>0.9.1</release>
392 <api>0.9.1</api>
393 </version>
394 <stability>
395 <release>beta</release>
396 <api>beta</api>
397 </stability>
398 <date>2004-02-29</date>
399 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
400 <notes>* There is an issue whith the DIGEST-MD5 method. in one installation it does not work but in my server it works perfect! please send me debug info to solve the problem if
401 it affects you or disable DIGEST-MD5
402 * some optimizations to the code
403 * added haveSpace() to check if the server has space to store the script. Use with care HAVESPACE seems to be broken in cyrus 2.0.16
404 * added hasExtension()
405 * added getExtensions()
406 * added referral support and automatic following of them. (it also handles the following of multireferrals).
407 * removed _getResponse replaced by _doCmd. (thanks to Etienne Goyer for this)
408 * added supportsAuthMech()
409 * if installed automatically uses Auth_SASL
410 * added CRAM-MD5 auth Method
411 * added DIGEST-MD5 auth Method
412 * added getAuthMechs() returns an array containing all the auth methods the server supports
413 * added hasAuthMech() to check if the server has a particular auth method
414 * _connect --&gt; connect: now is a public method (without breaking BC)
415 * _login --&gt; login: now is a public method (without breaking BC)
416 * fix typo cmdAuthenticate() ---&gt; _cmdAuthenticate()
417 * _doCmd() now parses string responses also.
418
419 </notes>
420 </release>
421 <release>
422 <version>
423 <release>0.9.0</release>
424 <api>0.9.0</api>
425 </version>
426 <stability>
427 <release>beta</release>
428 <api>beta</api>
429 </stability>
430 <date>2004-01-31</date>
431 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
432 <notes>* Added setDebug() method and debugging capabilities
433 * added disconnect() method
434 * added sample file test_sieve.php
435 * fixed bug #591
436 * automagically selects the best auth method
437
438 </notes>
439 </release>
440 <release>
441 <version>
442 <release>0.8.1</release>
443 <api>0.8.1</api>
444 </version>
445 <stability>
446 <release>beta</release>
447 <api>beta</api>
448 </stability>
449 <date>2002-07-27</date>
450 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
451 <notes>Initial release
452 </notes>
453 </release>
454 <release>
455 <version>
456 <release>0.8</release>
457 <api>0.8</api>
458 </version>
459 <stability>
460 <release>beta</release>
461 <api>beta</api>
462 </stability>
463 <date>2002-05-10</date>
464 <license uri="http://www.php.net/license">PHP</license>
465 <notes>Initial release
466 </notes>
467 </release>
468 </changelog>
469 </package>