mail_manager 3.2.5 → 3.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -1
  3. data/app/controllers/mail_manager/bounces_controller.rb +13 -1
  4. data/app/controllers/mail_manager/contacts_controller.rb +1 -2
  5. data/app/controllers/mail_manager/mailings_controller.rb +2 -4
  6. data/app/controllers/mail_manager/subscriptions_controller.rb +0 -2
  7. data/app/models/mail_manager/bounce.rb +9 -7
  8. data/app/models/mail_manager/contactable_registry.rb +2 -1
  9. data/app/models/mail_manager/mailable.rb +11 -9
  10. data/app/models/mail_manager/mailer.rb +13 -5
  11. data/app/models/mail_manager/mailing.rb +13 -25
  12. data/app/models/mail_manager/mailing_list.rb +17 -0
  13. data/app/models/mail_manager/message.rb +12 -1
  14. data/app/models/mail_manager/subscription.rb +12 -0
  15. data/app/views/mail_manager/bounces/_email_parts.html.erb +3 -1
  16. data/app/views/mail_manager/bounces/index.html.erb +1 -1
  17. data/app/views/mail_manager/bounces/show.html.erb +2 -2
  18. data/app/views/mail_manager/contacts/_form.html.erb +1 -1
  19. data/app/views/mail_manager/mailings/index.html.erb +3 -3
  20. data/app/views/mail_manager/messages/index.html.erb +1 -1
  21. data/app/views/mail_manager/subscriptions/_subscriptions.html.erb +6 -3
  22. data/config/routes.rb +2 -2
  23. data/lib/delayed/status.rb +5 -2
  24. data/lib/delayed/status_job.rb +5 -21
  25. data/lib/delayed_overrides/job.rb +6 -0
  26. data/lib/mail_manager/engine.rb +23 -1
  27. data/lib/mail_manager/version.rb +1 -1
  28. data/mail_manager.gemspec +10 -3
  29. data/spec/test_app/Procfile +5 -3
  30. data/spec/test_app/config/mail_manager.yml +3 -0
  31. data/spec/test_app/features/contact_management.feature +7 -0
  32. data/spec/test_app/features/message_management.feature +8 -1
  33. data/spec/test_app/features/step_definitions/webrat_steps.rb +6 -2
  34. data/spec/test_app/lib/debugging.rb +2 -2
  35. data/spec/test_app/script/full_suite +7 -5
  36. data/spec/test_app/spec/controllers/mail_manager/bounces_controller_spec.rb +39 -0
  37. data/spec/test_app/spec/controllers/mail_manager/mailings_controller_spec.rb +12 -0
  38. data/spec/test_app/spec/models/mail_manager/bounce_spec.rb +31 -0
  39. data/spec/test_app/spec/models/mail_manager/engine_spec.rb +25 -0
  40. data/spec/test_app/spec/models/mail_manager/mailing_list_spec.rb +39 -0
  41. data/spec/test_app/spec/models/mail_manager/mailing_spec.rb +43 -1
  42. data/spec/test_app/spec/models/mail_manager/message_spec.rb +19 -0
  43. data/spec/test_app/spec/models/mail_manager/subscription_spec.rb +17 -0
  44. data/spec/test_app/spec/support/files/bounce-400.txt +73 -0
  45. data/spec/test_app/spec/support/files/bounce-500.txt +75 -0
  46. data/spec/test_app/spec/support/files/bounce-invalid-address.txt +73 -0
  47. data/spec/test_app/spec/support/files/bounce-invalid.txt +113 -0
  48. data/spec/test_app/spec/support/files/bounce-invalid2.txt +29 -0
  49. data/spec/test_app/spec/support/files/bounce-invalid3.txt +29 -0
  50. data/spec/test_app/spec/support/files/bounce-mail-box-full.txt +1178 -0
  51. data/spec/test_app/spec/support/files/bounce-over-quota.txt +1173 -0
  52. data/spec/test_app/spec/support/files/bounce-smtp-timeout.txt +73 -0
  53. data/spec/test_app/spec/support/files/bounce-unknown_domain.txt +73 -0
  54. data/spec/test_app/spec/support/files/mail_manager_empty_table_prefix.yml +85 -0
  55. data/spec/test_app/spec/support/files/mail_manager_use_generic_mailables.yml +86 -0
  56. metadata +36 -3
