@Produces("application/json")
public synchronized Status start() {
if (greenMail == null) {
ServerSetup setup = new ServerSetup(3025, "localhost", "smtp");
greenMail = new GreenMail(setup);
try {
greenMail.start();
} catch (Throwable t) {
greenMail = null;
return new Status(false);