From eab947a635ba69277c98a5d59ff3bac0f98e261a Mon Sep 17 00:00:00 2001 From: Nicolas Rochelemagne Date: Thu, 29 Mar 2012 11:19:12 -0500 Subject: [PATCH 1/9] set MailAuth=0 in poststring --- javascript/ajax/ajax-int.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/javascript/ajax/ajax-int.js b/javascript/ajax/ajax-int.js index 7b96f27..70504da 100644 --- a/javascript/ajax/ajax-int.js +++ b/javascript/ajax/ajax-int.js @@ -4045,7 +4045,7 @@ function WebmailLogin(username, domain, password, mailserver, protocol, language WebMailLoginReq = createXMLHttpRequest(); WebMailLoginReq.onreadystatechange = WebMailLoginReqChange; - var POSTString = "ajax=1&username=" + encodeURIComponent(username) + "&password=" + encodeURIComponent(password) + "&MailServer=" + encodeURIComponent(mailserver) + "&pop3host=" + encodeURIComponent(domain) + "&MailType=" + encodeURIComponent(protocol) + "&Language=" + "&LoginType=ajax"; + var POSTString = "ajax=1&MailAuth=0&username=" + encodeURIComponent(username) + "&password=" + encodeURIComponent(password) + "&MailServer=" + encodeURIComponent(mailserver) + "&pop3host=" + encodeURIComponent(domain) + "&MailType=" + encodeURIComponent(protocol) + "&Language=" + "&LoginType=ajax"; WebMailLoginReq.open("POST", atmailroot + "/atmail.php", true); -- 1.7.5