class Net::SMTP

def disable_starttls

before the connection is established to have any effect.
Disables SMTP/TLS (STARTTLS) for this object. Must be called
def disable_starttls
  @starttls = false
  @ssl_context_starttls = nil
end