mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-08 12:18:07 -05:00
POP: allow space in username
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1153 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
aad346900d
commit
69d1ff7a9f
@ -112,7 +112,7 @@ public class PopConnection extends AbstractConnection {
|
|||||||
password = null;
|
password = null;
|
||||||
session = null;
|
session = null;
|
||||||
if (tokens.hasMoreTokens()) {
|
if (tokens.hasMoreTokens()) {
|
||||||
userName = tokens.nextToken();
|
userName = line.substring("USER ".length());
|
||||||
sendOK("USER : " + userName);
|
sendOK("USER : " + userName);
|
||||||
state = State.USER;
|
state = State.USER;
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user