class Net::SMTP

def capable?(key)

true if the EHLO response contains +key+.
def capable?(key)
  return nil unless @capabilities
  @capabilities[key] ? true : false
end