mailhopper 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +69 -0
  3. data/Rakefile +39 -0
  4. data/app/mailers/mailhopper/mailer.rb +4 -0
  5. data/app/models/mailhopper/email.rb +17 -0
  6. data/config/routes.rb +2 -0
  7. data/lib/generators/mailhopper/mailhopper_generator.rb +36 -0
  8. data/lib/generators/mailhopper/templates/README +28 -0
  9. data/lib/generators/mailhopper/templates/initializer.rb +3 -0
  10. data/lib/generators/mailhopper/templates/migrations/create_emails.rb +21 -0
  11. data/lib/mailhopper.rb +13 -0
  12. data/lib/mailhopper/base.rb +19 -0
  13. data/lib/mailhopper/engine.rb +4 -0
  14. data/lib/mailhopper/queue.rb +18 -0
  15. data/lib/mailhopper/version.rb +3 -0
  16. data/lib/tasks/mailhopper_tasks.rake +4 -0
  17. data/test/dummy/Rakefile +7 -0
  18. data/test/dummy/app/assets/javascripts/application.js +9 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  20. data/test/dummy/app/controllers/application_controller.rb +3 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/mailers/sample_mailer.rb +8 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/test/dummy/app/views/sample_mailer/hello.text.erb +1 -0
  25. data/test/dummy/config.ru +4 -0
  26. data/test/dummy/config/application.rb +42 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +27 -0
  31. data/test/dummy/config/environments/production.rb +51 -0
  32. data/test/dummy/config/environments/test.rb +39 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/inflections.rb +10 -0
  35. data/test/dummy/config/initializers/mailhopper.rb +3 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/initializers/wrap_parameters.rb +12 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +58 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/db/migrate/20110801151741_create_emails.rb +21 -0
  44. data/test/dummy/db/schema.rb +28 -0
  45. data/test/dummy/db/test.sqlite3 +0 -0
  46. data/test/dummy/log/development.log +50 -0
  47. data/test/dummy/log/test.log +398 -0
  48. data/test/dummy/public/404.html +26 -0
  49. data/test/dummy/public/422.html +26 -0
  50. data/test/dummy/public/500.html +26 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/dummy/script/rails +6 -0
  53. data/test/integration/navigation_test.rb +10 -0
  54. data/test/mailhopper_test.rb +7 -0
  55. data/test/test_helper.rb +14 -0
  56. data/test/unit/email_test.rb +50 -0
  57. metadata +207 -0
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,27 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+ end
@@ -0,0 +1,51 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Specifies the header that your server uses for sending files
18
+ # (comment out if your front-end server doesn't support this)
19
+ config.action_dispatch.x_sendfile_header = "X-Sendfile" # Use 'X-Accel-Redirect' for nginx
20
+
21
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
22
+ # config.force_ssl = true
23
+
24
+ # See everything in the log (default is :info)
25
+ # config.log_level = :debug
26
+
27
+ # Use a different logger for distributed setups
28
+ # config.logger = SyslogLogger.new
29
+
30
+ # Use a different cache store in production
31
+ # config.cache_store = :mem_cache_store
32
+
33
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
34
+ # config.action_controller.asset_host = "http://assets.example.com"
35
+
36
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
37
+ # config.assets.precompile += %w( search.js )
38
+
39
+ # Disable delivery errors, bad email addresses will be ignored
40
+ # config.action_mailer.raise_delivery_errors = false
41
+
42
+ # Enable threaded mode
43
+ # config.threadsafe!
44
+
45
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
46
+ # the I18n.default_locale when a translation can not be found)
47
+ config.i18n.fallbacks = true
48
+
49
+ # Send deprecation notices to registered listeners
50
+ config.active_support.deprecation = :notify
51
+ end
@@ -0,0 +1,39 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,3 @@
1
+ Mailhopper::Base.setup do |config|
2
+ config.default_delivery_method = :smtp
3
+ end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'b9e87a8c887892475e40f46ab1dd85f8b6e291b6fd7a866934eba0467d9780a93e1fcb36760254e3f46dbed3a6fe1d3a2f5677499784ba61b3cc1ceda9cd1fda'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActionController::Base.wrap_parameters :format => [:json]
8
+
9
+ # Disable root element in JSON by default.
10
+ if defined?(ActiveRecord)
11
+ ActiveRecord::Base.include_root_in_json = false
12
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,58 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation:
3
+ # first created -> highest priority.
4
+
5
+ # Sample of regular route:
6
+ # match 'products/:id' => 'catalog#view'
7
+ # Keep in mind you can assign values other than :controller and :action
8
+
9
+ # Sample of named route:
10
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
+ # This route can be invoked with purchase_url(:id => product.id)
12
+
13
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
14
+ # resources :products
15
+
16
+ # Sample resource route with options:
17
+ # resources :products do
18
+ # member do
19
+ # get 'short'
20
+ # post 'toggle'
21
+ # end
22
+ #
23
+ # collection do
24
+ # get 'sold'
25
+ # end
26
+ # end
27
+
28
+ # Sample resource route with sub-resources:
29
+ # resources :products do
30
+ # resources :comments, :sales
31
+ # resource :seller
32
+ # end
33
+
34
+ # Sample resource route with more complex sub-resources
35
+ # resources :products do
36
+ # resources :comments
37
+ # resources :sales do
38
+ # get 'recent', :on => :collection
39
+ # end
40
+ # end
41
+
42
+ # Sample resource route within a namespace:
43
+ # namespace :admin do
44
+ # # Directs /admin/products/* to Admin::ProductsController
45
+ # # (app/controllers/admin/products_controller.rb)
46
+ # resources :products
47
+ # end
48
+
49
+ # You can have the root of your site routed with "root"
50
+ # just remember to delete public/index.html.
51
+ # root :to => 'welcome#index'
52
+
53
+ # See how all your routes lay out with "rake routes"
54
+
55
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
56
+ # Note: This route will make all actions in every controller accessible via GET requests.
57
+ # match ':controller(/:action(/:id(.:format)))'
58
+ end
Binary file
@@ -0,0 +1,21 @@
1
+ # Everything listed in this migration will be added to a migration file
2
+ # inside of your main app.
3
+ class CreateEmails < ActiveRecord::Migration
4
+ def self.up
5
+ create_table :emails do |t|
6
+ t.string :from_address, :null => false
7
+ t.string :to_address,
8
+ :cc_address,
9
+ :bcc_address,
10
+ :reply_to_address,
11
+ :subject
12
+ t.text :content
13
+ t.datetime :sent_at
14
+ t.timestamps
15
+ end
16
+ end
17
+
18
+ def self.down
19
+ drop_table :emails
20
+ end
21
+ end
@@ -0,0 +1,28 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended to check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(:version => 20110801151741) do
14
+
15
+ create_table "emails", :force => true do |t|
16
+ t.string "from_address", :null => false
17
+ t.string "to_address"
18
+ t.string "cc_address"
19
+ t.string "bcc_address"
20
+ t.string "reply_to_address"
21
+ t.string "subject"
22
+ t.text "content"
23
+ t.datetime "sent_at"
24
+ t.datetime "created_at"
25
+ t.datetime "updated_at"
26
+ end
27
+
28
+ end
Binary file
@@ -0,0 +1,50 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateEmails (20110801151741)
7
+  (0.3ms) CREATE TABLE "emails" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from_address" varchar(255) NOT NULL, "to_address" varchar(255), "cc_address" varchar(255), "bcc_address" varchar(255), "reply_to_address" varchar(255), "subject" varchar(255), "content" text, "sent_at" datetime, "delayed_job_id" integer, "created_at" datetime, "updated_at" datetime)
8
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110801151741')
9
+  (0.0ms) select sqlite_version(*)
10
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (0.0ms) PRAGMA index_list("emails")
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+  (0.0ms) select sqlite_version(*)
14
+  (2.0ms) CREATE TABLE "emails" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from_address" varchar(255) NOT NULL, "to_address" varchar(255), "cc_address" varchar(255), "bcc_address" varchar(255), "reply_to_address" varchar(255), "subject" varchar(255), "content" text, "sent_at" datetime, "delayed_job_id" integer, "created_at" datetime, "updated_at" datetime) 
15
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
16
+  (0.0ms) PRAGMA index_list("schema_migrations")
17
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
+  (0.1ms) SELECT version FROM "schema_migrations"
19
+  (79.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110801151741')
20
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
21
+  (0.0ms) select sqlite_version(*)
22
+  (1.8ms) CREATE TABLE "emails" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from_address" varchar(255) NOT NULL, "to_address" varchar(255), "cc_address" varchar(255), "bcc_address" varchar(255), "reply_to_address" varchar(255), "subject" varchar(255), "content" text, "sent_at" datetime, "delayed_job_id" integer, "created_at" datetime, "updated_at" datetime) 
23
+  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24
+  (0.0ms) PRAGMA index_list("schema_migrations")
25
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
26
+  (0.1ms) SELECT version FROM "schema_migrations"
27
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110801151741')
28
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
29
+  (0.0ms) select sqlite_version(*)
30
+  (1.6ms) CREATE TABLE "emails" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from_address" varchar(255) NOT NULL, "to_address" varchar(255), "cc_address" varchar(255), "bcc_address" varchar(255), "reply_to_address" varchar(255), "subject" varchar(255), "content" text, "sent_at" datetime, "delayed_job_id" integer, "created_at" datetime, "updated_at" datetime) 
31
+  (11.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
32
+  (0.0ms) PRAGMA index_list("schema_migrations")
33
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
34
+  (0.1ms) SELECT version FROM "schema_migrations"
35
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110801151741')
36
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
37
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
38
+ Migrating to CreateEmails (20110801151741)
39
+  (0.0ms) select sqlite_version(*)
40
+  (0.9ms) DROP TABLE "emails"
41
+  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20110801151741'
42
+  (0.1ms) select sqlite_version(*)
43
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
44
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
45
+ Migrating to CreateEmails (20110801151741)
46
+  (0.3ms) CREATE TABLE "emails" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from_address" varchar(255) NOT NULL, "to_address" varchar(255), "cc_address" varchar(255), "bcc_address" varchar(255), "reply_to_address" varchar(255), "subject" varchar(255), "content" text, "sent_at" datetime, "created_at" datetime, "updated_at" datetime) 
47
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110801151741')
48
+  (0.1ms) select sqlite_version(*)
49
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
50
+  (0.0ms) PRAGMA index_list("emails")
@@ -0,0 +1,398 @@
1
+  (10.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2
+ Migrating to CreateEmails (20110801151741)
3
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
4
+ Migrating to CreateEmails (20110801151741)
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateEmails (20110801151741)
7
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
8
+ Migrating to CreateEmails (20110801151741)
9
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
10
+ Migrating to CreateEmails (20110801151741)
11
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
12
+ Migrating to CreateEmails (20110801151741)
13
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14
+ Migrating to CreateEmails (20110801151741)
15
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16
+ Migrating to CreateEmails (20110801151741)
17
+  (0.0ms) SAVEPOINT active_record_1
18
+ SQL (35.8ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", nil], ["cc_address", nil], ["content", nil], ["created_at", Thu, 04 Aug 2011 18:50:36 UTC +00:00], ["delayed_job_id", nil], ["from_address", "user@example.com"], ["reply_to_address", nil], ["sent_at", nil], ["subject", nil], ["to_address", nil], ["updated_at", Thu, 04 Aug 2011 18:50:36 UTC +00:00]]
19
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20
+  (0.0ms) SAVEPOINT active_record_1
21
+ SQL (0.4ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", nil], ["cc_address", nil], ["content", nil], ["created_at", Thu, 04 Aug 2011 18:50:36 UTC +00:00], ["delayed_job_id", nil], ["from_address", "user@example.com"], ["reply_to_address", nil], ["sent_at", nil], ["subject", nil], ["to_address", nil], ["updated_at", Thu, 04 Aug 2011 18:50:36 UTC +00:00]]
22
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
24
+ Migrating to CreateEmails (20110801151741)
25
+  (0.0ms) SAVEPOINT active_record_1
26
+ SQL (4.0ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", nil], ["cc_address", nil], ["content", nil], ["created_at", Thu, 04 Aug 2011 18:51:31 UTC +00:00], ["delayed_job_id", nil], ["from_address", "user@example.com"], ["reply_to_address", nil], ["sent_at", nil], ["subject", nil], ["to_address", nil], ["updated_at", Thu, 04 Aug 2011 18:51:31 UTC +00:00]]
27
+  (0.1ms) RELEASE SAVEPOINT active_record_1
28
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
29
+ Migrating to CreateEmails (20110801151741)
30
+  (0.0ms) SAVEPOINT active_record_1
31
+ SQL (3.5ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", nil], ["cc_address", nil], ["content", nil], ["created_at", Thu, 04 Aug 2011 18:52:44 UTC +00:00], ["delayed_job_id", nil], ["from_address", "user@example.com"], ["reply_to_address", nil], ["sent_at", nil], ["subject", nil], ["to_address", nil], ["updated_at", Thu, 04 Aug 2011 18:52:44 UTC +00:00]]
32
+  (0.1ms) RELEASE SAVEPOINT active_record_1
33
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
34
+ Migrating to CreateEmails (20110801151741)
35
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
36
+ Migrating to CreateEmails (20110801151741)
37
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
38
+ Migrating to CreateEmails (20110801151741)
39
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
40
+ Migrating to CreateEmails (20110801151741)
41
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
42
+ Migrating to CreateEmails (20110801151741)
43
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
44
+ Migrating to CreateEmails (20110801151741)
45
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
46
+ Migrating to CreateEmails (20110801151741)
47
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
48
+ Migrating to CreateEmails (20110801151741)
49
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
50
+ Migrating to CreateEmails (20110801151741)
51
+  (0.1ms) SELECT COUNT(*) FROM "emails"
52
+ Rendered sample_mailer/hello.text.erb (5.0ms)
53
+  (0.0ms) SAVEPOINT active_record_1
54
+ SQL (6.8ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", ""], ["cc_address", ""], ["content", "Date: Thu, 04 Aug 2011 16:09:56 -0400\r\nFrom: from@example.com\r\nTo: to@example.com\r\nMessage-ID: <4e3afc94ed932_7901800eb1b0590f8@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:09:56 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", ""], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:09:56 UTC +00:00]]
55
+  (0.1ms) RELEASE SAVEPOINT active_record_1
56
+
57
+ Sent mail to to@example.com (66ms)
58
+ Date: Thu, 04 Aug 2011 16:09:56 -0400
59
+ From: from@example.com
60
+ To: to@example.com
61
+ Message-ID: <4e3afc94ed932_7901800eb1b0590f8@dgmpro.local.mail>
62
+ Subject: Hiya!
63
+ Mime-Version: 1.0
64
+ Content-Type: text/plain;
65
+ charset=UTF-8
66
+ Content-Transfer-Encoding: 7bit
67
+
68
+ Papaya
69
+  (0.1ms) SELECT COUNT(*) FROM "emails"
70
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
71
+ Migrating to CreateEmails (20110801151741)
72
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
73
+ Migrating to CreateEmails (20110801151741)
74
+  (0.1ms) SELECT COUNT(*) FROM "emails"
75
+ Rendered sample_mailer/hello.text.erb (1.3ms)
76
+  (0.0ms) SAVEPOINT active_record_1
77
+ SQL (3.5ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", ""], ["cc_address", ""], ["content", "Date: Thu, 04 Aug 2011 16:11:51 -0400\r\nFrom: from@example.com\r\nTo: to@example.com\r\nMessage-ID: <4e3afd07c5ba8_794c800eb1b04369d@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:11:51 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", ""], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:11:51 UTC +00:00]]
78
+  (0.1ms) RELEASE SAVEPOINT active_record_1
79
+
80
+ Sent mail to to@example.com (26ms)
81
+ Date: Thu, 04 Aug 2011 16:11:51 -0400
82
+ From: from@example.com
83
+ To: to@example.com
84
+ Message-ID: <4e3afd07c5ba8_794c800eb1b04369d@dgmpro.local.mail>
85
+ Subject: Hiya!
86
+ Mime-Version: 1.0
87
+ Content-Type: text/plain;
88
+ charset=UTF-8
89
+ Content-Transfer-Encoding: 7bit
90
+
91
+ Papaya
92
+  (0.1ms) SELECT COUNT(*) FROM "emails"
93
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
94
+ Migrating to CreateEmails (20110801151741)
95
+  (0.1ms) SELECT COUNT(*) FROM "emails"
96
+ Rendered sample_mailer/hello.text.erb (18.7ms)
97
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
98
+ Migrating to CreateEmails (20110801151741)
99
+  (0.1ms) SELECT COUNT(*) FROM "emails"
100
+ Rendered sample_mailer/hello.text.erb (5.9ms)
101
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
102
+ Migrating to CreateEmails (20110801151741)
103
+  (0.1ms) SELECT COUNT(*) FROM "emails"
104
+ Rendered sample_mailer/hello.text.erb (1.2ms)
105
+  (0.0ms) SAVEPOINT active_record_1
106
+ SQL (9.8ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:27:48 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b00c41035a_7af1800eb1b0352@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:27:48 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:27:48 UTC +00:00]]
107
+  (0.1ms) RELEASE SAVEPOINT active_record_1
108
+
109
+ Sent mail to to@example.com (46ms)
110
+ Date: Thu, 04 Aug 2011 16:27:48 -0400
111
+ From: from@example.com
112
+ Reply-To: reply_to@example.com
113
+ To: to@example.com
114
+ Cc: cc@example.com
115
+ Message-ID: <4e3b00c41035a_7af1800eb1b0352@dgmpro.local.mail>
116
+ Subject: Hiya!
117
+ Mime-Version: 1.0
118
+ Content-Type: text/plain;
119
+ charset=UTF-8
120
+ Content-Transfer-Encoding: 7bit
121
+
122
+ Papaya
123
+  (0.1ms) SELECT COUNT(*) FROM "emails"
124
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
125
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
126
+ Migrating to CreateEmails (20110801151741)
127
+  (0.1ms) SELECT COUNT(*) FROM "emails"
128
+ Rendered sample_mailer/hello.text.erb (1.1ms)
129
+  (0.0ms) SAVEPOINT active_record_1
130
+ SQL (3.5ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:27:57 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b00cd4363a_7b02800eb1b0204b4@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:27:57 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:27:57 UTC +00:00]]
131
+  (0.1ms) RELEASE SAVEPOINT active_record_1
132
+
133
+ Sent mail to to@example.com (30ms)
134
+ Date: Thu, 04 Aug 2011 16:27:57 -0400
135
+ From: from@example.com
136
+ Reply-To: reply_to@example.com
137
+ To: to@example.com
138
+ Cc: cc@example.com
139
+ Message-ID: <4e3b00cd4363a_7b02800eb1b0204b4@dgmpro.local.mail>
140
+ Subject: Hiya!
141
+ Mime-Version: 1.0
142
+ Content-Type: text/plain;
143
+ charset=UTF-8
144
+ Content-Transfer-Encoding: 7bit
145
+
146
+ Papaya
147
+  (0.0ms) SELECT COUNT(*) FROM "emails"
148
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
149
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
150
+ Migrating to CreateEmails (20110801151741)
151
+  (0.1ms) SELECT COUNT(*) FROM "emails"
152
+ Rendered sample_mailer/hello.text.erb (1.3ms)
153
+  (0.0ms) SAVEPOINT active_record_1
154
+ SQL (3.6ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:28:39 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b00f74d2b3_7b1c800eb1b0967bf@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:28:39 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:28:39 UTC +00:00]]
155
+  (0.1ms) RELEASE SAVEPOINT active_record_1
156
+
157
+ Sent mail to to@example.com (32ms)
158
+ Date: Thu, 04 Aug 2011 16:28:39 -0400
159
+ From: from@example.com
160
+ Reply-To: reply_to@example.com
161
+ To: to@example.com
162
+ Cc: cc@example.com
163
+ Message-ID: <4e3b00f74d2b3_7b1c800eb1b0967bf@dgmpro.local.mail>
164
+ Subject: Hiya!
165
+ Mime-Version: 1.0
166
+ Content-Type: text/plain;
167
+ charset=UTF-8
168
+ Content-Transfer-Encoding: 7bit
169
+
170
+ Papaya
171
+  (0.1ms) SELECT COUNT(*) FROM "emails"
172
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
173
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
174
+ Migrating to CreateEmails (20110801151741)
175
+  (0.1ms) SELECT COUNT(*) FROM "emails"
176
+ Rendered sample_mailer/hello.text.erb (1.1ms)
177
+  (0.0ms) SAVEPOINT active_record_1
178
+ SQL (3.4ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:29:33 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b012d3603b_7b39800eb1b08085@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:29:33 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:29:33 UTC +00:00]]
179
+  (0.1ms) RELEASE SAVEPOINT active_record_1
180
+
181
+ Sent mail to to@example.com (31ms)
182
+ Date: Thu, 04 Aug 2011 16:29:33 -0400
183
+ From: from@example.com
184
+ Reply-To: reply_to@example.com
185
+ To: to@example.com
186
+ Cc: cc@example.com
187
+ Message-ID: <4e3b012d3603b_7b39800eb1b08085@dgmpro.local.mail>
188
+ Subject: Hiya!
189
+ Mime-Version: 1.0
190
+ Content-Type: text/plain;
191
+ charset=UTF-8
192
+ Content-Transfer-Encoding: 7bit
193
+
194
+ Papaya
195
+  (0.0ms) SELECT COUNT(*) FROM "emails"
196
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
197
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
198
+ Migrating to CreateEmails (20110801151741)
199
+  (0.1ms) SELECT COUNT(*) FROM "emails"
200
+ Rendered sample_mailer/hello.text.erb (1.1ms)
201
+  (0.0ms) SAVEPOINT active_record_1
202
+ SQL (3.4ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:30:45 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b0175309dc_7b63800eb1b0798a2@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:30:45 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:30:45 UTC +00:00]]
203
+  (0.1ms) RELEASE SAVEPOINT active_record_1
204
+
205
+ Sent mail to to@example.com (30ms)
206
+ Date: Thu, 04 Aug 2011 16:30:45 -0400
207
+ From: from@example.com
208
+ Reply-To: reply_to@example.com
209
+ To: to@example.com
210
+ Cc: cc@example.com
211
+ Message-ID: <4e3b0175309dc_7b63800eb1b0798a2@dgmpro.local.mail>
212
+ Subject: Hiya!
213
+ Mime-Version: 1.0
214
+ Content-Type: text/plain;
215
+ charset=UTF-8
216
+ Content-Transfer-Encoding: 7bit
217
+
218
+ Papaya
219
+  (0.1ms) SELECT COUNT(*) FROM "emails"
220
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
221
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
222
+ Migrating to CreateEmails (20110801151741)
223
+  (0.1ms) SELECT COUNT(*) FROM "emails"
224
+ Rendered sample_mailer/hello.text.erb (1.1ms)
225
+  (0.0ms) SAVEPOINT active_record_1
226
+ SQL (3.3ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:31:11 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b018f3d7c2_7b79800eb1b07757d@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:31:11 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:31:11 UTC +00:00]]
227
+  (0.1ms) RELEASE SAVEPOINT active_record_1
228
+
229
+ Sent mail to to@example.com (31ms)
230
+ Date: Thu, 04 Aug 2011 16:31:11 -0400
231
+ From: from@example.com
232
+ Reply-To: reply_to@example.com
233
+ To: to@example.com
234
+ Cc: cc@example.com
235
+ Message-ID: <4e3b018f3d7c2_7b79800eb1b07757d@dgmpro.local.mail>
236
+ Subject: Hiya!
237
+ Mime-Version: 1.0
238
+ Content-Type: text/plain;
239
+ charset=UTF-8
240
+ Content-Transfer-Encoding: 7bit
241
+
242
+ Papaya
243
+  (0.1ms) SELECT COUNT(*) FROM "emails"
244
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
245
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
246
+ Migrating to CreateEmails (20110801151741)
247
+  (0.1ms) SELECT COUNT(*) FROM "emails"
248
+ Rendered sample_mailer/hello.text.erb (1.1ms)
249
+  (0.1ms) SAVEPOINT active_record_1
250
+ SQL (3.6ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "delayed_job_id", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:32:56 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b01f8ab3ee_7c0b800eb1b047282@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:32:56 UTC +00:00], ["delayed_job_id", nil], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:32:56 UTC +00:00]]
251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
252
+
253
+ Sent mail to to@example.com (31ms)
254
+ Date: Thu, 04 Aug 2011 16:32:56 -0400
255
+ From: from@example.com
256
+ Reply-To: reply_to@example.com
257
+ To: to@example.com
258
+ Cc: cc@example.com
259
+ Message-ID: <4e3b01f8ab3ee_7c0b800eb1b047282@dgmpro.local.mail>
260
+ Subject: Hiya!
261
+ Mime-Version: 1.0
262
+ Content-Type: text/plain;
263
+ charset=UTF-8
264
+ Content-Transfer-Encoding: 7bit
265
+
266
+ Papaya
267
+  (0.1ms) SELECT COUNT(*) FROM "emails"
268
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
269
+  (0.1ms) select sqlite_version(*)
270
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
271
+  (0.0ms) PRAGMA index_list("schema_migrations")
272
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
273
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
274
+ Migrating to CreateEmails (20110801151741)
275
+  (0.3ms) CREATE TABLE "emails" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "from_address" varchar(255) NOT NULL, "to_address" varchar(255), "cc_address" varchar(255), "bcc_address" varchar(255), "reply_to_address" varchar(255), "subject" varchar(255), "content" text, "sent_at" datetime, "created_at" datetime, "updated_at" datetime)
276
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110801151741')
277
+  (0.0ms) SELECT COUNT(*) FROM "emails"
278
+ Rendered sample_mailer/hello.text.erb (1.1ms)
279
+  (0.0ms) SAVEPOINT active_record_1
280
+ SQL (3.4ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:33:18 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b020ed7d86_7c1c800eb1b058238@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:33:18 UTC +00:00], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:33:18 UTC +00:00]]
281
+  (0.1ms) RELEASE SAVEPOINT active_record_1
282
+
283
+ Sent mail to to@example.com (30ms)
284
+ Date: Thu, 04 Aug 2011 16:33:18 -0400
285
+ From: from@example.com
286
+ Reply-To: reply_to@example.com
287
+ To: to@example.com
288
+ Cc: cc@example.com
289
+ Message-ID: <4e3b020ed7d86_7c1c800eb1b058238@dgmpro.local.mail>
290
+ Subject: Hiya!
291
+ Mime-Version: 1.0
292
+ Content-Type: text/plain;
293
+ charset=UTF-8
294
+ Content-Transfer-Encoding: 7bit
295
+
296
+ Papaya
297
+  (0.1ms) SELECT COUNT(*) FROM "emails"
298
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
299
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
300
+ Migrating to CreateEmails (20110801151741)
301
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
302
+ Migrating to CreateEmails (20110801151741)
303
+  (0.1ms) SELECT COUNT(*) FROM "emails" 
304
+ Rendered sample_mailer/hello.text.erb (1.1ms)
305
+  (0.1ms) SAVEPOINT active_record_1
306
+ SQL (3.5ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:34:30 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b0256cf882_7c2e800eb1b0629b2@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:34:30 UTC +00:00], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:34:30 UTC +00:00]]
307
+  (0.1ms) RELEASE SAVEPOINT active_record_1
308
+
309
+ Sent mail to to@example.com (31ms)
310
+ Date: Thu, 04 Aug 2011 16:34:30 -0400
311
+ From: from@example.com
312
+ Reply-To: reply_to@example.com
313
+ To: to@example.com
314
+ Cc: cc@example.com
315
+ Message-ID: <4e3b0256cf882_7c2e800eb1b0629b2@dgmpro.local.mail>
316
+ Subject: Hiya!
317
+ Mime-Version: 1.0
318
+ Content-Type: text/plain;
319
+ charset=UTF-8
320
+ Content-Transfer-Encoding: 7bit
321
+
322
+ Papaya
323
+  (0.1ms) SELECT COUNT(*) FROM "emails" 
324
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
325
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
326
+ Migrating to CreateEmails (20110801151741)
327
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
328
+ Migrating to CreateEmails (20110801151741)
329
+  (0.1ms) SELECT COUNT(*) FROM "emails" 
330
+ Rendered sample_mailer/hello.text.erb (1.1ms)
331
+  (0.1ms) SAVEPOINT active_record_1
332
+ SQL (3.4ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:35:00 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b0274d022a_7c41800eb1b071861@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:35:00 UTC +00:00], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:35:00 UTC +00:00]]
333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
334
+
335
+ Sent mail to to@example.com (31ms)
336
+ Date: Thu, 04 Aug 2011 16:35:00 -0400
337
+ From: from@example.com
338
+ Reply-To: reply_to@example.com
339
+ To: to@example.com
340
+ Cc: cc@example.com
341
+ Message-ID: <4e3b0274d022a_7c41800eb1b071861@dgmpro.local.mail>
342
+ Subject: Hiya!
343
+ Mime-Version: 1.0
344
+ Content-Type: text/plain;
345
+ charset=UTF-8
346
+ Content-Transfer-Encoding: 7bit
347
+
348
+ Papaya
349
+  (0.0ms) SELECT COUNT(*) FROM "emails" 
350
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
351
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
352
+ Migrating to CreateEmails (20110801151741)
353
+  (0.1ms) SELECT COUNT(*) FROM "emails"
354
+ Rendered sample_mailer/hello.text.erb (1.1ms)
355
+  (0.1ms) SAVEPOINT active_record_1
356
+ SQL (3.4ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 16:40:16 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b03b06518d_7cc1800eb1b089342@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 20:40:16 UTC +00:00], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 20:40:16 UTC +00:00]]
357
+  (0.1ms) RELEASE SAVEPOINT active_record_1
358
+
359
+ Sent mail to to@example.com (29ms)
360
+ Date: Thu, 04 Aug 2011 16:40:16 -0400
361
+ From: from@example.com
362
+ Reply-To: reply_to@example.com
363
+ To: to@example.com
364
+ Cc: cc@example.com
365
+ Message-ID: <4e3b03b06518d_7cc1800eb1b089342@dgmpro.local.mail>
366
+ Subject: Hiya!
367
+ Mime-Version: 1.0
368
+ Content-Type: text/plain;
369
+ charset=UTF-8
370
+ Content-Transfer-Encoding: 7bit
371
+
372
+ Papaya
373
+  (0.1ms) SELECT COUNT(*) FROM "emails"
374
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
375
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
376
+ Migrating to CreateEmails (20110801151741)
377
+  (0.1ms) SELECT COUNT(*) FROM "emails"
378
+ Rendered sample_mailer/hello.text.erb (1.1ms)
379
+  (0.0ms) SAVEPOINT active_record_1
380
+ SQL (4.3ms) INSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 17:13:36 -0400\r\nFrom: from@example.com\r\nReply-To: reply_to@example.com\r\nTo: to@example.com\r\nCc: cc@example.com\r\nMessage-ID: <4e3b0b80861ed_7e92800eb1b010e2@dgmpro.local.mail>\r\nSubject: Hiya!\r\nMime-Version: 1.0\r\nContent-Type: text/plain;\r\n charset=UTF-8\r\nContent-Transfer-Encoding: 7bit\r\n\r\nPapaya"], ["created_at", Thu, 04 Aug 2011 21:13:36 UTC +00:00], ["from_address", "from@example.com"], ["reply_to_address", "reply_to@example.com"], ["sent_at", nil], ["subject", "Hiya!"], ["to_address", "to@example.com"], ["updated_at", Thu, 04 Aug 2011 21:13:36 UTC +00:00]]
381
+  (0.1ms) RELEASE SAVEPOINT active_record_1
382
+
383
+ Sent mail to to@example.com (30ms)
384
+ Date: Thu, 04 Aug 2011 17:13:36 -0400
385
+ From: from@example.com
386
+ Reply-To: reply_to@example.com
387
+ To: to@example.com
388
+ Cc: cc@example.com
389
+ Message-ID: <4e3b0b80861ed_7e92800eb1b010e2@dgmpro.local.mail>
390
+ Subject: Hiya!
391
+ Mime-Version: 1.0
392
+ Content-Type: text/plain;
393
+ charset=UTF-8
394
+ Content-Transfer-Encoding: 7bit
395
+
396
+ Papaya
397
+  (0.1ms) SELECT COUNT(*) FROM "emails"
398
+ Mailhopper::Email Load (0.1ms) SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1