Mail m = rsMail.get(id-1);
String response = "Deleted " + constructMessage(id, rsMail.size(), m);
try {
ObjectContext context = commanderAccount.getObjectContext();
context.deleteObject(m);
commanderAccount.updateRow();
user.sendChat(response, true);
context.performQuery(new RefreshQuery(commanderAccount));
} catch(Exception e) {