@@ -63,6 +63,48 @@ RSpec.describe MailManager::Mailing do
63
63
  mailing = FactoryGirl.create(:mailing, include_images: true)
64
64
  mailing.mailable.update_attribute(:email_html, mailing.mailable.email_html.gsub(%r#file://.*/iReach_logo.gif#,image_url))
65
65
  mailing.send_test_message('bobo@example.com')
66
- html_body = ActionMailer::Base.deliveries.last.to_s =~ /cid:=/
66
+ html_body = ActionMailer::Base.deliveries.last.to_s
67
+ expect(html_body).to match /cid:=/
68
+ end
69
+
70
+ it "works for https images" do
71
+ pending "test https images!"
72
+ raise "BLARG!"
73
+ end
74
+
75
+ it "doesn't blow up when images are missing" do
76
+ image_url = "http://www.lone-star.net/graphics/not_here.png"
77
+ mailing = FactoryGirl.create(:mailing, include_images: true)
78
+ mailing.mailable.update_attribute(:email_html, mailing.mailable.email_html.gsub(%r#file://.*/iReach_logo.gif#,image_url))
79
+ mailing.send_test_message('bobo@example.com')
80
+ expect(ActionMailer::Base.deliveries.length).to eq 1
81
+ html_body = ActionMailer::Base.deliveries.last.to_s
82
+ expect(html_body).not_to match /cid:=/
83
+ expect(html_body).to include image_url
84
+ end
85
+
86
+ it "includes emails from its lists" do
87
+ contact1 = FactoryGirl.create(:contact)
88
+ contact2 = FactoryGirl.create(:contact)
89
+ contact3 = FactoryGirl.create(:contact)
90
+ contact4 = FactoryGirl.create(:contact)
91
+ list1 = FactoryGirl.create(:mailing_list)
92
+ contact1.subscribe(list1)
93
+ contact2.subscribe(list1)
94
+ list2 = FactoryGirl.create(:mailing_list)
95
+ contact2.subscribe(list2)
96
+ contact3.subscribe(list2)
97
+ list3 = FactoryGirl.create(:mailing_list)
98
+ contact3.subscribe(list3)
99
+ contact4.subscribe(list3)
100
+ contact3.unsubscribe(list2)
101
+ mailing = FactoryGirl.create(:mailing)
102
+ mailing.mailing_lists << list1
103
+ mailing.mailing_lists << list2
104
+ mailing.initialize_messages
105
+ mailing.reload
106
+ expect(mailing.messages.map(&:email_address).sort).to eq (
107
+ [contact1,contact2].map(&:email_address).sort
108
+ )
67
109
  end
68
110
  end
@@ -4,6 +4,7 @@ RSpec.describe MailManager::Message do
4
4
  def message
5
5
  @message
6
6
  end
7
+ context "A Message" do
7
8
  before(:each) do
8
9
  @message = FactoryGirl.create(:message)
9
10
  end
@@ -108,5 +109,23 @@ RSpec.describe MailManager::Message do
108
109
  raise "not tested"
109
110
  end
110
111
  end
112
+ end
113
+
114
+ describe "self::email_address_hash_for_mailing_id" do
115
+ it "returns a hash of emails based on a mailing's messages" do
116
+ contact1 = FactoryGirl.create(:contact)
117
+ contact2 = FactoryGirl.create(:contact)
118
+ contact3 = FactoryGirl.create(:contact)
119
+ list1 = FactoryGirl.create(:mailing_list)
120
+ contact1.subscribe(list1)
121
+ contact2.subscribe(list1)
122
+ mailing = FactoryGirl.create(:mailing)
123
+ mailing.mailing_lists << list1
124
+ mailing.initialize_messages
125
+ expect([contact1,contact2].map(&:email_address).sort).to eq(
126
+ MailManager::Message.email_address_hash_for_mailing_id(mailing.id).keys.sort
127
+ )
128
+ end
129
+ end
111
130
 
112
131
  end
@@ -0,0 +1,17 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe MailManager::Subscription do
4
+ describe "self::unsubscribed_emails_hash" do
5
+ it "returns all unsubscribed emails" do
6
+ contact = FactoryGirl.create(:contact)
7
+ list = FactoryGirl.create(:mailing_list)
8
+ list2 = FactoryGirl.create(:mailing_list)
9
+ contact.subscribe(list)
10
+ contact.subscribe(list2)
11
+ contact.unsubscribe(list)
12
+ expect(MailManager::Subscription.unsubscribed_emails_hash).to eq(
13
+ {contact.email_address => true}
14
+ )
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,73 @@
1
+ Return-Path: <MAILER-DAEMON>
2
+ Received: from zapp.lnstar.com (zapp.lnstar.com [66.45.121.18])
3
+ by farnsworth.lnstar.com (8.13.8/8.13.8) with ESMTP id t1F0cfBa027176
4
+ for <bounce@austinflowers.com>; Sat, 14 Feb 2015 18:38:41 -0600
5
+ Received: by zapp.lnstar.com (Postfix)
6
+ id B269910E6E3; Sat, 14 Feb 2015 18:38:41 -0600 (CST)
7
+ Date: Sat, 14 Feb 2015 18:38:41 -0600 (CST)
8
+ From: MAILER-DAEMON@lnstar.com (Mail Delivery System)
9
+ Subject: Undelivered Mail Returned to Sender
10
+ To: bounce@austinflowers.com
11
+ Auto-Submitted: auto-replied
12
+ MIME-Version: 1.0
13
+ Content-Type: multipart/report; report-type=delivery-status;
14
+ boundary="E116A10E6F1.1423960721/zapp.lnstar.com"
15
+ Message-Id: <20150215003841.B269910E6E3@zapp.lnstar.com>
16
+ X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00
17
+ autolearn=ham version=3.3.2
18
+ X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on
19
+ farnsworth.lnstar.com
20
+
21
+ This is a MIME-encapsulated message.
22
+
23
+ --E116A10E6F1.1423960721/zapp.lnstar.com
24
+ Content-Description: Notification
25
+ Content-Type: text/plain; charset=us-ascii
26
+
27
+ This is the mail system at host zapp.lnstar.com.
28
+
29
+ I'm sorry to have to inform you that your message could not
30
+ be delivered to one or more recipients. It's attached below.
31
+
32
+ For further assistance, please send mail to postmaster.
33
+
34
+ If you do so, please include this problem report. You can
35
+ delete your own text from the attached returned message.
36
+
37
+ The mail system
38
+
39
+ <conry@ecdlaw.com>: host ecdlaw.com[66.147.244.216] said: 451 Temporary local
40
+ problem - please try later (in reply to end of DATA command)
41
+
42
+ --E116A10E6F1.1423960721/zapp.lnstar.com
43
+ Content-Description: Delivery report
44
+ Content-Type: message/delivery-status
45
+
46
+ Reporting-MTA: dns; zapp.lnstar.com
47
+ X-Postfix-Queue-ID: E116A10E6F1
48
+ X-Postfix-Sender: rfc822; bounce@austinflowers.com
49
+ Arrival-Date: Mon, 9 Feb 2015 18:18:58 -0600 (CST)
50
+
51
+ Final-Recipient: rfc822; conry@ecdlaw.com
52
+ Action: failed
53
+ Status: 4.0.0
54
+ Remote-MTA: dns; ecdlaw.com
55
+ Diagnostic-Code: smtp; 451 Temporary local problem - please try later
56
+
57
+ --E116A10E6F1.1423960721/zapp.lnstar.com
58
+ Content-Description: Undelivered Message Headers
59
+ Content-Type: text/rfc822-headers
60
+
61
+ Return-Path: <bounce@austinflowers.com>
62
+ Received: by zapp.lnstar.com (Postfix, from userid 65534)
63
+ id E116A10E6F1; Mon, 9 Feb 2015 18:18:58 -0600 (CST)
64
+ Date: Mon, 9 Feb 2015 18:18:58 -0600
65
+ From: "SanAntonioFlowerCo." <news@sanantonioflowers.com>
66
+ To: conry@ecdlaw.com
67
+ Subject: Valentines Day 2015!
68
+ Mime-Version: 1.0
69
+ Content-Type: multipart/alternative; boundary=mimepart_54d94e72c8ab9_50d9..fdbe370dc49743
70
+ X-Bounce-Guid: 322-332-11544-510fe34e59dfd1acb9049b9a4a0fc5e7379f0f77
71
+ Message-Id: <20150210001858.E116A10E6F1@zapp.lnstar.com>
72
+
73
+ --E116A10E6F1.1423960721/zapp.lnstar.com--
@@ -0,0 +1,75 @@
1
+ Return-Path: <MAILER-DAEMON>
2
+ Received: from zapp.lnstar.com (zapp.lnstar.com [66.45.121.18])
3
+ by farnsworth.lnstar.com (8.13.8/8.13.8) with ESMTP id t1A0H8kt030070
4
+ for <bounce@austinflowers.com>; Mon, 9 Feb 2015 18:17:08 -0600
5
+ Received: by zapp.lnstar.com (Postfix)
6
+ id EBE6A10E6E2; Mon, 9 Feb 2015 18:17:08 -0600 (CST)
7
+ Date: Mon, 9 Feb 2015 18:17:08 -0600 (CST)
8
+ From: MAILER-DAEMON@lnstar.com (Mail Delivery System)
9
+ Subject: Undelivered Mail Returned to Sender
10
+ To: bounce@austinflowers.com
11
+ Auto-Submitted: auto-replied
12
+ MIME-Version: 1.0
13
+ Content-Type: multipart/report; report-type=delivery-status;
14
+ boundary="6800110E6EE.1423527428/zapp.lnstar.com"
15
+ Message-Id: <20150210001708.EBE6A10E6E2@zapp.lnstar.com>
16
+ X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00,
17
+ URIBL_DBL_ABUSE_REDIR autolearn=ham version=3.3.2
18
+ X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on
19
+ farnsworth.lnstar.com
20
+
21
+ This is a MIME-encapsulated message.
22
+
23
+ --6800110E6EE.1423527428/zapp.lnstar.com
24
+ Content-Description: Notification
25
+ Content-Type: text/plain; charset=us-ascii
26
+
27
+ This is the mail system at host zapp.lnstar.com.
28
+
29
+ I'm sorry to have to inform you that your message could not
30
+ be delivered to one or more recipients. It's attached below.
31
+
32
+ For further assistance, please send mail to postmaster.
33
+
34
+ If you do so, please include this problem report. You can
35
+ delete your own text from the attached returned message.
36
+
37
+ The mail system
38
+
39
+ <roz@gocseevents.com>: host presmtp.ex4.secureserver.net[72.167.238.29] said:
40
+ 550 5.1.1 <roz@gocseevents.com> Recipient not found.
41
+ <http://x.co/irbounce> (in reply to RCPT TO command)
42
+
43
+ --6800110E6EE.1423527428/zapp.lnstar.com
44
+ Content-Description: Delivery report
45
+ Content-Type: message/delivery-status
46
+
47
+ Reporting-MTA: dns; zapp.lnstar.com
48
+ X-Postfix-Queue-ID: 6800110E6EE
49
+ X-Postfix-Sender: rfc822; bounce@austinflowers.com
50
+ Arrival-Date: Mon, 9 Feb 2015 18:17:07 -0600 (CST)
51
+
52
+ Final-Recipient: rfc822; roz@gocseevents.com
53
+ Action: failed
54
+ Status: 5.1.1
55
+ Remote-MTA: dns; presmtp.ex4.secureserver.net
56
+ Diagnostic-Code: smtp; 550 5.1.1 <roz@gocseevents.com> Recipient not found.
57
+ <http://x.co/irbounce>
58
+
59
+ --6800110E6EE.1423527428/zapp.lnstar.com
60
+ Content-Description: Undelivered Message Headers
61
+ Content-Type: text/rfc822-headers
62
+
63
+ Return-Path: <bounce@austinflowers.com>
64
+ Received: by zapp.lnstar.com (Postfix, from userid 65534)
65
+ id 6800110E6EE; Mon, 9 Feb 2015 18:17:07 -0600 (CST)
66
+ Date: Mon, 9 Feb 2015 18:17:07 -0600
67
+ From: "SanAntonioFlowerCo." <news@sanantonioflowers.com>
68
+ To: roz@gocseevents.com
69
+ Subject: Valentines Day 2015!
70
+ Mime-Version: 1.0
71
+ Content-Type: multipart/alternative; boundary=mimepart_54d94e034d23e_50d9..fdbe370dc1560
72
+ X-Bounce-Guid: 30-28-11376-fa351cf35e4012d37d8c13df8735fd13edfed563
73
+ Message-Id: <20150210001707.6800110E6EE@zapp.lnstar.com>
74
+
75
+ --6800110E6EE.1423527428/zapp.lnstar.com--
@@ -0,0 +1,73 @@
1
+ Return-Path: <MAILER-DAEMON>
2
+ Received: from zapp.lnstar.com (zapp.lnstar.com [66.45.121.18])
3
+ by nibbler.lnstar.com (8.14.0/8.14.0) with ESMTP id oB1INRH6023728
4
+ for <bounce@austinflowers.com>; Wed, 1 Dec 2010 12:23:27 -0600
5
+ Received: by zapp.lnstar.com (Postfix)
6
+ id A5CBA10E6F4; Wed, 1 Dec 2010 12:23:27 -0600 (CST)
7
+ Date: Wed, 1 Dec 2010 12:23:27 -0600 (CST)
8
+ From: MAILER-DAEMON@lnstar.com (Mail Delivery System)
9
+ Subject: Undelivered Mail Returned to Sender
10
+ To: bounce@austinflowers.com
11
+ Auto-Submitted: auto-replied
12
+ MIME-Version: 1.0
13
+ Content-Type: multipart/report; report-type=delivery-status;
14
+ boundary="9720D10E6EE.1291227807/zapp.lnstar.com"
15
+ Message-Id: <20101201182327.A5CBA10E6F4@zapp.lnstar.com>
16
+ X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL
17
+ autolearn=disabled version=3.2.1
18
+ X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on nibbler.lnstar.com
19
+ Status:
20
+
21
+ This is a MIME-encapsulated message.
22
+
23
+ --9720D10E6EE.1291227807/zapp.lnstar.com
24
+ Content-Description: Notification
25
+ Content-Type: text/plain; charset=us-ascii
26
+
27
+ This is the mail system at host zapp.lnstar.com.
28
+
29
+ I'm sorry to have to inform you that your message could not
30
+ be delivered to one or more recipients. It's attached below.
31
+
32
+ For further assistance, please send mail to postmaster.
33
+
34
+ If you do so, please include this problem report. You can
35
+ delete your own text from the attached returned message.
36
+
37
+ The mail system
38
+
39
+ <eric@lddesigns.net>: host mx01.1and1.com[74.208.5.21] said: 550
40
+ <eric@lddesigns.net>: invalid address (in reply to RCPT TO command)
41
+
42
+ --9720D10E6EE.1291227807/zapp.lnstar.com
43
+ Content-Description: Delivery report
44
+ Content-Type: message/delivery-status
45
+
46
+ Reporting-MTA: dns; zapp.lnstar.com
47
+ X-Postfix-Queue-ID: 9720D10E6EE
48
+ X-Postfix-Sender: rfc822; bounce@austinflowers.com
49
+ Arrival-Date: Wed, 1 Dec 2010 12:23:25 -0600 (CST)
50
+
51
+ Final-Recipient: rfc822; eric@lddesigns.net
52
+ Action: failed
53
+ Status: 5.0.0
54
+ Remote-MTA: dns; mx01.1and1.com
55
+ Diagnostic-Code: smtp; 550 <eric@lddesigns.net>: invalid address
56
+
57
+ --9720D10E6EE.1291227807/zapp.lnstar.com
58
+ Content-Description: Undelivered Message Headers
59
+ Content-Type: text/rfc822-headers
60
+
61
+ Return-Path: <bounce@austinflowers.com>
62
+ Received: by zapp.lnstar.com (Postfix, from userid 65534)
63
+ id 9720D10E6EE; Wed, 1 Dec 2010 12:23:25 -0600 (CST)
64
+ Date: Wed, 1 Dec 2010 12:23:25 -0600
65
+ From: "San Antonio Flower Co." <tommy@sanantonioflowercompany.com>
66
+ To: eric@lddesigns.net
67
+ Subject: Rose Bouquet Special
68
+ Mime-Version: 1.0
69
+ Content-Type: multipart/alternative; boundary=mimepart_4cf6929d94afd_3299..fdba850d875519
70
+ X-Bounce-Guid: 342-352-1016-c8ac144f5e0ae4134b81a6bb7140951af2337c0f
71
+ Message-Id: <20101201182325.9720D10E6EE@zapp.lnstar.com>
72
+
73
+ --9720D10E6EE.1291227807/zapp.lnstar.com--
@@ -0,0 +1,113 @@
1
+ Return-Path: <MAILER-DAEMON>
2
+ Received: from mail.tu.edu (mail.tu.edu [76.247.118.135])
3
+ by nibbler.lnstar.com (8.14.0/8.14.0) with ESMTP id oAFJLwTW010392
4
+ (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO)
5
+ for <bounce@austinflowers.com>; Mon, 15 Nov 2010 13:21:59 -0600
6
+ Received: from mail-bw0-f48.google.com (mail-bw0-f48.google.com [209.85.214.48])
7
+ by mail.tu.edu (8.13.8/8.13.8) with ESMTP id oAFIwBdX022161
8
+ for <bounce@austinflowers.com>; Mon, 15 Nov 2010 10:58:43 -0800
9
+ Received: by mail-bw0-f48.google.com with SMTP id 9so6489303bwz.7
10
+ for <bounce@austinflowers.com>; Mon, 15 Nov 2010 11:03:14 -0800 (PST)
11
+ Received: by 10.204.61.16 with SMTP id r16mr6535656bkh.4.1289847794425;
12
+ Mon, 15 Nov 2010 11:03:14 -0800 (PST)
13
+ Date: Mon, 15 Nov 2010 11:03:14 -0800
14
+ From: "TUC Email Delivery Failure" <unknown_account+canned.response@tu.edu>
15
+ To: bounce@austinflowers.com
16
+ Message-ID: <AANLkTikNmXCTPcPXMQmp_MibwE8EF8kMTA2TeNWvB9c5@mail.gmail.com>
17
+ In-Reply-To: <20101115190240.3610810E6F1@zapp.lnstar.com>
18
+ References: <20101115190240.3610810E6F1@zapp.lnstar.com>
19
+ Subject: Re: Mum Special
20
+ MIME-Version: 1.0
21
+ Content-Type: multipart/alternative;
22
+ boundary="----=_Part_43466_21416032.1289847794408"
23
+ Precedence: bulk
24
+ X-Autoreply: yes
25
+ Auto-Submitted: auto-replied
26
+ X-TU-CA-MailScanner-Information: Please contact the ISP for more information
27
+ X-MailScanner-ID: oAFIwBdX022161
28
+ X-TU-CA-MailScanner: Found to be clean
29
+ X-TU-CA-MailScanner-From:
30
+ X-Spam-Status: No, score=0.0 required=5.0 tests=HTML_MESSAGE
31
+ autolearn=disabled version=3.2.1
32
+ X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on nibbler.lnstar.com
33
+ Status: O
34
+
35
+
36
+ ------=_Part_43466_21416032.1289847794408
37
+ Content-Type: text/plain; charset=ISO-8859-1
38
+ Content-Transfer-Encoding: 7bit
39
+ Content-Disposition: inline
40
+
41
+ THIS IS AN AUTOMATED MESSAGE - PLEASE DO NOT REPLY TO THIS MESSAGE AS THE
42
+ ACCOUNT IS NOT MONITORED FOR INCOMING EMAIL.
43
+
44
+ A message with the above subject line was sent by you to the Touro
45
+ University California email system but could not be delivered.
46
+
47
+ The message contained at least one invalid address in the @tu.edu domain.
48
+ The delivery failure could be the result of:
49
+
50
+ 1. There is a typo or other error in one of the addresses in the to:, cc:,
51
+ or bcc: fields.
52
+ 2. The account belonging to one or your recipients has been deactivated
53
+ because of LOA, withdrawal or resignation.
54
+
55
+
56
+ Please review your most recent outgoing messages to ensure that all of your
57
+ intended recipients receive your message. You can find a complete list of
58
+ email addresses for faculty, staff and administration at
59
+ http://www.tu.edu/faculty.php.
60
+
61
+ If you have any questions or need help determining the exact cause of the
62
+ delivery failure, please contact the TUC IT Department Service Desk at 707
63
+ 638-5424 or via email at servicedesk@tu.edu.
64
+
65
+ Information Technology Department
66
+ Touro University California
67
+
68
+ --
69
+ This message has been scanned for viruses and
70
+ dangerous content by MailScanner, and is
71
+ believed to be clean.
72
+
73
+
74
+ ------=_Part_43466_21416032.1289847794408
75
+ Content-Type: text/html; charset=ISO-8859-1
76
+ Content-Transfer-Encoding: quoted-printable
77
+ Content-Disposition: inline
78
+
79
+ <div>THIS IS AN AUTOMATED MESSAGE - PLEASE DO NOT REPLY TO THIS MESSAGE AS =
80
+ THE ACCOUNT IS NOT MONITORED FOR INCOMING EMAIL.</div><div><br></div>A mess=
81
+ age with the above subject line was sent by you to the Touro University Cal=
82
+ ifornia email system but could not be delivered.<br>
83
+
84
+ <br>The message contained at least one invalid address in the @<a href=3D"h=
85
+ ttp://tu.edu" target=3D"_blank">tu.edu</a>=A0domain. The delivery failure c=
86
+ ould be the result of:<br>
87
+ <br><blockquote style=3D"margin:0 0 0 40px;border:none;padding:0px">1.=A0 T=
88
+ here is a typo or other error in one of the addresses in the to:, cc:, or b=
89
+ cc: fields.<br>2.=A0 The account belonging to one or your recipients has be=
90
+ en=A0deactivated because of LOA, withdrawal or resignation.</blockquote>
91
+
92
+
93
+ <br>Please review your most recent outgoing messages to ensure that all of=
94
+ =A0your intended recipients receive your message. You can find a complete=
95
+ =A0list of email addresses for faculty, staff and administration at=A0<a hr=
96
+ ef=3D"http://www.tu.edu/faculty.php" target=3D"_blank">http://www.tu.edu/fa=
97
+ culty.php</a>.<br>
98
+
99
+
100
+ <br>If you have any questions or need help determining the exact cause of=
101
+ =A0the delivery failure, please contact the TUC IT Department Service=A0Des=
102
+ k at 707 638-5424 or via email at <a href=3D"mailto:servicedesk@tu.edu" tar=
103
+ get=3D"_blank">servicedesk@tu.edu</a>.<br>
104
+
105
+
106
+ <br>Information Technology Department<br>Touro University California<br>
107
+ <br>
108
+ <br />-- <br />This message has been scanned for viruses and <br />dangerou=
109
+ s content by <a href=3D"http://servicedesk.tu.edu/"><strong>MailScanner</st=
110
+ rong></a>, and is <br />believed to be clean.
111
+
112
+
113
+ ------=_Part_43466_21416032.1289847794408--
@@ -0,0 +1,29 @@
1
+ Return-Path: <Uppercrustcook@aol.com>
2
+ Received: from imr-da03.mx.aol.com (imr-da03.mx.aol.com [205.188.105.145])
3
+ by nibbler.lnstar.com (8.14.0/8.14.0) with ESMTP id oB1IRBPn024321
4
+ for <bounce@austinflowers.com>; Wed, 1 Dec 2010 12:27:11 -0600
5
+ Received: from imo-da01.mx.aol.com (imo-da01.mx.aol.com [205.188.169.199])
6
+ by imr-da03.mx.aol.com (8.14.1/8.14.1) with ESMTP id oB1IM5Tc002568
7
+ for <bounce@austinflowers.com>; Wed, 1 Dec 2010 13:22:05 -0500
8
+ Received: from Uppercrustcook@aol.com
9
+ by imo-da01.mx.aol.com (mail_out_v42.9.) id o.fc4.4f2290b (43911)
10
+ for <bounce@austinflowers.com>; Wed, 1 Dec 2010 13:21:59 -0500 (EST)
11
+ Received: from magic-m26.mail.aol.com (magic-m26.mail.aol.com [172.20.22.199]) by cia-dc07.mx.aol.com (v129.7) with ESMTP id MAILCIADC078-ab874cf69247242; Wed, 01 Dec 2010 13:21:59 -0500
12
+ From: uppercrustcook@aol.com
13
+ Message-ID: <4c108.2c5a8651.3a27ec47@aol.com>
14
+ Date: Wed, 1 Dec 2010 13:21:59 EST
15
+ Subject: Re: Rose Bouquet Special (Automatic Response)
16
+ To: bounce@austinflowers.com
17
+ MIME-Version: 1.0
18
+ Content-Type: text/plain; charset="US-ASCII"
19
+ Content-Transfer-Encoding: 7bit
20
+ X-Mailer: OSM Client
21
+ Auto-Submitted: auto-replied
22
+ X-AOL-IP: 172.20.22.199
23
+ X-AOL-SENDER: Uppercrustcook@aol.com
24
+ X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled
25
+ version=3.2.1
26
+ X-Spam-Checker-Version: SpamAssassin 3.2.1 (2007-05-02) on nibbler.lnstar.com
27
+ Status:
28
+
29
+ I am away on vacation until December 20th and will return email at that time. Thank you! Julie