1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-14 03:32:22 -05:00
Do not lowercase email

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@375 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-02-18 22:30:55 +00:00
parent 94e5ab2f0c
commit fee03f5917

View File

@ -1648,8 +1648,6 @@ public class ExchangeSession {
if (email == null) { if (email == null) {
throw new IOException("Unable to get user email with alias " + getAliasFromLogin() + " or " + getAliasFromMailPath()); throw new IOException("Unable to get user email with alias " + getAliasFromLogin() + " or " + getAliasFromMailPath());
} }
// normalize email
email = email.toLowerCase();
} }
/** /**