class Mail::Address

def format_comments

def format_comments
  if comments
    comment_text = comments.map {|c| Utilities.escape_paren(c) }.join(Constants::SPACE).squeeze(Constants::SPACE)
    @format_comments ||= "(#{comment_text})"
  else
    nil
  end
end