PopB4Smtp error in write() function?
Posted: Tue May 06, 2008 3:50 pm
write() in \lib\Swift\Authenticator\PopB4Smtp\Pop3Connection.php
should be changed to
Otherwise each successfully sent command triggers an error.
Code: Select all
if (false !== fwrite($this->handle, $command . "\r\n"))Code: Select all
if (false === fwrite($this->handle, $command . "\r\n"))