send_quoted_string(str)
private
Hide source
# File lib/net/imap.rb, line 1355 def send_quoted_string(str) put_string('"' + str.gsub(/["\\]/, "\\\\\\&") + '"') end