# File lib/mail/utilities.rb, line 63
    def unquote( str )
      match = str.match(/^"(.*?)"$/)
      match ? match[1] : str
    end