# File lib/net/smtp.rb, line 375
    def SMTP.start(address, port = nil, helo = 'localhost.localdomain',
                   user = nil, secret = nil, authtype = nil,
                   &block)   # :yield: smtp

      new(address, port).start(helo, user, secret, authtype, &block)
    end