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