FSN#29180 E-mail parsen werkt bij parseUrl net iets anders

svn path=/Website/branches/v5.4.1/; revision=21120
This commit is contained in:
Jos Groot Lipman
2014-03-25 11:34:47 +00:00
parent 24e0272054
commit e4d234d1e2

View File

@@ -100,8 +100,8 @@ function ConnectorCls()
case "mailto":
{
this.ConnectionType = CONNECTION_MAIL;
this.connection.Hostname = URLParts.host;
this.connection.Username = URLParts.user;
this.connection.Hostname = URLParts.path.split("@")[1];
this.connection.Username = URLParts.path.split("@")[0];
//
Log2File(1, "protocol: mailto");
this.Connected = true;