2006-06-04 Complication
* Stop sending a blank line before USER in susimail. Seemed to break in rare cases, thanks for reporting, Brachtus!
This commit is contained in:
@ -19,7 +19,7 @@
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
* $Revision: 1.8 $
|
||||
* $Revision: 1.1 $
|
||||
*/
|
||||
package i2p.susi.webmail.pop3;
|
||||
|
||||
@ -373,8 +373,7 @@ public class POP3MailBox {
|
||||
}
|
||||
if (socket != null) {
|
||||
try {
|
||||
if (sendCmd1a("")
|
||||
&& sendCmd1a("USER " + user)
|
||||
if (sendCmd1a("USER " + user)
|
||||
&& sendCmd1a("PASS " + pass)
|
||||
&& sendCmd1a("STAT") ) {
|
||||
|
||||
|
@ -1,4 +1,8 @@
|
||||
$Id: history.txt,v 1.479 2006-05-18 17:31:08 jrandom Exp $
|
||||
$Id: history.txt,v 1.481 2006-06-04 17:25:08 jrandom Exp $
|
||||
|
||||
2006-06-04 Complication
|
||||
* Trim out sending a blank line before USER in susimail.
|
||||
Seemed to break in rare cases, thanks for reporting, Brachtus!
|
||||
|
||||
* 2006-06-04 0.6.1.20 released
|
||||
|
||||
|
@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.419 $ $Date: 2006-05-18 17:31:10 $";
|
||||
public final static String ID = "$Revision: 1.421 $ $Date: 2006-06-04 17:25:20 $";
|
||||
public final static String VERSION = "0.6.1.20";
|
||||
public final static long BUILD = 0;
|
||||
public final static long BUILD = 1;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
Reference in New Issue
Block a user