# File lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb, line 92
    def quote_token( str )
      # If the string supplied has TOKEN unsafe characters in it, will return the string quoted 
      # in double quotes, otherwise returns the string unmodified
      (TOKEN_UNSAFE === str) ? dquote(str) : str
    end