You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.xml 15KB

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