Issue Type: Bug Created: 2008-08-06T18:53:18.000+0000 Last Updated: 2012-03-21T11:04:26.000+0000 Status: Resolved Fix version(s): - 1.6.2 (13/Oct/08)
Reporter: Sebastian (sfjb) Assignee: Satoru Yoshida (satoruyoshida) Tags: - Zend_Mail
Related issues: Attachments:
In lib/Zend/Mail/Protocol/Smtp.php there appears to be a typo: in the helo() function when the client hostname fails to validate, the exception string fails to be built because the method to get the error messages is incorrect (missing an "s"). \ \
<pre class="highlight">
should read
Posted by old of Satoru Yoshida (yoshida@zend.co.jp) on 2008-09-01T18:02:59.000+0000
Solved in SVN r11196. The getMessage() is not found, but getMessages() function exists in Zend_Validate that was included by Zend/Mail/Protocol/Abstract.php.
Abstract.php is parent of Smtp.php.