".Delete all the mail in the mail acoount",
new MarianCommandExecutor(co) {
public void execute(ParseResult pr) throws ExecutionException
{
try {
new MailReceiver(co).emptyMailBox();
} catch (Exception e) {
throw new ExecutionException(e);
}
}
}
)
);
commandSet.add(
new Command(
"get",
"Get new marian messages from the mail account",
new MarianCommandExecutor(co) {
public void execute(ParseResult pr) throws ExecutionException
{
try {
new MailReceiver(co).receive();
} catch (Exception e) {
throw new ExecutionException(e);
}
}
}