@PathParam("emailAddress") InternetAddress emailAddress,
@FormParam("type") ReportingPolicyType type)
throws WebApplicationException {
DataManager dataManager = getDataManager();
try {
VerifiedAccount account = dataManager
.getVerifiedAccount(emailAddress);
ReportingPolicy reportingPolicy = account.getReportingPolicy(type);
dataManager.removeReportingPolicy(account, reportingPolicy);
return Response.status(Status.NO_CONTENT).build();
} catch (UnknownVerifiedAccountException e) {
throw new WebApplicationException(Response
.status(Status.NOT_FOUND)