/**
  * Extracts the description of the issue from the message
  *
  * @param reporter the established reporter of the issue
  * @param message the message from which the issue is created
  * @return the description of the issue
  * @throws MessagingException if cannot find out who is the message from
  */
 private String getDescription(User reporter, Message message) throws MessagingException {
   return recordFromAddressForAnon(reporter, message, MailUtils.getBody(message));
 }