summaryrefslogtreecommitdiff
path: root/lib/net/smtp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/smtp.rb')
-rw-r--r--lib/net/smtp.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index b7dfbf822b..05f5a20b49 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -90,11 +90,11 @@ send or reject SMTP session by this data.
=== Class Methods
-: new( address = 'localhost', port = 25 )
+: new( address, port = 25 )
creates a new Net::SMTP object.
-: start( address = 'localhost', port = 25, helo_domain = Socket.gethostname, account = nil, password = nil, authtype = nil )
-: start( address = 'localhost', port = 25, helo_domain = Socket.gethostname, account = nil, password = nil, authtype = nil ) {|smtp| .... }
+: start( address, port = 25, helo_domain = Socket.gethostname, account = nil, password = nil, authtype = nil )
+: start( address, port = 25, helo_domain = Socket.gethostname, account = nil, password = nil, authtype = nil ) {|smtp| .... }
is equal to
Net::SMTP.new(address,port).start(helo_domain,account,password,authtype)
@@ -204,7 +204,7 @@ module Net
protocol_param :command_type, '::Net::NetPrivate::SMTPCommand'
- def initialize( addr = nil, port = nil )
+ def initialize( addr, port = nil )
super
@esmtp = true
end