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