# File lib/sup/person.rb, line 36
  def longname
    if @name && @email
      "#@name <#@email>"
    else
      @email
    end
  end