Skip to content

Commit

Permalink
Resolved Issue mikel#18 - Wrong instance variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel committed Dec 13, 2009
1 parent c2ede8e commit eecc12a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,7 @@
== Sun Dec 13 01:06:17 UTC 2009 Mikel Lindsaar <raasdnil@gmail.com>

* Resolved Issue #18 - Wrong instance variable name

== Thu Dec 10 21:25:37 UTC 2009 Mikel Lindsaar <raasdnil@gmail.com>

* Resolved Issue #13 - replacing From field results in from field becoming optional field.
Expand Down
2 changes: 1 addition & 1 deletion lib/mail/network/delivery_methods/smtp.rb
Expand Up @@ -32,7 +32,7 @@ def pass(value = nil)
# The helo domain used at the begining of an SMTP conversation,
# default is 'localhost.localdomain'
def helo(value = nil)
value ? @help = value : @helo ||= 'localhost.localdomain'
value ? @helo = value : @helo ||= 'localhost.localdomain'
end

# Turn on TLS
Expand Down

0 comments on commit eecc12a

Please sign in to comment.