delayed_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.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +35 -0
- data/Rakefile +40 -0
- data/app/models/delayed_mailhopper/email.rb +13 -0
- data/app/models/delayed_mailhopper/send_job.rb +16 -0
- data/config/routes.rb +2 -0
- data/lib/delayed_mailhopper.rb +9 -0
- data/lib/delayed_mailhopper/engine.rb +4 -0
- data/lib/delayed_mailhopper/version.rb +3 -0
- data/lib/tasks/delayed_mailhopper_tasks.rake +4 -0
- data/test/delayed_mailhopper_test.rb +7 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +9 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/sample_mailer.rb +8 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/sample_mailer/hello.text.erb +1 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +42 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +27 -0
- data/test/dummy/config/environments/production.rb +51 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mailhopper.rb +3 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +12 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20110804223859_create_emails.rb +21 -0
- data/test/dummy/db/migrate/20110804224806_create_delayed_jobs.rb +21 -0
- data/test/dummy/db/schema.rb +43 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +18 -0
- data/test/dummy/log/test.log +1571 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/delayed_job +5 -0
- data/test/dummy/script/rails +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +14 -0
- data/test/unit/email_test.rb +67 -0
- metadata +235 -0
@@ -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,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 = '9727bc22e0ec6185f90141e432759ee5cc45d98b4a42274821a127e5b99fbedaf5fc755d0cd86feca212279bbecb67b9a362373eaa7009dee59359ee31c99017'
|
@@ -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,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,21 @@
|
|
1
|
+
class CreateDelayedJobs < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
create_table :delayed_jobs, :force => true do |table|
|
4
|
+
table.integer :priority, :default => 0 # Allows some jobs to jump to the front of the queue
|
5
|
+
table.integer :attempts, :default => 0 # Provides for retries, but still fail eventually.
|
6
|
+
table.text :handler # YAML-encoded string of the object that will do work
|
7
|
+
table.text :last_error # reason for last failure (See Note below)
|
8
|
+
table.datetime :run_at # When to run. Could be Time.zone.now for immediately, or sometime in the future.
|
9
|
+
table.datetime :locked_at # Set when a client is working on this object
|
10
|
+
table.datetime :failed_at # Set when all retries have failed (actually, by default, the record is deleted instead)
|
11
|
+
table.string :locked_by # Who is working on this object (if locked)
|
12
|
+
table.timestamps
|
13
|
+
end
|
14
|
+
|
15
|
+
add_index :delayed_jobs, [:priority, :run_at], :name => 'delayed_jobs_priority'
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.down
|
19
|
+
drop_table :delayed_jobs
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,43 @@
|
|
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 => 20110804224806) do
|
14
|
+
|
15
|
+
create_table "delayed_jobs", :force => true do |t|
|
16
|
+
t.integer "priority", :default => 0
|
17
|
+
t.integer "attempts", :default => 0
|
18
|
+
t.text "handler"
|
19
|
+
t.text "last_error"
|
20
|
+
t.datetime "run_at"
|
21
|
+
t.datetime "locked_at"
|
22
|
+
t.datetime "failed_at"
|
23
|
+
t.string "locked_by"
|
24
|
+
t.datetime "created_at"
|
25
|
+
t.datetime "updated_at"
|
26
|
+
end
|
27
|
+
|
28
|
+
add_index "delayed_jobs", ["priority", "run_at"], :name => "delayed_jobs_priority"
|
29
|
+
|
30
|
+
create_table "emails", :force => true do |t|
|
31
|
+
t.string "from_address", :null => false
|
32
|
+
t.string "to_address"
|
33
|
+
t.string "cc_address"
|
34
|
+
t.string "bcc_address"
|
35
|
+
t.string "reply_to_address"
|
36
|
+
t.string "subject"
|
37
|
+
t.text "content"
|
38
|
+
t.datetime "sent_at"
|
39
|
+
t.datetime "created_at"
|
40
|
+
t.datetime "updated_at"
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
Binary file
|
@@ -0,0 +1,18 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6
|
+
Migrating to CreateEmails (20110804223859)
|
7
|
+
[1m[35m (0.5ms)[0m 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)
|
8
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110804223859')[0m
|
9
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
10
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime, "updated_at" datetime)
|
11
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("delayed_jobs")[0m
|
12
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
13
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110804224806')[0m
|
14
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
15
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
16
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("delayed_jobs")
|
17
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('delayed_jobs_priority')[0m
|
18
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("emails")
|
@@ -0,0 +1,1571 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6
|
+
Migrating to CreateEmails (20110804223859)
|
7
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
8
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
9
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110804223859')
|
10
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
11
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
12
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("delayed_jobs")
|
13
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
14
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110804224806')
|
15
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
16
|
+
Migrating to CreateEmails (20110804223859)
|
17
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
18
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "emails"
|
19
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
20
|
+
Migrating to CreateEmails (20110804223859)
|
21
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
22
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "emails"
|
23
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
24
|
+
Migrating to CreateEmails (20110804223859)
|
25
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
26
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
27
|
+
Migrating to CreateEmails (20110804223859)
|
28
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
29
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
30
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
31
|
+
Migrating to CreateEmails (20110804223859)
|
32
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
33
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
34
|
+
Migrating to CreateEmails (20110804223859)
|
35
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
36
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
37
|
+
Rendered sample_mailer/hello.text.erb (1.1ms)
|
38
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
39
|
+
[1m[36mSQL (181.1ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 18:51: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: <4e3b2275ec29d_8530800eb1b0967b7@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 22:51:34 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 22:51:34 UTC +00:00]]
|
40
|
+
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
41
|
+
|
42
|
+
Sent mail to to@example.com (261ms)
|
43
|
+
Date: Thu, 04 Aug 2011 18:51:33 -0400
|
44
|
+
From: from@example.com
|
45
|
+
Reply-To: reply_to@example.com
|
46
|
+
To: to@example.com
|
47
|
+
Cc: cc@example.com
|
48
|
+
Message-ID: <4e3b2275ec29d_8530800eb1b0967b7@dgmpro.local.mail>
|
49
|
+
Subject: Hiya!
|
50
|
+
Mime-Version: 1.0
|
51
|
+
Content-Type: text/plain;
|
52
|
+
charset=UTF-8
|
53
|
+
Content-Transfer-Encoding: 7bit
|
54
|
+
|
55
|
+
Papaya
|
56
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
57
|
+
Migrating to CreateEmails (20110804223859)
|
58
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
59
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
60
|
+
Migrating to CreateEmails (20110804223859)
|
61
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
62
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
63
|
+
Rendered sample_mailer/hello.text.erb (1.1ms)
|
64
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
65
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 18:52:01 -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: <4e3b229128921_8538800eb1b0828fb@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 22:52:01 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 22:52:01 UTC +00:00]]
|
66
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Thu, 04 Aug 2011 22:52:01 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Thu, 04 Aug 2011 22:52:01 UTC +00:00], ["updated_at", Thu, 04 Aug 2011 22:52:01 UTC +00:00]]
|
67
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "created_at" = '2011-08-04 22:52:01.185507', "content" = 'Date: Thu, 04 Aug 2011 18:52:01 -0400
|
68
|
+
From: from@example.com
|
69
|
+
Reply-To: reply_to@example.com
|
70
|
+
To: to@example.com
|
71
|
+
Cc: cc@example.com
|
72
|
+
Message-ID: <4e3b229128921_8538800eb1b0828fb@dgmpro.local.mail>
|
73
|
+
Subject: Hiya!
|
74
|
+
Mime-Version: 1.0
|
75
|
+
Content-Type: text/plain;
|
76
|
+
charset=UTF-8
|
77
|
+
Content-Transfer-Encoding: 7bit
|
78
|
+
|
79
|
+
Papaya', "from_address" = 'from@example.com', "updated_at" = '2011-08-04 22:52:01.185507', "reply_to_address" = 'reply_to@example.com', "bcc_address" = 'bcc@example.com', "to_address" = 'to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com' WHERE "emails"."id" = 1[0m
|
80
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
81
|
+
|
82
|
+
Sent mail to to@example.com (39ms)
|
83
|
+
Date: Thu, 04 Aug 2011 18:52:01 -0400
|
84
|
+
From: from@example.com
|
85
|
+
Reply-To: reply_to@example.com
|
86
|
+
To: to@example.com
|
87
|
+
Cc: cc@example.com
|
88
|
+
Message-ID: <4e3b229128921_8538800eb1b0828fb@dgmpro.local.mail>
|
89
|
+
Subject: Hiya!
|
90
|
+
Mime-Version: 1.0
|
91
|
+
Content-Type: text/plain;
|
92
|
+
charset=UTF-8
|
93
|
+
Content-Transfer-Encoding: 7bit
|
94
|
+
|
95
|
+
Papaya
|
96
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
97
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
98
|
+
Migrating to CreateEmails (20110804223859)
|
99
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
100
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
101
|
+
Migrating to CreateEmails (20110804223859)
|
102
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
103
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
104
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
105
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
106
|
+
[1m[36mSQL (3.5ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 18:52:24 -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: <4e3b22a8f2f1b_853f800eb1b0118cb@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 22:52:25 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 22:52:25 UTC +00:00]]
|
107
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Thu, 04 Aug 2011 22:52:25 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Thu, 04 Aug 2011 22:52:25 UTC +00:00], ["updated_at", Thu, 04 Aug 2011 22:52:25 UTC +00:00]]
|
108
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "reply_to_address" = 'reply_to@example.com', "created_at" = '2011-08-04 22:52:25.014651', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-04 22:52:25.014651', "from_address" = 'from@example.com', "subject" = 'Hiya!', "to_address" = 'to@example.com', "content" = 'Date: Thu, 04 Aug 2011 18:52:24 -0400
|
109
|
+
From: from@example.com
|
110
|
+
Reply-To: reply_to@example.com
|
111
|
+
To: to@example.com
|
112
|
+
Cc: cc@example.com
|
113
|
+
Message-ID: <4e3b22a8f2f1b_853f800eb1b0118cb@dgmpro.local.mail>
|
114
|
+
Subject: Hiya!
|
115
|
+
Mime-Version: 1.0
|
116
|
+
Content-Type: text/plain;
|
117
|
+
charset=UTF-8
|
118
|
+
Content-Transfer-Encoding: 7bit
|
119
|
+
|
120
|
+
Papaya', "bcc_address" = 'bcc@example.com' WHERE "emails"."id" = 1[0m
|
121
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
122
|
+
|
123
|
+
Sent mail to to@example.com (40ms)
|
124
|
+
Date: Thu, 04 Aug 2011 18:52:24 -0400
|
125
|
+
From: from@example.com
|
126
|
+
Reply-To: reply_to@example.com
|
127
|
+
To: to@example.com
|
128
|
+
Cc: cc@example.com
|
129
|
+
Message-ID: <4e3b22a8f2f1b_853f800eb1b0118cb@dgmpro.local.mail>
|
130
|
+
Subject: Hiya!
|
131
|
+
Mime-Version: 1.0
|
132
|
+
Content-Type: text/plain;
|
133
|
+
charset=UTF-8
|
134
|
+
Content-Transfer-Encoding: 7bit
|
135
|
+
|
136
|
+
Papaya
|
137
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
138
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
139
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
140
|
+
Migrating to CreateEmails (20110804223859)
|
141
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
142
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "emails"
|
143
|
+
Rendered sample_mailer/hello.text.erb (1.3ms)
|
144
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
145
|
+
[1m[35mSQL (36.5ms)[0m 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 23:43:09 -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: <4e3b66cd8316_96a9800eb1b0140d1@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", Fri, 05 Aug 2011 03:43:09 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", Fri, 05 Aug 2011 03:43:09 UTC +00:00]]
|
146
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:43:09 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:43:09 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:43:09 UTC +00:00]]
|
147
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "created_at" = '2011-08-05 03:43:09.098440', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "subject" = 'Hiya!', "updated_at" = '2011-08-05 03:43:09.098440', "from_address" = 'from@example.com', "to_address" = 'to@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:43:09 -0400
|
148
|
+
From: from@example.com
|
149
|
+
Reply-To: reply_to@example.com
|
150
|
+
To: to@example.com
|
151
|
+
Cc: cc@example.com
|
152
|
+
Message-ID: <4e3b66cd8316_96a9800eb1b0140d1@dgmpro.local.mail>
|
153
|
+
Subject: Hiya!
|
154
|
+
Mime-Version: 1.0
|
155
|
+
Content-Type: text/plain;
|
156
|
+
charset=UTF-8
|
157
|
+
Content-Transfer-Encoding: 7bit
|
158
|
+
|
159
|
+
Papaya' WHERE "emails"."id" = 1
|
160
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
161
|
+
|
162
|
+
Sent mail to to@example.com (121ms)
|
163
|
+
Date: Thu, 04 Aug 2011 23:43:09 -0400
|
164
|
+
From: from@example.com
|
165
|
+
Reply-To: reply_to@example.com
|
166
|
+
To: to@example.com
|
167
|
+
Cc: cc@example.com
|
168
|
+
Message-ID: <4e3b66cd8316_96a9800eb1b0140d1@dgmpro.local.mail>
|
169
|
+
Subject: Hiya!
|
170
|
+
Mime-Version: 1.0
|
171
|
+
Content-Type: text/plain;
|
172
|
+
charset=UTF-8
|
173
|
+
Content-Transfer-Encoding: 7bit
|
174
|
+
|
175
|
+
Papaya
|
176
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "emails"
|
177
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
178
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
179
|
+
Migrating to CreateEmails (20110804223859)
|
180
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
181
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
182
|
+
Migrating to CreateEmails (20110804223859)
|
183
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
184
|
+
Rendered sample_mailer/hello.text.erb (1.1ms)
|
185
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
186
|
+
[1m[35mSQL (27.1ms)[0m 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 23:48:51 -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: <4e3b6823c00a9_9705800eb1b0439f@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", Fri, 05 Aug 2011 03:48:51 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", Fri, 05 Aug 2011 03:48:51 UTC +00:00]]
|
187
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:48:51 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:48:51 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:48:51 UTC +00:00]]
|
188
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 03:48:51.808978', "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "reply_to_address" = 'reply_to@example.com', "from_address" = 'from@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:48:51 -0400
|
189
|
+
From: from@example.com
|
190
|
+
Reply-To: reply_to@example.com
|
191
|
+
To: to@example.com
|
192
|
+
Cc: cc@example.com
|
193
|
+
Message-ID: <4e3b6823c00a9_9705800eb1b0439f@dgmpro.local.mail>
|
194
|
+
Subject: Hiya!
|
195
|
+
Mime-Version: 1.0
|
196
|
+
Content-Type: text/plain;
|
197
|
+
charset=UTF-8
|
198
|
+
Content-Transfer-Encoding: 7bit
|
199
|
+
|
200
|
+
Papaya', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "created_at" = '2011-08-05 03:48:51.808978' WHERE "emails"."id" = 1
|
201
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
202
|
+
|
203
|
+
Sent mail to to@example.com (68ms)
|
204
|
+
Date: Thu, 04 Aug 2011 23:48:51 -0400
|
205
|
+
From: from@example.com
|
206
|
+
Reply-To: reply_to@example.com
|
207
|
+
To: to@example.com
|
208
|
+
Cc: cc@example.com
|
209
|
+
Message-ID: <4e3b6823c00a9_9705800eb1b0439f@dgmpro.local.mail>
|
210
|
+
Subject: Hiya!
|
211
|
+
Mime-Version: 1.0
|
212
|
+
Content-Type: text/plain;
|
213
|
+
charset=UTF-8
|
214
|
+
Content-Transfer-Encoding: 7bit
|
215
|
+
|
216
|
+
Papaya
|
217
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "emails"
|
218
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
219
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
220
|
+
[1m[35mSQL (0.6ms)[0m 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 23:48:51 -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: <4e3b6823d3cef_9705800eb1b044ee@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", Fri, 05 Aug 2011 03:48:51 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", Fri, 05 Aug 2011 03:48:51 UTC +00:00]]
|
221
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:48:51 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:48:51 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:48:51 UTC +00:00]]
|
222
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 03:48:51.878799', "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "reply_to_address" = 'reply_to@example.com', "from_address" = 'from@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:48:51 -0400
|
223
|
+
From: from@example.com
|
224
|
+
Reply-To: reply_to@example.com
|
225
|
+
To: to@example.com
|
226
|
+
Cc: cc@example.com
|
227
|
+
Message-ID: <4e3b6823d3cef_9705800eb1b044ee@dgmpro.local.mail>
|
228
|
+
Subject: Hiya!
|
229
|
+
Mime-Version: 1.0
|
230
|
+
Content-Type: text/plain;
|
231
|
+
charset=UTF-8
|
232
|
+
Content-Transfer-Encoding: 7bit
|
233
|
+
|
234
|
+
Papaya', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "created_at" = '2011-08-05 03:48:51.878799' WHERE "emails"."id" = 1
|
235
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
236
|
+
|
237
|
+
Sent mail to to@example.com (19ms)
|
238
|
+
Date: Thu, 04 Aug 2011 23:48:51 -0400
|
239
|
+
From: from@example.com
|
240
|
+
Reply-To: reply_to@example.com
|
241
|
+
To: to@example.com
|
242
|
+
Cc: cc@example.com
|
243
|
+
Message-ID: <4e3b6823d3cef_9705800eb1b044ee@dgmpro.local.mail>
|
244
|
+
Subject: Hiya!
|
245
|
+
Mime-Version: 1.0
|
246
|
+
Content-Type: text/plain;
|
247
|
+
charset=UTF-8
|
248
|
+
Content-Transfer-Encoding: 7bit
|
249
|
+
|
250
|
+
Papaya
|
251
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
252
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
253
|
+
Migrating to CreateEmails (20110804223859)
|
254
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
255
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
256
|
+
Migrating to CreateEmails (20110804223859)
|
257
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
258
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
259
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
260
|
+
[1m[35mSQL (3.3ms)[0m 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 23:49:44 -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: <4e3b68584edee_970f800eb1b045728@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", Fri, 05 Aug 2011 03:49:44 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", Fri, 05 Aug 2011 03:49:44 UTC +00:00]]
|
261
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:49:44 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:49:44 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:49:44 UTC +00:00]]
|
262
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "subject" = 'Hiya!', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 03:49:44.344622', "created_at" = '2011-08-05 03:49:44.344622', "to_address" = 'to@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:49:44 -0400
|
263
|
+
From: from@example.com
|
264
|
+
Reply-To: reply_to@example.com
|
265
|
+
To: to@example.com
|
266
|
+
Cc: cc@example.com
|
267
|
+
Message-ID: <4e3b68584edee_970f800eb1b045728@dgmpro.local.mail>
|
268
|
+
Subject: Hiya!
|
269
|
+
Mime-Version: 1.0
|
270
|
+
Content-Type: text/plain;
|
271
|
+
charset=UTF-8
|
272
|
+
Content-Transfer-Encoding: 7bit
|
273
|
+
|
274
|
+
Papaya', "bcc_address" = 'bcc@example.com' WHERE "emails"."id" = 1
|
275
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
276
|
+
|
277
|
+
Sent mail to to@example.com (42ms)
|
278
|
+
Date: Thu, 04 Aug 2011 23:49:44 -0400
|
279
|
+
From: from@example.com
|
280
|
+
Reply-To: reply_to@example.com
|
281
|
+
To: to@example.com
|
282
|
+
Cc: cc@example.com
|
283
|
+
Message-ID: <4e3b68584edee_970f800eb1b045728@dgmpro.local.mail>
|
284
|
+
Subject: Hiya!
|
285
|
+
Mime-Version: 1.0
|
286
|
+
Content-Type: text/plain;
|
287
|
+
charset=UTF-8
|
288
|
+
Content-Transfer-Encoding: 7bit
|
289
|
+
|
290
|
+
Papaya
|
291
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "emails"
|
292
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
293
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
294
|
+
[1m[35mSQL (0.6ms)[0m 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 23:49:44 -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: <4e3b68585bd44_970f800eb1b045853@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", Fri, 05 Aug 2011 03:49:44 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", Fri, 05 Aug 2011 03:49:44 UTC +00:00]]
|
295
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:49:44 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:49:44 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:49:44 UTC +00:00]]
|
296
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "subject" = 'Hiya!', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 03:49:44.387732', "created_at" = '2011-08-05 03:49:44.387732', "to_address" = 'to@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:49:44 -0400
|
297
|
+
From: from@example.com
|
298
|
+
Reply-To: reply_to@example.com
|
299
|
+
To: to@example.com
|
300
|
+
Cc: cc@example.com
|
301
|
+
Message-ID: <4e3b68585bd44_970f800eb1b045853@dgmpro.local.mail>
|
302
|
+
Subject: Hiya!
|
303
|
+
Mime-Version: 1.0
|
304
|
+
Content-Type: text/plain;
|
305
|
+
charset=UTF-8
|
306
|
+
Content-Transfer-Encoding: 7bit
|
307
|
+
|
308
|
+
Papaya', "bcc_address" = 'bcc@example.com' WHERE "emails"."id" = 1
|
309
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
310
|
+
|
311
|
+
Sent mail to to@example.com (19ms)
|
312
|
+
Date: Thu, 04 Aug 2011 23:49:44 -0400
|
313
|
+
From: from@example.com
|
314
|
+
Reply-To: reply_to@example.com
|
315
|
+
To: to@example.com
|
316
|
+
Cc: cc@example.com
|
317
|
+
Message-ID: <4e3b68585bd44_970f800eb1b045853@dgmpro.local.mail>
|
318
|
+
Subject: Hiya!
|
319
|
+
Mime-Version: 1.0
|
320
|
+
Content-Type: text/plain;
|
321
|
+
charset=UTF-8
|
322
|
+
Content-Transfer-Encoding: 7bit
|
323
|
+
|
324
|
+
Papaya
|
325
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
326
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
327
|
+
Migrating to CreateEmails (20110804223859)
|
328
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
329
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
330
|
+
Migrating to CreateEmails (20110804223859)
|
331
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
332
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
333
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
334
|
+
[1m[35mSQL (3.3ms)[0m 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 23:50:54 -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: <4e3b689ee477c_9719800eb1b05824a@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", Fri, 05 Aug 2011 03:50:54 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", Fri, 05 Aug 2011 03:50:54 UTC +00:00]]
|
335
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:50:54 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:50:54 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:50:54 UTC +00:00]]
|
336
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "content" = 'Date: Thu, 04 Aug 2011 23:50:54 -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: <4e3b689ee477c_9719800eb1b05824a@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', "subject" = 'Hiya!', "cc_address" = 'cc@example.com', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 03:50:54.957317', "created_at" = '2011-08-05 03:50:54.957317', "to_address" = 'to@example.com' WHERE "emails"."id" = 1
|
349
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
350
|
+
|
351
|
+
Sent mail to to@example.com (43ms)
|
352
|
+
Date: Thu, 04 Aug 2011 23:50:54 -0400
|
353
|
+
From: from@example.com
|
354
|
+
Reply-To: reply_to@example.com
|
355
|
+
To: to@example.com
|
356
|
+
Cc: cc@example.com
|
357
|
+
Message-ID: <4e3b689ee477c_9719800eb1b05824a@dgmpro.local.mail>
|
358
|
+
Subject: Hiya!
|
359
|
+
Mime-Version: 1.0
|
360
|
+
Content-Type: text/plain;
|
361
|
+
charset=UTF-8
|
362
|
+
Content-Transfer-Encoding: 7bit
|
363
|
+
|
364
|
+
Papaya
|
365
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "emails"
|
366
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
367
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
368
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
369
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 23:50:54 -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: <4e3b689ef215a_9719800eb1b058311@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", Fri, 05 Aug 2011 03:50:55 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", Fri, 05 Aug 2011 03:50:55 UTC +00:00]]
|
370
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:50:55 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:50:55 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:50:55 UTC +00:00]]
|
371
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "content" = 'Date: Thu, 04 Aug 2011 23:50:54 -0400
|
372
|
+
From: from@example.com
|
373
|
+
Reply-To: reply_to@example.com
|
374
|
+
To: to@example.com
|
375
|
+
Cc: cc@example.com
|
376
|
+
Message-ID: <4e3b689ef215a_9719800eb1b058311@dgmpro.local.mail>
|
377
|
+
Subject: Hiya!
|
378
|
+
Mime-Version: 1.0
|
379
|
+
Content-Type: text/plain;
|
380
|
+
charset=UTF-8
|
381
|
+
Content-Transfer-Encoding: 7bit
|
382
|
+
|
383
|
+
Papaya', "subject" = 'Hiya!', "cc_address" = 'cc@example.com', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 03:50:55.002993', "created_at" = '2011-08-05 03:50:55.002993', "to_address" = 'to@example.com' WHERE "emails"."id" = 1[0m
|
384
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
385
|
+
|
386
|
+
Sent mail to to@example.com (19ms)
|
387
|
+
Date: Thu, 04 Aug 2011 23:50:54 -0400
|
388
|
+
From: from@example.com
|
389
|
+
Reply-To: reply_to@example.com
|
390
|
+
To: to@example.com
|
391
|
+
Cc: cc@example.com
|
392
|
+
Message-ID: <4e3b689ef215a_9719800eb1b058311@dgmpro.local.mail>
|
393
|
+
Subject: Hiya!
|
394
|
+
Mime-Version: 1.0
|
395
|
+
Content-Type: text/plain;
|
396
|
+
charset=UTF-8
|
397
|
+
Content-Transfer-Encoding: 7bit
|
398
|
+
|
399
|
+
Papaya
|
400
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
401
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
402
|
+
Migrating to CreateEmails (20110804223859)
|
403
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
404
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
405
|
+
Migrating to CreateEmails (20110804223859)
|
406
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
407
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
408
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
409
|
+
[1m[35mSQL (3.3ms)[0m 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 23:53:20 -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: <4e3b693035377_9739800eb1b045531@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", Fri, 05 Aug 2011 03:53:20 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", Fri, 05 Aug 2011 03:53:20 UTC +00:00]]
|
410
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00]]
|
411
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:53:20 -0400
|
412
|
+
From: from@example.com
|
413
|
+
Reply-To: reply_to@example.com
|
414
|
+
To: to@example.com
|
415
|
+
Cc: cc@example.com
|
416
|
+
Message-ID: <4e3b693035377_9739800eb1b045531@dgmpro.local.mail>
|
417
|
+
Subject: Hiya!
|
418
|
+
Mime-Version: 1.0
|
419
|
+
Content-Type: text/plain;
|
420
|
+
charset=UTF-8
|
421
|
+
Content-Transfer-Encoding: 7bit
|
422
|
+
|
423
|
+
Papaya', "updated_at" = '2011-08-05 03:53:20.238247', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "created_at" = '2011-08-05 03:53:20.238247', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
424
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
425
|
+
|
426
|
+
Sent mail to to@example.com (42ms)
|
427
|
+
Date: Thu, 04 Aug 2011 23:53:20 -0400
|
428
|
+
From: from@example.com
|
429
|
+
Reply-To: reply_to@example.com
|
430
|
+
To: to@example.com
|
431
|
+
Cc: cc@example.com
|
432
|
+
Message-ID: <4e3b693035377_9739800eb1b045531@dgmpro.local.mail>
|
433
|
+
Subject: Hiya!
|
434
|
+
Mime-Version: 1.0
|
435
|
+
Content-Type: text/plain;
|
436
|
+
charset=UTF-8
|
437
|
+
Content-Transfer-Encoding: 7bit
|
438
|
+
|
439
|
+
Papaya
|
440
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
441
|
+
|
442
|
+
Sent mail to to@example.com (25ms)
|
443
|
+
Date: Thu, 04 Aug 2011 23:53:20 -0400
|
444
|
+
From: from@example.com
|
445
|
+
Reply-To: reply_to@example.com
|
446
|
+
To: to@example.com
|
447
|
+
Cc: cc@example.com
|
448
|
+
Message-ID: <4e3b693035377_9739800eb1b045531@dgmpro.local.mail>
|
449
|
+
Subject: Hiya!
|
450
|
+
Mime-Version: 1.0
|
451
|
+
Content-Type: text/plain;
|
452
|
+
charset=UTF-8
|
453
|
+
Content-Transfer-Encoding: 7bit
|
454
|
+
|
455
|
+
Papaya
|
456
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
457
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
458
|
+
[1m[35mSQL (0.6ms)[0m 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 23:53:20 -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: <4e3b69304d92b_9739800eb1b045656@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", Fri, 05 Aug 2011 03:53:20 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", Fri, 05 Aug 2011 03:53:20 UTC +00:00]]
|
459
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00]]
|
460
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:53:20 -0400
|
461
|
+
From: from@example.com
|
462
|
+
Reply-To: reply_to@example.com
|
463
|
+
To: to@example.com
|
464
|
+
Cc: cc@example.com
|
465
|
+
Message-ID: <4e3b69304d92b_9739800eb1b045656@dgmpro.local.mail>
|
466
|
+
Subject: Hiya!
|
467
|
+
Mime-Version: 1.0
|
468
|
+
Content-Type: text/plain;
|
469
|
+
charset=UTF-8
|
470
|
+
Content-Transfer-Encoding: 7bit
|
471
|
+
|
472
|
+
Papaya', "updated_at" = '2011-08-05 03:53:20.328798', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "created_at" = '2011-08-05 03:53:20.328798', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
473
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
474
|
+
|
475
|
+
Sent mail to to@example.com (19ms)
|
476
|
+
Date: Thu, 04 Aug 2011 23:53:20 -0400
|
477
|
+
From: from@example.com
|
478
|
+
Reply-To: reply_to@example.com
|
479
|
+
To: to@example.com
|
480
|
+
Cc: cc@example.com
|
481
|
+
Message-ID: <4e3b69304d92b_9739800eb1b045656@dgmpro.local.mail>
|
482
|
+
Subject: Hiya!
|
483
|
+
Mime-Version: 1.0
|
484
|
+
Content-Type: text/plain;
|
485
|
+
charset=UTF-8
|
486
|
+
Content-Transfer-Encoding: 7bit
|
487
|
+
|
488
|
+
Papaya
|
489
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "emails"
|
490
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
491
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
492
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
493
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 23:53:20 -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: <4e3b693055596_9739800eb1b0457d@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", Fri, 05 Aug 2011 03:53:20 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", Fri, 05 Aug 2011 03:53:20 UTC +00:00]]
|
494
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:20 UTC +00:00]]
|
495
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "content" = 'Date: Thu, 04 Aug 2011 23:53:20 -0400
|
496
|
+
From: from@example.com
|
497
|
+
Reply-To: reply_to@example.com
|
498
|
+
To: to@example.com
|
499
|
+
Cc: cc@example.com
|
500
|
+
Message-ID: <4e3b693055596_9739800eb1b0457d@dgmpro.local.mail>
|
501
|
+
Subject: Hiya!
|
502
|
+
Mime-Version: 1.0
|
503
|
+
Content-Type: text/plain;
|
504
|
+
charset=UTF-8
|
505
|
+
Content-Transfer-Encoding: 7bit
|
506
|
+
|
507
|
+
Papaya', "updated_at" = '2011-08-05 03:53:20.360953', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "created_at" = '2011-08-05 03:53:20.360953', "from_address" = 'from@example.com' WHERE "emails"."id" = 1[0m
|
508
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
509
|
+
|
510
|
+
Sent mail to to@example.com (19ms)
|
511
|
+
Date: Thu, 04 Aug 2011 23:53:20 -0400
|
512
|
+
From: from@example.com
|
513
|
+
Reply-To: reply_to@example.com
|
514
|
+
To: to@example.com
|
515
|
+
Cc: cc@example.com
|
516
|
+
Message-ID: <4e3b693055596_9739800eb1b0457d@dgmpro.local.mail>
|
517
|
+
Subject: Hiya!
|
518
|
+
Mime-Version: 1.0
|
519
|
+
Content-Type: text/plain;
|
520
|
+
charset=UTF-8
|
521
|
+
Content-Transfer-Encoding: 7bit
|
522
|
+
|
523
|
+
Papaya
|
524
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
525
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
526
|
+
Migrating to CreateEmails (20110804223859)
|
527
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
528
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
529
|
+
Migrating to CreateEmails (20110804223859)
|
530
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
531
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
532
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
533
|
+
[1m[35mSQL (3.3ms)[0m 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 23:53: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: <4e3b694040b74_973c800eb1b02799e@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", Fri, 05 Aug 2011 03:53: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", Fri, 05 Aug 2011 03:53:36 UTC +00:00]]
|
534
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00]]
|
535
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 03:53:36.285747', "content" = 'Date: Thu, 04 Aug 2011 23:53:36 -0400
|
536
|
+
From: from@example.com
|
537
|
+
Reply-To: reply_to@example.com
|
538
|
+
To: to@example.com
|
539
|
+
Cc: cc@example.com
|
540
|
+
Message-ID: <4e3b694040b74_973c800eb1b02799e@dgmpro.local.mail>
|
541
|
+
Subject: Hiya!
|
542
|
+
Mime-Version: 1.0
|
543
|
+
Content-Type: text/plain;
|
544
|
+
charset=UTF-8
|
545
|
+
Content-Transfer-Encoding: 7bit
|
546
|
+
|
547
|
+
Papaya', "created_at" = '2011-08-05 03:53:36.285747', "reply_to_address" = 'reply_to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
548
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
549
|
+
|
550
|
+
Sent mail to to@example.com (41ms)
|
551
|
+
Date: Thu, 04 Aug 2011 23:53:36 -0400
|
552
|
+
From: from@example.com
|
553
|
+
Reply-To: reply_to@example.com
|
554
|
+
To: to@example.com
|
555
|
+
Cc: cc@example.com
|
556
|
+
Message-ID: <4e3b694040b74_973c800eb1b02799e@dgmpro.local.mail>
|
557
|
+
Subject: Hiya!
|
558
|
+
Mime-Version: 1.0
|
559
|
+
Content-Type: text/plain;
|
560
|
+
charset=UTF-8
|
561
|
+
Content-Transfer-Encoding: 7bit
|
562
|
+
|
563
|
+
Papaya
|
564
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
565
|
+
|
566
|
+
Sent mail to to@example.com (9ms)
|
567
|
+
Date: Thu, 04 Aug 2011 23:53:36 -0400
|
568
|
+
From: from@example.com
|
569
|
+
Reply-To: reply_to@example.com
|
570
|
+
To: to@example.com
|
571
|
+
Cc: cc@example.com
|
572
|
+
Message-ID: <4e3b694040b74_973c800eb1b02799e@dgmpro.local.mail>
|
573
|
+
Subject: Hiya!
|
574
|
+
Mime-Version: 1.0
|
575
|
+
Content-Type: text/plain;
|
576
|
+
charset=UTF-8
|
577
|
+
Content-Transfer-Encoding: 7bit
|
578
|
+
|
579
|
+
Papaya
|
580
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
581
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 03:53:36.326965', "sent_at" = '2011-08-05 03:53:36.326460' WHERE "emails"."id" = 1
|
582
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
583
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
584
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
585
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 23:53: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: <4e3b694053c39_973c800eb1b0280f9@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", Fri, 05 Aug 2011 03:53: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", Fri, 05 Aug 2011 03:53:36 UTC +00:00]]
|
586
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00]]
|
587
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 03:53:36.353974', "content" = 'Date: Thu, 04 Aug 2011 23:53:36 -0400
|
588
|
+
From: from@example.com
|
589
|
+
Reply-To: reply_to@example.com
|
590
|
+
To: to@example.com
|
591
|
+
Cc: cc@example.com
|
592
|
+
Message-ID: <4e3b694053c39_973c800eb1b0280f9@dgmpro.local.mail>
|
593
|
+
Subject: Hiya!
|
594
|
+
Mime-Version: 1.0
|
595
|
+
Content-Type: text/plain;
|
596
|
+
charset=UTF-8
|
597
|
+
Content-Transfer-Encoding: 7bit
|
598
|
+
|
599
|
+
Papaya', "created_at" = '2011-08-05 03:53:36.353974', "reply_to_address" = 'reply_to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1[0m
|
600
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
601
|
+
|
602
|
+
Sent mail to to@example.com (18ms)
|
603
|
+
Date: Thu, 04 Aug 2011 23:53:36 -0400
|
604
|
+
From: from@example.com
|
605
|
+
Reply-To: reply_to@example.com
|
606
|
+
To: to@example.com
|
607
|
+
Cc: cc@example.com
|
608
|
+
Message-ID: <4e3b694053c39_973c800eb1b0280f9@dgmpro.local.mail>
|
609
|
+
Subject: Hiya!
|
610
|
+
Mime-Version: 1.0
|
611
|
+
Content-Type: text/plain;
|
612
|
+
charset=UTF-8
|
613
|
+
Content-Transfer-Encoding: 7bit
|
614
|
+
|
615
|
+
Papaya
|
616
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
617
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
618
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
619
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
620
|
+
[1m[35mSQL (0.6ms)[0m 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 23:53: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: <4e3b69405b782_973c800eb1b028142@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", Fri, 05 Aug 2011 03:53: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", Fri, 05 Aug 2011 03:53:36 UTC +00:00]]
|
621
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:36 UTC +00:00]]
|
622
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "to_address" = 'to@example.com', "cc_address" = 'cc@example.com', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 03:53:36.386447', "content" = 'Date: Thu, 04 Aug 2011 23:53:36 -0400
|
623
|
+
From: from@example.com
|
624
|
+
Reply-To: reply_to@example.com
|
625
|
+
To: to@example.com
|
626
|
+
Cc: cc@example.com
|
627
|
+
Message-ID: <4e3b69405b782_973c800eb1b028142@dgmpro.local.mail>
|
628
|
+
Subject: Hiya!
|
629
|
+
Mime-Version: 1.0
|
630
|
+
Content-Type: text/plain;
|
631
|
+
charset=UTF-8
|
632
|
+
Content-Transfer-Encoding: 7bit
|
633
|
+
|
634
|
+
Papaya', "created_at" = '2011-08-05 03:53:36.386447', "reply_to_address" = 'reply_to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
635
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
636
|
+
|
637
|
+
Sent mail to to@example.com (20ms)
|
638
|
+
Date: Thu, 04 Aug 2011 23:53:36 -0400
|
639
|
+
From: from@example.com
|
640
|
+
Reply-To: reply_to@example.com
|
641
|
+
To: to@example.com
|
642
|
+
Cc: cc@example.com
|
643
|
+
Message-ID: <4e3b69405b782_973c800eb1b028142@dgmpro.local.mail>
|
644
|
+
Subject: Hiya!
|
645
|
+
Mime-Version: 1.0
|
646
|
+
Content-Type: text/plain;
|
647
|
+
charset=UTF-8
|
648
|
+
Content-Transfer-Encoding: 7bit
|
649
|
+
|
650
|
+
Papaya
|
651
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
652
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
653
|
+
Migrating to CreateEmails (20110804223859)
|
654
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
655
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
656
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
657
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 23:53:59 -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: <4e3b6957989dc_9743800eb1b025610@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", Fri, 05 Aug 2011 03:53:59 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", Fri, 05 Aug 2011 03:53:59 UTC +00:00]]
|
658
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00]]
|
659
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "content" = 'Date: Thu, 04 Aug 2011 23:53:59 -0400
|
660
|
+
From: from@example.com
|
661
|
+
Reply-To: reply_to@example.com
|
662
|
+
To: to@example.com
|
663
|
+
Cc: cc@example.com
|
664
|
+
Message-ID: <4e3b6957989dc_9743800eb1b025610@dgmpro.local.mail>
|
665
|
+
Subject: Hiya!
|
666
|
+
Mime-Version: 1.0
|
667
|
+
Content-Type: text/plain;
|
668
|
+
charset=UTF-8
|
669
|
+
Content-Transfer-Encoding: 7bit
|
670
|
+
|
671
|
+
Papaya', "created_at" = '2011-08-05 03:53:59.691259', "reply_to_address" = 'reply_to@example.com', "updated_at" = '2011-08-05 03:53:59.691259', "from_address" = 'from@example.com', "to_address" = 'to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com', "bcc_address" = 'bcc@example.com' WHERE "emails"."id" = 1[0m
|
672
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
673
|
+
|
674
|
+
Sent mail to to@example.com (88ms)
|
675
|
+
Date: Thu, 04 Aug 2011 23:53:59 -0400
|
676
|
+
From: from@example.com
|
677
|
+
Reply-To: reply_to@example.com
|
678
|
+
To: to@example.com
|
679
|
+
Cc: cc@example.com
|
680
|
+
Message-ID: <4e3b6957989dc_9743800eb1b025610@dgmpro.local.mail>
|
681
|
+
Subject: Hiya!
|
682
|
+
Mime-Version: 1.0
|
683
|
+
Content-Type: text/plain;
|
684
|
+
charset=UTF-8
|
685
|
+
Content-Transfer-Encoding: 7bit
|
686
|
+
|
687
|
+
Papaya
|
688
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
689
|
+
|
690
|
+
Sent mail to to@example.com (12ms)
|
691
|
+
Date: Thu, 04 Aug 2011 23:53:59 -0400
|
692
|
+
From: from@example.com
|
693
|
+
Reply-To: reply_to@example.com
|
694
|
+
To: to@example.com
|
695
|
+
Cc: cc@example.com
|
696
|
+
Message-ID: <4e3b6957989dc_9743800eb1b025610@dgmpro.local.mail>
|
697
|
+
Subject: Hiya!
|
698
|
+
Mime-Version: 1.0
|
699
|
+
Content-Type: text/plain;
|
700
|
+
charset=UTF-8
|
701
|
+
Content-Transfer-Encoding: 7bit
|
702
|
+
|
703
|
+
Papaya
|
704
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
705
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "updated_at" = '2011-08-05 03:53:59.748214', "sent_at" = '2011-08-05 03:53:59.747659' WHERE "emails"."id" = 1[0m
|
706
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
707
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
708
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
709
|
+
[1m[35mSQL (0.5ms)[0m 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 23:53:59 -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: <4e3b6957ba4f1_9743800eb1b025737@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", Fri, 05 Aug 2011 03:53:59 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", Fri, 05 Aug 2011 03:53:59 UTC +00:00]]
|
710
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00]]
|
711
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "content" = 'Date: Thu, 04 Aug 2011 23:53:59 -0400
|
712
|
+
From: from@example.com
|
713
|
+
Reply-To: reply_to@example.com
|
714
|
+
To: to@example.com
|
715
|
+
Cc: cc@example.com
|
716
|
+
Message-ID: <4e3b6957ba4f1_9743800eb1b025737@dgmpro.local.mail>
|
717
|
+
Subject: Hiya!
|
718
|
+
Mime-Version: 1.0
|
719
|
+
Content-Type: text/plain;
|
720
|
+
charset=UTF-8
|
721
|
+
Content-Transfer-Encoding: 7bit
|
722
|
+
|
723
|
+
Papaya', "created_at" = '2011-08-05 03:53:59.773770', "reply_to_address" = 'reply_to@example.com', "updated_at" = '2011-08-05 03:53:59.773770', "from_address" = 'from@example.com', "to_address" = 'to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com', "bcc_address" = 'bcc@example.com' WHERE "emails"."id" = 1
|
724
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
725
|
+
|
726
|
+
Sent mail to to@example.com (18ms)
|
727
|
+
Date: Thu, 04 Aug 2011 23:53:59 -0400
|
728
|
+
From: from@example.com
|
729
|
+
Reply-To: reply_to@example.com
|
730
|
+
To: to@example.com
|
731
|
+
Cc: cc@example.com
|
732
|
+
Message-ID: <4e3b6957ba4f1_9743800eb1b025737@dgmpro.local.mail>
|
733
|
+
Subject: Hiya!
|
734
|
+
Mime-Version: 1.0
|
735
|
+
Content-Type: text/plain;
|
736
|
+
charset=UTF-8
|
737
|
+
Content-Transfer-Encoding: 7bit
|
738
|
+
|
739
|
+
Papaya
|
740
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "emails"
|
741
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
742
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
743
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
744
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Thu, 04 Aug 2011 23:53:59 -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: <4e3b6957c1c65_9743800eb1b025872@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", Fri, 05 Aug 2011 03:53:59 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", Fri, 05 Aug 2011 03:53:59 UTC +00:00]]
|
745
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 03:53:59 UTC +00:00]]
|
746
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "content" = 'Date: Thu, 04 Aug 2011 23:53:59 -0400
|
747
|
+
From: from@example.com
|
748
|
+
Reply-To: reply_to@example.com
|
749
|
+
To: to@example.com
|
750
|
+
Cc: cc@example.com
|
751
|
+
Message-ID: <4e3b6957c1c65_9743800eb1b025872@dgmpro.local.mail>
|
752
|
+
Subject: Hiya!
|
753
|
+
Mime-Version: 1.0
|
754
|
+
Content-Type: text/plain;
|
755
|
+
charset=UTF-8
|
756
|
+
Content-Transfer-Encoding: 7bit
|
757
|
+
|
758
|
+
Papaya', "created_at" = '2011-08-05 03:53:59.804250', "reply_to_address" = 'reply_to@example.com', "updated_at" = '2011-08-05 03:53:59.804250', "from_address" = 'from@example.com', "to_address" = 'to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com', "bcc_address" = 'bcc@example.com' WHERE "emails"."id" = 1[0m
|
759
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
760
|
+
|
761
|
+
Sent mail to to@example.com (18ms)
|
762
|
+
Date: Thu, 04 Aug 2011 23:53:59 -0400
|
763
|
+
From: from@example.com
|
764
|
+
Reply-To: reply_to@example.com
|
765
|
+
To: to@example.com
|
766
|
+
Cc: cc@example.com
|
767
|
+
Message-ID: <4e3b6957c1c65_9743800eb1b025872@dgmpro.local.mail>
|
768
|
+
Subject: Hiya!
|
769
|
+
Mime-Version: 1.0
|
770
|
+
Content-Type: text/plain;
|
771
|
+
charset=UTF-8
|
772
|
+
Content-Transfer-Encoding: 7bit
|
773
|
+
|
774
|
+
Papaya
|
775
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
776
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
777
|
+
Migrating to CreateEmails (20110804223859)
|
778
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
779
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
780
|
+
Migrating to CreateEmails (20110804223859)
|
781
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
782
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
783
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
784
|
+
[1m[35mSQL (3.2ms)[0m 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: Fri, 05 Aug 2011 00:01: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: <4e3b6b206354a_9796800eb1b0457e5@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", Fri, 05 Aug 2011 04:01: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", Fri, 05 Aug 2011 04:01:36 UTC +00:00]]
|
785
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:01:36 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:01:36 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:01:36 UTC +00:00]]
|
786
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "to_address" = 'to@example.com', "subject" = 'Hiya!', "bcc_address" = 'bcc@example.com', "cc_address" = 'cc@example.com', "content" = 'Date: Fri, 05 Aug 2011 00:01:36 -0400
|
787
|
+
From: from@example.com
|
788
|
+
Reply-To: reply_to@example.com
|
789
|
+
To: to@example.com
|
790
|
+
Cc: cc@example.com
|
791
|
+
Message-ID: <4e3b6b206354a_9796800eb1b0457e5@dgmpro.local.mail>
|
792
|
+
Subject: Hiya!
|
793
|
+
Mime-Version: 1.0
|
794
|
+
Content-Type: text/plain;
|
795
|
+
charset=UTF-8
|
796
|
+
Content-Transfer-Encoding: 7bit
|
797
|
+
|
798
|
+
Papaya', "reply_to_address" = 'reply_to@example.com', "updated_at" = '2011-08-05 04:01:36.426711', "from_address" = 'from@example.com', "created_at" = '2011-08-05 04:01:36.426711' WHERE "emails"."id" = 1
|
799
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
800
|
+
|
801
|
+
Sent mail to to@example.com (40ms)
|
802
|
+
Date: Fri, 05 Aug 2011 00:01:36 -0400
|
803
|
+
From: from@example.com
|
804
|
+
Reply-To: reply_to@example.com
|
805
|
+
To: to@example.com
|
806
|
+
Cc: cc@example.com
|
807
|
+
Message-ID: <4e3b6b206354a_9796800eb1b0457e5@dgmpro.local.mail>
|
808
|
+
Subject: Hiya!
|
809
|
+
Mime-Version: 1.0
|
810
|
+
Content-Type: text/plain;
|
811
|
+
charset=UTF-8
|
812
|
+
Content-Transfer-Encoding: 7bit
|
813
|
+
|
814
|
+
Papaya
|
815
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
816
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "delayed_jobs" SET locked_at = '2011-08-05 04:01:36.443813', locked_by = 'host:dgmpro.local pid:38806' WHERE (id = 1 and (locked_at is null or locked_at < '2011-08-05 00:01:36.443813') and (run_at <= '2011-08-05 04:01:36.443813'))[0m
|
817
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" WHERE "emails"."id" = ? ORDER BY created_at DESC LIMIT 1 [["id", 1]]
|
818
|
+
|
819
|
+
Sent mail to to@example.com (8ms)
|
820
|
+
Date: Fri, 05 Aug 2011 00:01:36 -0400
|
821
|
+
From: from@example.com
|
822
|
+
Reply-To: reply_to@example.com
|
823
|
+
To: to@example.com
|
824
|
+
Cc: cc@example.com
|
825
|
+
Message-ID: <4e3b6b206354a_9796800eb1b0457e5@dgmpro.local.mail>
|
826
|
+
Subject: Hiya!
|
827
|
+
Mime-Version: 1.0
|
828
|
+
Content-Type: text/plain;
|
829
|
+
charset=UTF-8
|
830
|
+
Content-Transfer-Encoding: 7bit
|
831
|
+
|
832
|
+
Papaya
|
833
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
834
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "sent_at" = '2011-08-05 04:01:36.469869', "updated_at" = '2011-08-05 04:01:36.470363' WHERE "emails"."id" = 1
|
835
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
836
|
+
[DelayedMailhopper::SendJob] success for email_id 1, delayed_job_id 1
|
837
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
838
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ?[0m [["id", 1]]
|
839
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
840
|
+
[1m[36mSQL (0.1ms)[0m [1mUPDATE "delayed_jobs" SET locked_by = null, locked_at = null WHERE (locked_by = 'host:dgmpro.local pid:38806')[0m
|
841
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
842
|
+
Migrating to CreateEmails (20110804223859)
|
843
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
844
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
845
|
+
Migrating to CreateEmails (20110804223859)
|
846
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
847
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
849
|
+
[1m[35mSQL (3.2ms)[0m 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: Fri, 05 Aug 2011 00:03:59 -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: <4e3b6baf7cbc6_97af800eb1b06203d@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", Fri, 05 Aug 2011 04:03:59 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", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
850
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
851
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 04:03:59.530803', "content" = 'Date: Fri, 05 Aug 2011 00:03:59 -0400
|
852
|
+
From: from@example.com
|
853
|
+
Reply-To: reply_to@example.com
|
854
|
+
To: to@example.com
|
855
|
+
Cc: cc@example.com
|
856
|
+
Message-ID: <4e3b6baf7cbc6_97af800eb1b06203d@dgmpro.local.mail>
|
857
|
+
Subject: Hiya!
|
858
|
+
Mime-Version: 1.0
|
859
|
+
Content-Type: text/plain;
|
860
|
+
charset=UTF-8
|
861
|
+
Content-Transfer-Encoding: 7bit
|
862
|
+
|
863
|
+
Papaya', "cc_address" = 'cc@example.com', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "created_at" = '2011-08-05 04:03:59.530803', "to_address" = 'to@example.com' WHERE "emails"."id" = 1
|
864
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
865
|
+
|
866
|
+
Sent mail to to@example.com (42ms)
|
867
|
+
Date: Fri, 05 Aug 2011 00:03:59 -0400
|
868
|
+
From: from@example.com
|
869
|
+
Reply-To: reply_to@example.com
|
870
|
+
To: to@example.com
|
871
|
+
Cc: cc@example.com
|
872
|
+
Message-ID: <4e3b6baf7cbc6_97af800eb1b06203d@dgmpro.local.mail>
|
873
|
+
Subject: Hiya!
|
874
|
+
Mime-Version: 1.0
|
875
|
+
Content-Type: text/plain;
|
876
|
+
charset=UTF-8
|
877
|
+
Content-Transfer-Encoding: 7bit
|
878
|
+
|
879
|
+
Papaya
|
880
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
881
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" LIMIT 1[0m
|
882
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" WHERE "emails"."id" = ? ORDER BY created_at DESC LIMIT 1 [["id", 1]]
|
883
|
+
|
884
|
+
Sent mail to to@example.com (8ms)
|
885
|
+
Date: Fri, 05 Aug 2011 00:03:59 -0400
|
886
|
+
From: from@example.com
|
887
|
+
Reply-To: reply_to@example.com
|
888
|
+
To: to@example.com
|
889
|
+
Cc: cc@example.com
|
890
|
+
Message-ID: <4e3b6baf7cbc6_97af800eb1b06203d@dgmpro.local.mail>
|
891
|
+
Subject: Hiya!
|
892
|
+
Mime-Version: 1.0
|
893
|
+
Content-Type: text/plain;
|
894
|
+
charset=UTF-8
|
895
|
+
Content-Transfer-Encoding: 7bit
|
896
|
+
|
897
|
+
Papaya
|
898
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
899
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 04:03:59.574837', "sent_at" = '2011-08-05 04:03:59.574373' WHERE "emails"."id" = 1
|
900
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
901
|
+
[DelayedMailhopper::SendJob] success for email_id 1, delayed_job_id 1
|
902
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
903
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
904
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Fri, 05 Aug 2011 00:03:59 -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: <4e3b6baf9359a_97af800eb1b062133@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", Fri, 05 Aug 2011 04:03:59 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", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
905
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
906
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 04:03:59.614817', "content" = 'Date: Fri, 05 Aug 2011 00:03:59 -0400
|
907
|
+
From: from@example.com
|
908
|
+
Reply-To: reply_to@example.com
|
909
|
+
To: to@example.com
|
910
|
+
Cc: cc@example.com
|
911
|
+
Message-ID: <4e3b6baf9359a_97af800eb1b062133@dgmpro.local.mail>
|
912
|
+
Subject: Hiya!
|
913
|
+
Mime-Version: 1.0
|
914
|
+
Content-Type: text/plain;
|
915
|
+
charset=UTF-8
|
916
|
+
Content-Transfer-Encoding: 7bit
|
917
|
+
|
918
|
+
Papaya', "cc_address" = 'cc@example.com', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "created_at" = '2011-08-05 04:03:59.614817', "to_address" = 'to@example.com' WHERE "emails"."id" = 1[0m
|
919
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
920
|
+
|
921
|
+
Sent mail to to@example.com (19ms)
|
922
|
+
Date: Fri, 05 Aug 2011 00:03:59 -0400
|
923
|
+
From: from@example.com
|
924
|
+
Reply-To: reply_to@example.com
|
925
|
+
To: to@example.com
|
926
|
+
Cc: cc@example.com
|
927
|
+
Message-ID: <4e3b6baf9359a_97af800eb1b062133@dgmpro.local.mail>
|
928
|
+
Subject: Hiya!
|
929
|
+
Mime-Version: 1.0
|
930
|
+
Content-Type: text/plain;
|
931
|
+
charset=UTF-8
|
932
|
+
Content-Transfer-Encoding: 7bit
|
933
|
+
|
934
|
+
Papaya
|
935
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
936
|
+
|
937
|
+
Sent mail to to@example.com (7ms)
|
938
|
+
Date: Fri, 05 Aug 2011 00:03:59 -0400
|
939
|
+
From: from@example.com
|
940
|
+
Reply-To: reply_to@example.com
|
941
|
+
To: to@example.com
|
942
|
+
Cc: cc@example.com
|
943
|
+
Message-ID: <4e3b6baf9359a_97af800eb1b062133@dgmpro.local.mail>
|
944
|
+
Subject: Hiya!
|
945
|
+
Mime-Version: 1.0
|
946
|
+
Content-Type: text/plain;
|
947
|
+
charset=UTF-8
|
948
|
+
Content-Transfer-Encoding: 7bit
|
949
|
+
|
950
|
+
Papaya
|
951
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
952
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "updated_at" = '2011-08-05 04:03:59.640938', "sent_at" = '2011-08-05 04:03:59.640465' WHERE "emails"."id" = 1[0m
|
953
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
954
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
955
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
956
|
+
[1m[35mSQL (0.6ms)[0m 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: Fri, 05 Aug 2011 00:03:59 -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: <4e3b6bafa0472_97af800eb1b0622c0@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", Fri, 05 Aug 2011 04:03:59 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", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
957
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
958
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 04:03:59.667572', "content" = 'Date: Fri, 05 Aug 2011 00:03:59 -0400
|
959
|
+
From: from@example.com
|
960
|
+
Reply-To: reply_to@example.com
|
961
|
+
To: to@example.com
|
962
|
+
Cc: cc@example.com
|
963
|
+
Message-ID: <4e3b6bafa0472_97af800eb1b0622c0@dgmpro.local.mail>
|
964
|
+
Subject: Hiya!
|
965
|
+
Mime-Version: 1.0
|
966
|
+
Content-Type: text/plain;
|
967
|
+
charset=UTF-8
|
968
|
+
Content-Transfer-Encoding: 7bit
|
969
|
+
|
970
|
+
Papaya', "cc_address" = 'cc@example.com', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "created_at" = '2011-08-05 04:03:59.667572', "to_address" = 'to@example.com' WHERE "emails"."id" = 1
|
971
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
972
|
+
|
973
|
+
Sent mail to to@example.com (18ms)
|
974
|
+
Date: Fri, 05 Aug 2011 00:03:59 -0400
|
975
|
+
From: from@example.com
|
976
|
+
Reply-To: reply_to@example.com
|
977
|
+
To: to@example.com
|
978
|
+
Cc: cc@example.com
|
979
|
+
Message-ID: <4e3b6bafa0472_97af800eb1b0622c0@dgmpro.local.mail>
|
980
|
+
Subject: Hiya!
|
981
|
+
Mime-Version: 1.0
|
982
|
+
Content-Type: text/plain;
|
983
|
+
charset=UTF-8
|
984
|
+
Content-Transfer-Encoding: 7bit
|
985
|
+
|
986
|
+
Papaya
|
987
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "emails"
|
988
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
989
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
990
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
991
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Fri, 05 Aug 2011 00:03:59 -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: <4e3b6bafa827c_97af800eb1b0623c9@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", Fri, 05 Aug 2011 04:03:59 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", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
992
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:03:59 UTC +00:00]]
|
993
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "emails" SET "bcc_address" = 'bcc@example.com', "updated_at" = '2011-08-05 04:03:59.700302', "content" = 'Date: Fri, 05 Aug 2011 00:03:59 -0400
|
994
|
+
From: from@example.com
|
995
|
+
Reply-To: reply_to@example.com
|
996
|
+
To: to@example.com
|
997
|
+
Cc: cc@example.com
|
998
|
+
Message-ID: <4e3b6bafa827c_97af800eb1b0623c9@dgmpro.local.mail>
|
999
|
+
Subject: Hiya!
|
1000
|
+
Mime-Version: 1.0
|
1001
|
+
Content-Type: text/plain;
|
1002
|
+
charset=UTF-8
|
1003
|
+
Content-Transfer-Encoding: 7bit
|
1004
|
+
|
1005
|
+
Papaya', "cc_address" = 'cc@example.com', "from_address" = 'from@example.com', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "created_at" = '2011-08-05 04:03:59.700302', "to_address" = 'to@example.com' WHERE "emails"."id" = 1[0m
|
1006
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1007
|
+
|
1008
|
+
Sent mail to to@example.com (76ms)
|
1009
|
+
Date: Fri, 05 Aug 2011 00:03:59 -0400
|
1010
|
+
From: from@example.com
|
1011
|
+
Reply-To: reply_to@example.com
|
1012
|
+
To: to@example.com
|
1013
|
+
Cc: cc@example.com
|
1014
|
+
Message-ID: <4e3b6bafa827c_97af800eb1b0623c9@dgmpro.local.mail>
|
1015
|
+
Subject: Hiya!
|
1016
|
+
Mime-Version: 1.0
|
1017
|
+
Content-Type: text/plain;
|
1018
|
+
charset=UTF-8
|
1019
|
+
Content-Transfer-Encoding: 7bit
|
1020
|
+
|
1021
|
+
Papaya
|
1022
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
1023
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1024
|
+
Migrating to CreateEmails (20110804223859)
|
1025
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
1026
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
1027
|
+
Migrating to CreateEmails (20110804223859)
|
1028
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
1029
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
1030
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1031
|
+
[1m[35mSQL (3.1ms)[0m 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: Fri, 05 Aug 2011 00:04:37 -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: <4e3b6bd573c20_97b9800eb1b07343@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", Fri, 05 Aug 2011 04:04:37 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", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1032
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1033
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "created_at" = '2011-08-05 04:04:37.494123', "to_address" = 'to@example.com', "from_address" = 'from@example.com', "updated_at" = '2011-08-05 04:04:37.494123', "bcc_address" = 'bcc@example.com', "content" = 'Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1034
|
+
From: from@example.com
|
1035
|
+
Reply-To: reply_to@example.com
|
1036
|
+
To: to@example.com
|
1037
|
+
Cc: cc@example.com
|
1038
|
+
Message-ID: <4e3b6bd573c20_97b9800eb1b07343@dgmpro.local.mail>
|
1039
|
+
Subject: Hiya!
|
1040
|
+
Mime-Version: 1.0
|
1041
|
+
Content-Type: text/plain;
|
1042
|
+
charset=UTF-8
|
1043
|
+
Content-Transfer-Encoding: 7bit
|
1044
|
+
|
1045
|
+
Papaya', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com' WHERE "emails"."id" = 1
|
1046
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1047
|
+
|
1048
|
+
Sent mail to to@example.com (40ms)
|
1049
|
+
Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1050
|
+
From: from@example.com
|
1051
|
+
Reply-To: reply_to@example.com
|
1052
|
+
To: to@example.com
|
1053
|
+
Cc: cc@example.com
|
1054
|
+
Message-ID: <4e3b6bd573c20_97b9800eb1b07343@dgmpro.local.mail>
|
1055
|
+
Subject: Hiya!
|
1056
|
+
Mime-Version: 1.0
|
1057
|
+
Content-Type: text/plain;
|
1058
|
+
charset=UTF-8
|
1059
|
+
Content-Transfer-Encoding: 7bit
|
1060
|
+
|
1061
|
+
Papaya
|
1062
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" LIMIT 1
|
1063
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" WHERE "emails"."id" = ? ORDER BY created_at DESC LIMIT 1[0m [["id", 1]]
|
1064
|
+
|
1065
|
+
Sent mail to to@example.com (8ms)
|
1066
|
+
Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1067
|
+
From: from@example.com
|
1068
|
+
Reply-To: reply_to@example.com
|
1069
|
+
To: to@example.com
|
1070
|
+
Cc: cc@example.com
|
1071
|
+
Message-ID: <4e3b6bd573c20_97b9800eb1b07343@dgmpro.local.mail>
|
1072
|
+
Subject: Hiya!
|
1073
|
+
Mime-Version: 1.0
|
1074
|
+
Content-Type: text/plain;
|
1075
|
+
charset=UTF-8
|
1076
|
+
Content-Transfer-Encoding: 7bit
|
1077
|
+
|
1078
|
+
Papaya
|
1079
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1080
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "sent_at" = '2011-08-05 04:04:37.533742', "updated_at" = '2011-08-05 04:04:37.534216' WHERE "emails"."id" = 1[0m
|
1081
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1082
|
+
[DelayedMailhopper::SendJob] success for email_id 1, delayed_job_id 1
|
1083
|
+
[1m[36mDelayedMailhopper::Email Load (0.1ms)[0m [1mSELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1[0m
|
1084
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
1085
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1086
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1087
|
+
[1m[35mSQL (0.6ms)[0m 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: Fri, 05 Aug 2011 00:04:37 -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: <4e3b6bd58832a_97b9800eb1b074a9@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", Fri, 05 Aug 2011 04:04:37 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", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1088
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1089
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "created_at" = '2011-08-05 04:04:37.569407', "to_address" = 'to@example.com', "from_address" = 'from@example.com', "updated_at" = '2011-08-05 04:04:37.569407', "bcc_address" = 'bcc@example.com', "content" = 'Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1090
|
+
From: from@example.com
|
1091
|
+
Reply-To: reply_to@example.com
|
1092
|
+
To: to@example.com
|
1093
|
+
Cc: cc@example.com
|
1094
|
+
Message-ID: <4e3b6bd58832a_97b9800eb1b074a9@dgmpro.local.mail>
|
1095
|
+
Subject: Hiya!
|
1096
|
+
Mime-Version: 1.0
|
1097
|
+
Content-Type: text/plain;
|
1098
|
+
charset=UTF-8
|
1099
|
+
Content-Transfer-Encoding: 7bit
|
1100
|
+
|
1101
|
+
Papaya', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com' WHERE "emails"."id" = 1
|
1102
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1103
|
+
|
1104
|
+
Sent mail to to@example.com (19ms)
|
1105
|
+
Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1106
|
+
From: from@example.com
|
1107
|
+
Reply-To: reply_to@example.com
|
1108
|
+
To: to@example.com
|
1109
|
+
Cc: cc@example.com
|
1110
|
+
Message-ID: <4e3b6bd58832a_97b9800eb1b074a9@dgmpro.local.mail>
|
1111
|
+
Subject: Hiya!
|
1112
|
+
Mime-Version: 1.0
|
1113
|
+
Content-Type: text/plain;
|
1114
|
+
charset=UTF-8
|
1115
|
+
Content-Transfer-Encoding: 7bit
|
1116
|
+
|
1117
|
+
Papaya
|
1118
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
1119
|
+
|
1120
|
+
Sent mail to to@example.com (7ms)
|
1121
|
+
Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1122
|
+
From: from@example.com
|
1123
|
+
Reply-To: reply_to@example.com
|
1124
|
+
To: to@example.com
|
1125
|
+
Cc: cc@example.com
|
1126
|
+
Message-ID: <4e3b6bd58832a_97b9800eb1b074a9@dgmpro.local.mail>
|
1127
|
+
Subject: Hiya!
|
1128
|
+
Mime-Version: 1.0
|
1129
|
+
Content-Type: text/plain;
|
1130
|
+
charset=UTF-8
|
1131
|
+
Content-Transfer-Encoding: 7bit
|
1132
|
+
|
1133
|
+
Papaya
|
1134
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1135
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "sent_at" = '2011-08-05 04:04:37.595366', "updated_at" = '2011-08-05 04:04:37.595807' WHERE "emails"."id" = 1
|
1136
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1137
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1138
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1139
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Fri, 05 Aug 2011 00:04:37 -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: <4e3b6bd595a06_97b9800eb1b075b1@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", Fri, 05 Aug 2011 04:04:37 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", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1140
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1141
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "created_at" = '2011-08-05 04:04:37.624572', "to_address" = 'to@example.com', "from_address" = 'from@example.com', "updated_at" = '2011-08-05 04:04:37.624572', "bcc_address" = 'bcc@example.com', "content" = 'Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1142
|
+
From: from@example.com
|
1143
|
+
Reply-To: reply_to@example.com
|
1144
|
+
To: to@example.com
|
1145
|
+
Cc: cc@example.com
|
1146
|
+
Message-ID: <4e3b6bd595a06_97b9800eb1b075b1@dgmpro.local.mail>
|
1147
|
+
Subject: Hiya!
|
1148
|
+
Mime-Version: 1.0
|
1149
|
+
Content-Type: text/plain;
|
1150
|
+
charset=UTF-8
|
1151
|
+
Content-Transfer-Encoding: 7bit
|
1152
|
+
|
1153
|
+
Papaya', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com' WHERE "emails"."id" = 1[0m
|
1154
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1155
|
+
|
1156
|
+
Sent mail to to@example.com (19ms)
|
1157
|
+
Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1158
|
+
From: from@example.com
|
1159
|
+
Reply-To: reply_to@example.com
|
1160
|
+
To: to@example.com
|
1161
|
+
Cc: cc@example.com
|
1162
|
+
Message-ID: <4e3b6bd595a06_97b9800eb1b075b1@dgmpro.local.mail>
|
1163
|
+
Subject: Hiya!
|
1164
|
+
Mime-Version: 1.0
|
1165
|
+
Content-Type: text/plain;
|
1166
|
+
charset=UTF-8
|
1167
|
+
Content-Transfer-Encoding: 7bit
|
1168
|
+
|
1169
|
+
Papaya
|
1170
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
1171
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
1172
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1173
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1174
|
+
[1m[35mSQL (0.6ms)[0m 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: Fri, 05 Aug 2011 00:04:37 -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: <4e3b6bd59e126_97b9800eb1b0767c@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", Fri, 05 Aug 2011 04:04:37 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", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1175
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:04:37 UTC +00:00]]
|
1176
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "created_at" = '2011-08-05 04:04:37.658826', "to_address" = 'to@example.com', "from_address" = 'from@example.com', "updated_at" = '2011-08-05 04:04:37.658826', "bcc_address" = 'bcc@example.com', "content" = 'Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1177
|
+
From: from@example.com
|
1178
|
+
Reply-To: reply_to@example.com
|
1179
|
+
To: to@example.com
|
1180
|
+
Cc: cc@example.com
|
1181
|
+
Message-ID: <4e3b6bd59e126_97b9800eb1b0767c@dgmpro.local.mail>
|
1182
|
+
Subject: Hiya!
|
1183
|
+
Mime-Version: 1.0
|
1184
|
+
Content-Type: text/plain;
|
1185
|
+
charset=UTF-8
|
1186
|
+
Content-Transfer-Encoding: 7bit
|
1187
|
+
|
1188
|
+
Papaya', "reply_to_address" = 'reply_to@example.com', "subject" = 'Hiya!', "cc_address" = 'cc@example.com' WHERE "emails"."id" = 1
|
1189
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1190
|
+
|
1191
|
+
Sent mail to to@example.com (72ms)
|
1192
|
+
Date: Fri, 05 Aug 2011 00:04:37 -0400
|
1193
|
+
From: from@example.com
|
1194
|
+
Reply-To: reply_to@example.com
|
1195
|
+
To: to@example.com
|
1196
|
+
Cc: cc@example.com
|
1197
|
+
Message-ID: <4e3b6bd59e126_97b9800eb1b0767c@dgmpro.local.mail>
|
1198
|
+
Subject: Hiya!
|
1199
|
+
Mime-Version: 1.0
|
1200
|
+
Content-Type: text/plain;
|
1201
|
+
charset=UTF-8
|
1202
|
+
Content-Transfer-Encoding: 7bit
|
1203
|
+
|
1204
|
+
Papaya
|
1205
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
1206
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1207
|
+
Migrating to CreateEmails (20110804223859)
|
1208
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
1209
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
1210
|
+
Migrating to CreateEmails (20110804223859)
|
1211
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
1212
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
1213
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1214
|
+
[1m[35mSQL (3.3ms)[0m 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: Fri, 05 Aug 2011 00:06:42 -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: <4e3b6c526e351_97cd800eb1b0186b4@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", Fri, 05 Aug 2011 04:06:42 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", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1215
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1216
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:06:42.471573', "created_at" = '2011-08-05 04:06:42.471573', "content" = 'Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1217
|
+
From: from@example.com
|
1218
|
+
Reply-To: reply_to@example.com
|
1219
|
+
To: to@example.com
|
1220
|
+
Cc: cc@example.com
|
1221
|
+
Message-ID: <4e3b6c526e351_97cd800eb1b0186b4@dgmpro.local.mail>
|
1222
|
+
Subject: Hiya!
|
1223
|
+
Mime-Version: 1.0
|
1224
|
+
Content-Type: text/plain;
|
1225
|
+
charset=UTF-8
|
1226
|
+
Content-Transfer-Encoding: 7bit
|
1227
|
+
|
1228
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
1229
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1230
|
+
|
1231
|
+
Sent mail to to@example.com (41ms)
|
1232
|
+
Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1233
|
+
From: from@example.com
|
1234
|
+
Reply-To: reply_to@example.com
|
1235
|
+
To: to@example.com
|
1236
|
+
Cc: cc@example.com
|
1237
|
+
Message-ID: <4e3b6c526e351_97cd800eb1b0186b4@dgmpro.local.mail>
|
1238
|
+
Subject: Hiya!
|
1239
|
+
Mime-Version: 1.0
|
1240
|
+
Content-Type: text/plain;
|
1241
|
+
charset=UTF-8
|
1242
|
+
Content-Transfer-Encoding: 7bit
|
1243
|
+
|
1244
|
+
Papaya
|
1245
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
1246
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" LIMIT 1[0m
|
1247
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" WHERE "emails"."id" = ? ORDER BY created_at DESC LIMIT 1 [["id", 1]]
|
1248
|
+
|
1249
|
+
Sent mail to to@example.com (8ms)
|
1250
|
+
Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1251
|
+
From: from@example.com
|
1252
|
+
Reply-To: reply_to@example.com
|
1253
|
+
To: to@example.com
|
1254
|
+
Cc: cc@example.com
|
1255
|
+
Message-ID: <4e3b6c526e351_97cd800eb1b0186b4@dgmpro.local.mail>
|
1256
|
+
Subject: Hiya!
|
1257
|
+
Mime-Version: 1.0
|
1258
|
+
Content-Type: text/plain;
|
1259
|
+
charset=UTF-8
|
1260
|
+
Content-Transfer-Encoding: 7bit
|
1261
|
+
|
1262
|
+
Papaya
|
1263
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1264
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 04:06:42.513845', "sent_at" = '2011-08-05 04:06:42.513363' WHERE "emails"."id" = 1
|
1265
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1266
|
+
[DelayedMailhopper::SendJob] success for email_id 1, delayed_job_id 1
|
1267
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" WHERE "emails"."id" = ? LIMIT 1 [["id", 1]]
|
1268
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1269
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1270
|
+
[1m[35mSQL (0.6ms)[0m 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: Fri, 05 Aug 2011 00:06:42 -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: <4e3b6c52819af_97cd800eb1b0187e@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", Fri, 05 Aug 2011 04:06:42 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", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1271
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1272
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:06:42.542632', "created_at" = '2011-08-05 04:06:42.542632', "content" = 'Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1273
|
+
From: from@example.com
|
1274
|
+
Reply-To: reply_to@example.com
|
1275
|
+
To: to@example.com
|
1276
|
+
Cc: cc@example.com
|
1277
|
+
Message-ID: <4e3b6c52819af_97cd800eb1b0187e@dgmpro.local.mail>
|
1278
|
+
Subject: Hiya!
|
1279
|
+
Mime-Version: 1.0
|
1280
|
+
Content-Type: text/plain;
|
1281
|
+
charset=UTF-8
|
1282
|
+
Content-Transfer-Encoding: 7bit
|
1283
|
+
|
1284
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
1285
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1286
|
+
|
1287
|
+
Sent mail to to@example.com (20ms)
|
1288
|
+
Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1289
|
+
From: from@example.com
|
1290
|
+
Reply-To: reply_to@example.com
|
1291
|
+
To: to@example.com
|
1292
|
+
Cc: cc@example.com
|
1293
|
+
Message-ID: <4e3b6c52819af_97cd800eb1b0187e@dgmpro.local.mail>
|
1294
|
+
Subject: Hiya!
|
1295
|
+
Mime-Version: 1.0
|
1296
|
+
Content-Type: text/plain;
|
1297
|
+
charset=UTF-8
|
1298
|
+
Content-Transfer-Encoding: 7bit
|
1299
|
+
|
1300
|
+
Papaya
|
1301
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
1302
|
+
|
1303
|
+
Sent mail to to@example.com (7ms)
|
1304
|
+
Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1305
|
+
From: from@example.com
|
1306
|
+
Reply-To: reply_to@example.com
|
1307
|
+
To: to@example.com
|
1308
|
+
Cc: cc@example.com
|
1309
|
+
Message-ID: <4e3b6c52819af_97cd800eb1b0187e@dgmpro.local.mail>
|
1310
|
+
Subject: Hiya!
|
1311
|
+
Mime-Version: 1.0
|
1312
|
+
Content-Type: text/plain;
|
1313
|
+
charset=UTF-8
|
1314
|
+
Content-Transfer-Encoding: 7bit
|
1315
|
+
|
1316
|
+
Papaya
|
1317
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1318
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 04:06:42.569055', "sent_at" = '2011-08-05 04:06:42.568594' WHERE "emails"."id" = 1
|
1319
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1320
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1321
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1322
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Fri, 05 Aug 2011 00:06:42 -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: <4e3b6c528ec29_97cd800eb1b018819@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", Fri, 05 Aug 2011 04:06:42 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", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1323
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1324
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:06:42.596003', "created_at" = '2011-08-05 04:06:42.596003', "content" = 'Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1325
|
+
From: from@example.com
|
1326
|
+
Reply-To: reply_to@example.com
|
1327
|
+
To: to@example.com
|
1328
|
+
Cc: cc@example.com
|
1329
|
+
Message-ID: <4e3b6c528ec29_97cd800eb1b018819@dgmpro.local.mail>
|
1330
|
+
Subject: Hiya!
|
1331
|
+
Mime-Version: 1.0
|
1332
|
+
Content-Type: text/plain;
|
1333
|
+
charset=UTF-8
|
1334
|
+
Content-Transfer-Encoding: 7bit
|
1335
|
+
|
1336
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1[0m
|
1337
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1338
|
+
|
1339
|
+
Sent mail to to@example.com (19ms)
|
1340
|
+
Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1341
|
+
From: from@example.com
|
1342
|
+
Reply-To: reply_to@example.com
|
1343
|
+
To: to@example.com
|
1344
|
+
Cc: cc@example.com
|
1345
|
+
Message-ID: <4e3b6c528ec29_97cd800eb1b018819@dgmpro.local.mail>
|
1346
|
+
Subject: Hiya!
|
1347
|
+
Mime-Version: 1.0
|
1348
|
+
Content-Type: text/plain;
|
1349
|
+
charset=UTF-8
|
1350
|
+
Content-Transfer-Encoding: 7bit
|
1351
|
+
|
1352
|
+
Papaya
|
1353
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
1354
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
1355
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1356
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1357
|
+
[1m[35mSQL (0.6ms)[0m 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: Fri, 05 Aug 2011 00:06:42 -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: <4e3b6c5296afd_97cd800eb1b01897e@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", Fri, 05 Aug 2011 04:06:42 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", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1358
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:06:42 UTC +00:00]]
|
1359
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:06:42.628453', "created_at" = '2011-08-05 04:06:42.628453', "content" = 'Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1360
|
+
From: from@example.com
|
1361
|
+
Reply-To: reply_to@example.com
|
1362
|
+
To: to@example.com
|
1363
|
+
Cc: cc@example.com
|
1364
|
+
Message-ID: <4e3b6c5296afd_97cd800eb1b01897e@dgmpro.local.mail>
|
1365
|
+
Subject: Hiya!
|
1366
|
+
Mime-Version: 1.0
|
1367
|
+
Content-Type: text/plain;
|
1368
|
+
charset=UTF-8
|
1369
|
+
Content-Transfer-Encoding: 7bit
|
1370
|
+
|
1371
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
1372
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1373
|
+
|
1374
|
+
Sent mail to to@example.com (19ms)
|
1375
|
+
Date: Fri, 05 Aug 2011 00:06:42 -0400
|
1376
|
+
From: from@example.com
|
1377
|
+
Reply-To: reply_to@example.com
|
1378
|
+
To: to@example.com
|
1379
|
+
Cc: cc@example.com
|
1380
|
+
Message-ID: <4e3b6c5296afd_97cd800eb1b01897e@dgmpro.local.mail>
|
1381
|
+
Subject: Hiya!
|
1382
|
+
Mime-Version: 1.0
|
1383
|
+
Content-Type: text/plain;
|
1384
|
+
charset=UTF-8
|
1385
|
+
Content-Transfer-Encoding: 7bit
|
1386
|
+
|
1387
|
+
Papaya
|
1388
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
1389
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1390
|
+
Migrating to CreateEmails (20110804223859)
|
1391
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
1392
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
1393
|
+
Migrating to CreateEmails (20110804223859)
|
1394
|
+
Migrating to CreateDelayedJobs (20110804224806)
|
1395
|
+
Rendered sample_mailer/hello.text.erb (1.0ms)
|
1396
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1397
|
+
[1m[35mSQL (3.3ms)[0m 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: Fri, 05 Aug 2011 00:07:12 -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: <4e3b6c70a4fae_97d5800eb1b064970@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", Fri, 05 Aug 2011 04:07:12 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", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1398
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1399
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:07:12.697437', "created_at" = '2011-08-05 04:07:12.697437', "content" = 'Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1400
|
+
From: from@example.com
|
1401
|
+
Reply-To: reply_to@example.com
|
1402
|
+
To: to@example.com
|
1403
|
+
Cc: cc@example.com
|
1404
|
+
Message-ID: <4e3b6c70a4fae_97d5800eb1b064970@dgmpro.local.mail>
|
1405
|
+
Subject: Hiya!
|
1406
|
+
Mime-Version: 1.0
|
1407
|
+
Content-Type: text/plain;
|
1408
|
+
charset=UTF-8
|
1409
|
+
Content-Transfer-Encoding: 7bit
|
1410
|
+
|
1411
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
1412
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1413
|
+
|
1414
|
+
Sent mail to to@example.com (42ms)
|
1415
|
+
Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1416
|
+
From: from@example.com
|
1417
|
+
Reply-To: reply_to@example.com
|
1418
|
+
To: to@example.com
|
1419
|
+
Cc: cc@example.com
|
1420
|
+
Message-ID: <4e3b6c70a4fae_97d5800eb1b064970@dgmpro.local.mail>
|
1421
|
+
Subject: Hiya!
|
1422
|
+
Mime-Version: 1.0
|
1423
|
+
Content-Type: text/plain;
|
1424
|
+
charset=UTF-8
|
1425
|
+
Content-Transfer-Encoding: 7bit
|
1426
|
+
|
1427
|
+
Papaya
|
1428
|
+
[1m[35mDelayedMailhopper::Email Load (0.2ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
1429
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" LIMIT 1[0m
|
1430
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" WHERE "emails"."id" = ? ORDER BY created_at DESC LIMIT 1 [["id", 1]]
|
1431
|
+
|
1432
|
+
Sent mail to to@example.com (8ms)
|
1433
|
+
Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1434
|
+
From: from@example.com
|
1435
|
+
Reply-To: reply_to@example.com
|
1436
|
+
To: to@example.com
|
1437
|
+
Cc: cc@example.com
|
1438
|
+
Message-ID: <4e3b6c70a4fae_97d5800eb1b064970@dgmpro.local.mail>
|
1439
|
+
Subject: Hiya!
|
1440
|
+
Mime-Version: 1.0
|
1441
|
+
Content-Type: text/plain;
|
1442
|
+
charset=UTF-8
|
1443
|
+
Content-Transfer-Encoding: 7bit
|
1444
|
+
|
1445
|
+
Papaya
|
1446
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1447
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 04:07:12.740160', "sent_at" = '2011-08-05 04:07:12.739677' WHERE "emails"."id" = 1
|
1448
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1449
|
+
[DelayedMailhopper::SendJob] success for email_id 1, delayed_job_id 1
|
1450
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" WHERE "emails"."id" = ? LIMIT 1 [["id", 1]]
|
1451
|
+
Rendered sample_mailer/hello.text.erb (0.0ms)
|
1452
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1453
|
+
[1m[35mSQL (0.6ms)[0m 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: Fri, 05 Aug 2011 00:07:12 -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: <4e3b6c70b8e83_97d5800eb1b0650aa@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", Fri, 05 Aug 2011 04:07:12 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", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1454
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1455
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:07:12.768900', "created_at" = '2011-08-05 04:07:12.768900', "content" = 'Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1456
|
+
From: from@example.com
|
1457
|
+
Reply-To: reply_to@example.com
|
1458
|
+
To: to@example.com
|
1459
|
+
Cc: cc@example.com
|
1460
|
+
Message-ID: <4e3b6c70b8e83_97d5800eb1b0650aa@dgmpro.local.mail>
|
1461
|
+
Subject: Hiya!
|
1462
|
+
Mime-Version: 1.0
|
1463
|
+
Content-Type: text/plain;
|
1464
|
+
charset=UTF-8
|
1465
|
+
Content-Transfer-Encoding: 7bit
|
1466
|
+
|
1467
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
1468
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1469
|
+
|
1470
|
+
Sent mail to to@example.com (19ms)
|
1471
|
+
Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1472
|
+
From: from@example.com
|
1473
|
+
Reply-To: reply_to@example.com
|
1474
|
+
To: to@example.com
|
1475
|
+
Cc: cc@example.com
|
1476
|
+
Message-ID: <4e3b6c70b8e83_97d5800eb1b0650aa@dgmpro.local.mail>
|
1477
|
+
Subject: Hiya!
|
1478
|
+
Mime-Version: 1.0
|
1479
|
+
Content-Type: text/plain;
|
1480
|
+
charset=UTF-8
|
1481
|
+
Content-Transfer-Encoding: 7bit
|
1482
|
+
|
1483
|
+
Papaya
|
1484
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|
1485
|
+
|
1486
|
+
Sent mail to to@example.com (7ms)
|
1487
|
+
Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1488
|
+
From: from@example.com
|
1489
|
+
Reply-To: reply_to@example.com
|
1490
|
+
To: to@example.com
|
1491
|
+
Cc: cc@example.com
|
1492
|
+
Message-ID: <4e3b6c70b8e83_97d5800eb1b0650aa@dgmpro.local.mail>
|
1493
|
+
Subject: Hiya!
|
1494
|
+
Mime-Version: 1.0
|
1495
|
+
Content-Type: text/plain;
|
1496
|
+
charset=UTF-8
|
1497
|
+
Content-Transfer-Encoding: 7bit
|
1498
|
+
|
1499
|
+
Papaya
|
1500
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1501
|
+
[1m[35m (0.2ms)[0m UPDATE "emails" SET "updated_at" = '2011-08-05 04:07:12.796763', "sent_at" = '2011-08-05 04:07:12.796266' WHERE "emails"."id" = 1
|
1502
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1503
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1504
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1505
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "emails" ("bcc_address", "cc_address", "content", "created_at", "from_address", "reply_to_address", "sent_at", "subject", "to_address", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["bcc_address", "bcc@example.com"], ["cc_address", "cc@example.com"], ["content", "Date: Fri, 05 Aug 2011 00:07:12 -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: <4e3b6c70c66c1_97d5800eb1b0651f2@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", Fri, 05 Aug 2011 04:07:12 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", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1506
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1507
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:07:12.825025', "created_at" = '2011-08-05 04:07:12.825025', "content" = 'Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1508
|
+
From: from@example.com
|
1509
|
+
Reply-To: reply_to@example.com
|
1510
|
+
To: to@example.com
|
1511
|
+
Cc: cc@example.com
|
1512
|
+
Message-ID: <4e3b6c70c66c1_97d5800eb1b0651f2@dgmpro.local.mail>
|
1513
|
+
Subject: Hiya!
|
1514
|
+
Mime-Version: 1.0
|
1515
|
+
Content-Type: text/plain;
|
1516
|
+
charset=UTF-8
|
1517
|
+
Content-Transfer-Encoding: 7bit
|
1518
|
+
|
1519
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1[0m
|
1520
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1521
|
+
|
1522
|
+
Sent mail to to@example.com (20ms)
|
1523
|
+
Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1524
|
+
From: from@example.com
|
1525
|
+
Reply-To: reply_to@example.com
|
1526
|
+
To: to@example.com
|
1527
|
+
Cc: cc@example.com
|
1528
|
+
Message-ID: <4e3b6c70c66c1_97d5800eb1b0651f2@dgmpro.local.mail>
|
1529
|
+
Subject: Hiya!
|
1530
|
+
Mime-Version: 1.0
|
1531
|
+
Content-Type: text/plain;
|
1532
|
+
charset=UTF-8
|
1533
|
+
Content-Transfer-Encoding: 7bit
|
1534
|
+
|
1535
|
+
Papaya
|
1536
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "emails" [0m
|
1537
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
1538
|
+
Rendered sample_mailer/hello.text.erb (0.1ms)
|
1539
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1540
|
+
[1m[35mSQL (0.8ms)[0m 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: Fri, 05 Aug 2011 00:07:12 -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: <4e3b6c70cfb11_97d5800eb1b0652e6@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", Fri, 05 Aug 2011 04:07:12 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", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1541
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["attempts", 0], ["created_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/struct:DelayedMailhopper::SendJob \nid: 1\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["run_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00], ["updated_at", Fri, 05 Aug 2011 04:07:12 UTC +00:00]]
|
1542
|
+
[1m[35m (0.1ms)[0m UPDATE "emails" SET "bcc_address" = 'bcc@example.com', "reply_to_address" = 'reply_to@example.com', "cc_address" = 'cc@example.com', "updated_at" = '2011-08-05 04:07:12.865750', "created_at" = '2011-08-05 04:07:12.865750', "content" = 'Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1543
|
+
From: from@example.com
|
1544
|
+
Reply-To: reply_to@example.com
|
1545
|
+
To: to@example.com
|
1546
|
+
Cc: cc@example.com
|
1547
|
+
Message-ID: <4e3b6c70cfb11_97d5800eb1b0652e6@dgmpro.local.mail>
|
1548
|
+
Subject: Hiya!
|
1549
|
+
Mime-Version: 1.0
|
1550
|
+
Content-Type: text/plain;
|
1551
|
+
charset=UTF-8
|
1552
|
+
Content-Transfer-Encoding: 7bit
|
1553
|
+
|
1554
|
+
Papaya', "subject" = 'Hiya!', "to_address" = 'to@example.com', "from_address" = 'from@example.com' WHERE "emails"."id" = 1
|
1555
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1556
|
+
|
1557
|
+
Sent mail to to@example.com (24ms)
|
1558
|
+
Date: Fri, 05 Aug 2011 00:07:12 -0400
|
1559
|
+
From: from@example.com
|
1560
|
+
Reply-To: reply_to@example.com
|
1561
|
+
To: to@example.com
|
1562
|
+
Cc: cc@example.com
|
1563
|
+
Message-ID: <4e3b6c70cfb11_97d5800eb1b0652e6@dgmpro.local.mail>
|
1564
|
+
Subject: Hiya!
|
1565
|
+
Mime-Version: 1.0
|
1566
|
+
Content-Type: text/plain;
|
1567
|
+
charset=UTF-8
|
1568
|
+
Content-Transfer-Encoding: 7bit
|
1569
|
+
|
1570
|
+
Papaya
|
1571
|
+
[1m[35mDelayedMailhopper::Email Load (0.1ms)[0m SELECT "emails".* FROM "emails" ORDER BY created_at DESC LIMIT 1
|