Skip to content

Commit

Permalink
avoid generating invalid SMTP commands in ruby pre 1.9
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Koziarski <michael@koziarski.com>

Conflicts:

	actionmailer/lib/action_mailer/base.rb
  • Loading branch information
NZKoz committed Nov 28, 2009
1 parent 02c3c9d commit 7e0aa35
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/delivery_method/smtp.rb
Expand Up @@ -16,7 +16,7 @@ class Smtp < Method
def perform_delivery(mail)
destinations = mail.destinations
mail.ready_to_send
sender = (mail['return-path'] && mail['return-path'].spec) || mail['from']
sender = (mail['return-path'] && mail['return-path'].spec) || Array(mail.from).first

smtp = Net::SMTP.new(settings[:address], settings[:port])
smtp.enable_starttls_auto if settings[:enable_starttls_auto] && smtp.respond_to?(:enable_starttls_auto)
Expand Down
34 changes: 34 additions & 0 deletions actionmailer/test/mail_service_test.rb
Expand Up @@ -31,6 +31,18 @@ def cancelled_account(recipient)
render :text => "Goodbye, Mr. #{recipient}"
end

def from_with_name
from "System <system@loudthinking.com>"
recipients "root@loudthinking.com"
body "Nothing to see here."
end

def from_without_name
from "system@loudthinking.com"
recipients "root@loudthinking.com"
body "Nothing to see here."
end

def cc_bcc(recipient)
recipients recipient
subject "testing bcc/cc"
Expand Down Expand Up @@ -487,6 +499,28 @@ def test_cc_bcc
assert_equal expected.encoded, ActionMailer::Base.deliveries.first.encoded
end

def test_from_without_name_for_smtp
ActionMailer::Base.delivery_method = :smtp
TestMailer.deliver_from_without_name

mail = MockSMTP.deliveries.first
assert_not_nil mail
mail, from, to = mail

assert_equal 'system@loudthinking.com', from.to_s
end

def test_from_with_name_for_smtp
ActionMailer::Base.delivery_method = :smtp
TestMailer.deliver_from_with_name

mail = MockSMTP.deliveries.first
assert_not_nil mail
mail, from, to = mail

assert_equal 'system@loudthinking.com', from.to_s
end

def test_reply_to
expected = new_mail

Expand Down

1 comment on commit 7e0aa35

@levinalex
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you!

Please sign in to comment.