Skip to content

Commit

Permalink
bugfix where it is not possible to delete msg when mailbox is full
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Cloutier committed Aug 27, 2014
1 parent 76c9b45 commit 84a0865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/WebServerResources/MailerUI.js
Expand Up @@ -568,7 +568,7 @@ function deleteSelectedMessagesCallback(http) {
}

function deleteMessagesWithoutTrash(data) {
var url = ApplicationBaseURL + encodeURI(data["/mailbox"]) + "/batchDelete";
var url = ApplicationBaseURL + encodeURI(data["mailbox"]) + "/batchDelete";
var parameters = "uid=" + data["id"].join(",") + '&withoutTrash=1';
data["withoutTrash"] = true;
triggerAjaxRequest(url, deleteSelectedMessagesCallback, data, parameters,
Expand Down

0 comments on commit 84a0865

Please sign in to comment.