1<?xml version="1.0" encoding="UTF-8"?>
2<package packagerversion="1.9.1" 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 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
3 <name>Net_POP3</name>
4 <channel>pear.php.net</channel>
5 <summary>Provides a POP3 class to access POP3 server.</summary>
6 <description>Provides a POP3 class to access POP3 server. Support all POP3 commands
7  including UIDL listings, APOP authentication, DIGEST-MD5 and CRAM-MD5
8  using optional Auth_SASL package</description>
9 <lead>
10  <name>Richard Heyes</name>
11  <user>richard</user>
12  <email>richard@php.net</email>
13  <active>no</active>
14 </lead>
15 <lead>
16  <name>Damian Fernandez Sosa</name>
17  <user>damian</user>
18  <email>damlists@cnba.uba.ar</email>
19  <active>no</active>
20 </lead>
21 <lead>
22  <name>George Schlossnagle</name>
23  <user>gschlossnagle</user>
24  <email>george@omniti.com</email>
25  <active>no</active>
26 </lead>
27 <date>2010-10-25</date>
28 <time>23:33:07</time>
29 <version>
30  <release>1.3.8</release>
31  <api>1.3.7</api>
32 </version>
33 <stability>
34  <release>stable</release>
35  <api>stable</api>
36 </stability>
37 <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
38 <notes>
39Automatically built QA release
40Bug #17135 Deprecated use of new and reference - doconnor
41 </notes>
42 <contents>
43  <dir baseinstalldir="/" name="/">
44   <file baseinstalldir="/" md5sum="485df6069799d3a4ea27012e31608789" name="docs/examples/Net_POP3_example.php" role="doc" />
45   <file baseinstalldir="/" md5sum="cf4fb5e34827c4bec7a0030138d81831" name="Net/POP3.php" role="php" />
46  </dir>
47 </contents>
48 <dependencies>
49  <required>
50   <php>
51    <min>4.0.0</min>
52   </php>
53   <pearinstaller>
54    <min>1.4.0b1</min>
55   </pearinstaller>
56   <package>
57    <name>Net_Socket</name>
58    <channel>pear.php.net</channel>
59    <min>1.0</min>
60   </package>
61  </required>
62  <optional>
63   <package>
64    <name>Auth_SASL</name>
65    <channel>pear.php.net</channel>
66    <min>1.0.2</min>
67   </package>
68  </optional>
69 </dependencies>
70 <phprelease />
71 <changelog>
72  <release>
73   <version>
74    <release>1.1</release>
75    <api>1.1</api>
76   </version>
77   <stability>
78    <release>stable</release>
79    <api>stable</api>
80   </stability>
81   <date>2002-02-13</date>
82   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
83   <notes>
84Renamed file to POP3.php
85   </notes>
86  </release>
87  <release>
88   <version>
89    <release>1.2</release>
90    <api>1.2</api>
91   </version>
92   <stability>
93    <release>stable</release>
94    <api>stable</api>
95   </stability>
96   <date>2002-07-27</date>
97   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
98   <notes>
99License change
100   </notes>
101  </release>
102  <release>
103   <version>
104    <release>1.3</release>
105    <api>1.3</api>
106   </version>
107   <stability>
108    <release>stable</release>
109    <api>stable</api>
110   </stability>
111   <date>2004-03-03</date>
112   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
113   <notes>
114* Added debug capabilities
115* Added _recvLn() and _send($data) to support debug and better check socket errors
116* Added SASL AUTH capabilities
117* if installed automatically uses Auth_SASL
118* Added LOGIN,PLAIN,DIGEST-MD5 and CRAM-MD5
119* Modified APOP and USER auths
120* Now the class automagically selects the best auth method
121   </notes>
122  </release>
123  <release>
124   <version>
125    <release>1.3.1</release>
126    <api>1.3.1</api>
127   </version>
128   <stability>
129    <release>stable</release>
130    <api>stable</api>
131   </stability>
132   <date>2004-03-18</date>
133   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
134   <notes>
135* Solves a bug in the auth code when the AUTH method is set to APOP but the server fall back to user and pass
136   </notes>
137  </release>
138  <release>
139   <version>
140    <release>1.3.2</release>
141    <api>1.3.2</api>
142   </version>
143   <stability>
144    <release>stable</release>
145    <api>stable</api>
146   </stability>
147   <date>2004-06-26</date>
148   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
149   <notes>
150* Fixes bug #1505
151   </notes>
152  </release>
153  <release>
154   <version>
155    <release>1.3.3</release>
156    <api>1.3.3</api>
157   </version>
158   <stability>
159    <release>stable</release>
160    <api>stable</api>
161   </stability>
162   <date>2004-09-15</date>
163   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
164   <notes>
165* _sendCmd  now return PEAR_Error on error instead of false making error check easy
166* Fixes bug #2175 login() which uses DIGEST-MD5 always returns true.
167* All the Login methods now uses PEAR_Error instead of &apos;false&apos; finding the error cause is now easy
168* Disabling DIGEST-MD5 until I can make work whit saslv2 (saslv2 and saslv1 responses are different )
169   </notes>
170  </release>
171  <release>
172   <version>
173    <release>1.3.4</release>
174    <api>1.3.4</api>
175   </version>
176   <stability>
177    <release>stable</release>
178    <api>stable</api>
179   </stability>
180   <date>2004-12-05</date>
181   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
182   <notes>
183* Fixed Bug #2440 thanks to erickoh at jobsfactory dot com
184* Fixed Bug #2453 :Mistake in PEAR Doc for Net_POP3 example. thanks to erickoh at jobsfactory dot com
185* Removed double quotes in _authLogin() fixes Bug #2454 :AUTH LOGIN user and pass need to be enclosed in double quotes?. thanks to erickoh at jobsfactory dot com
186* Fixed Bug #2523 : Unable to login to Qmail servers. thanks to johann dot hoehn at ecommerce dot com
187* Fixed Bug #2646 :APOP attempted when not supported. thanks to osdave at nospam_davepar dot com
188   </notes>
189  </release>
190  <release>
191   <version>
192    <release>1.3.5</release>
193    <api>1.3.5</api>
194   </version>
195   <stability>
196    <release>stable</release>
197    <api>stable</api>
198   </stability>
199   <date>2005-02-02</date>
200   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
201   <notes>
202* Fixed Bug #3141 $pop3-&gt;getListing() returns empty fields. thanks to  culmat at gmx dot net
203   </notes>
204  </release>
205  <release>
206   <version>
207    <release>1.3.6</release>
208    <api>1.3.6</api>
209   </version>
210   <stability>
211    <release>stable</release>
212    <api>stable</api>
213   </stability>
214   <date>2005-04-05</date>
215   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
216   <notes>
217* Fixed Bug #3551 Bug #2663 not fixed yet.
218* Fixed Bug #3410 Error handling in _sendCmd
219* Fixed Bug #1942 wrong parameter-type specification in Net_POP3::login
220* Fixed Bug #239 Missing phpdoc tag.
221   </notes>
222  </release>
223  <release>
224   <version>
225    <release>1.3.7</release>
226    <api>1.3.7</api>
227   </version>
228   <stability>
229    <release>stable</release>
230    <api>stable</api>
231   </stability>
232   <date>2009-07-24</date>
233   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
234   <notes>
235QA release
236Bug #3140 Error handling in _sendCmd
237Bug #3551 Bug #2663 not fixed yet
238Bug #7644 POP3 Line Concatenation Function will fail and halt the program
239Updated to Package 2.0
240Comment -&gt; docblock. This should fix bug #8171: Add return types and description
241Bug #8420: Copy&amp;Paste issue ;) (wrong error message)
242* Convert to package.xml v2
243* Fail when authentication method is not supported
244   </notes>
245  </release>
246  <release>
247   <version>
248    <release>1.3.8</release>
249    <api>1.3.7</api>
250   </version>
251   <stability>
252    <release>stable</release>
253    <api>stable</api>
254   </stability>
255   <date>2010-10-25</date>
256   <license uri="http://www.opensource.org/licenses/bsd-license.php">BSD</license>
257   <notes>
258Automatically built QA release
259Bug #17135 Deprecated use of new and reference - doconnor
260   </notes>
261  </release>
262 </changelog>
263</package>
264