cvs: pear /Net_SMTP SMTP.php package.php package.xml
[email protected] ("Chuck Hagenbuch")
| Newsgroups | php.pear.cvs |
|---|---|
| Message-ID | <cvschagenbu1209068866@cvsserver> |
chagenbu Thu Apr 24 20:27:46 2008 UTC
Removed files:
/pear/Net_SMTP package.php
Modified files:
/pear/Net_SMTP SMTP.php package.xml
Log:
Add getServiceExtensions (http://pear.php.net/bugs/bug.php?id=13763)
Start moving towards 1.3 release with 1.1 API version.
http://cvs.php.net/viewvc.cgi/pear/Net_SMTP/SMTP.php?r1=1.61&r2=1.62&diff_format=u
Index: pear/Net_SMTP/SMTP.php
diff -u pear/Net_SMTP/SMTP.php:1.61 pear/Net_SMTP/SMTP.php:1.62
--- pear/Net_SMTP/SMTP.php:1.61 Mon Feb 11 03:00:33 2008
+++ pear/Net_SMTP/SMTP.php Thu Apr 24 20:27:46 2008
@@ -18,7 +18,7 @@
// | Damian Alejandro Fernandez Sosa <[email protected]> |
// +----------------------------------------------------------------------+
//
-// $Id: SMTP.php,v 1.61 2008/02/11 03:00:33 jon Exp $
+// $Id: SMTP.php,v 1.62 2008/04/24 20:27:46 chagenbu Exp $
require_once 'PEAR.php';
require_once 'Net/Socket.php';
@@ -728,6 +728,18 @@
}
/**
+ * Return the list of SMTP service extensions advertised by the server.
+ *
+ * @return array The list of SMTP service extensions.
+ * @access public
+ * @since 1.3
+ */
+ function getServiceExtensions()
+ {
+ return $this->_esmtp;
+ }
+
+ /**
* Send the MAIL FROM: command.
*
* @param string $sender The sender (reverse path) to set.
http://cvs.php.net/viewvc.cgi/pear/Net_SMTP/package.xml?r1=1.47&r2=1.48&diff_format=u
Index: pear/Net_SMTP/package.xml
diff -u pear/Net_SMTP/package.xml:1.47 pear/Net_SMTP/package.xml:1.48
--- pear/Net_SMTP/package.xml:1.47 Fri Feb 15 05:48:24 2008
+++ pear/Net_SMTP/package.xml Thu Apr 24 20:27:46 2008
@@ -22,17 +22,16 @@
<date>2008-02-14</date>
<time>21:47:43</time>
<version>
- <release>1.2.11</release>
- <api>1.0.0</api>
+ <release>1.3</release>
+ <api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license/3_01.txt">PHP License</license>
- <notes>- We now use package.xml version 2 exclusively.
-- Skip unit tests when the configuration file is not available.
-- Fixing a protocol error when performing DIGEST-MD5 authentication. (Bug 12206)</notes>
+ <notes>- Add getServiceExtensions ([email protected], Bug 13763)
+ </notes>
<contents>
<dir baseinstalldir="Net" name="/">
<dir name="docs">
@@ -72,34 +71,4 @@
</optional>
</dependencies>
<phprelease />
- <changelog>
- <release>
- <version>
- <release>1.2.11</release>
- <api>1.0.0</api>
- </version>
- <stability>
- <release>stable</release>
- <api>stable</api>
- </stability>
- <date>2008-02-14</date>
- <license uri="http://www.php.net/license/3_01.txt">PHP License</license>
- <notes>- We now use package.xml version 2 exclusively.
-- Skip unit tests when the configuration file is not available.
-- Fixing a protocol error when performing DIGEST-MD5 authentication. (Bug 12206)</notes>
- </release>
- <release>
- <version>
- <release>1.2.10</release>
- <api>1.0.0</api>
- </version>
- <stability>
- <release>stable</release>
- <api>stable</api>
- </stability>
- <date>2008-01-19</date>
- <license uri="http://www.php.net/license/3_01.txt">PHP License</license>
- <notes>Allow auth via STARTTLS if PHP supports it (requires Net_Socket 1.0.7) (Johan Ohrn, [email protected]).</notes>
- </release>
- </changelog>
</package>