Page 1 of 1

PopB4Smtp error in write() function?

Posted: Tue May 06, 2008 3:50 pm
by m2mtech
write() in \lib\Swift\Authenticator\PopB4Smtp\Pop3Connection.php

Code: Select all

if (false !== fwrite($this->handle, $command . "\r\n"))
should be changed to

Code: Select all

if (false === fwrite($this->handle, $command . "\r\n"))
Otherwise each successfully sent command triggers an error.