summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/net/smtp.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index dda9dab072..35108966c5 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -289,7 +289,7 @@ module Net
# +port+ is the port to connect to; it defaults to port 25.
#
# +helo+ is the _HELO_ _domain_ provided by the client to the
- # server (see overview comments); it defaults to 'localhost.localdomain'.
+ # server (see overview comments); it defaults to 'localhost'.
#
# The remaining arguments are used for SMTP authentication, if required
# or desired. +user+ is the account name; +secret+ is your password
@@ -310,7 +310,7 @@ module Net
# * TimeoutError
#
def SMTP.start( address, port = nil,
- helo = 'localhost.localdomain',
+ helo = 'localhost',
user = nil, secret = nil, authtype = nil,
&block) # :yield: smtp
new(address, port).start(helo, user, secret, authtype, &block)
@@ -371,7 +371,7 @@ module Net
# * IOError
# * TimeoutError
#
- def start( helo = 'localhost.localdomain',
+ def start( helo = 'localhost',
user = nil, secret = nil, authtype = nil ) # :yield: smtp
if block_given?
begin