govuk_notify_rails 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/govuk_notify_rails/delivery.rb +6 -9
- data/lib/govuk_notify_rails/mail_ext.rb +1 -0
- data/lib/govuk_notify_rails/mailer.rb +6 -0
- data/lib/govuk_notify_rails/version.rb +1 -1
- data/spec/dummy/{README.rdoc → README.md} +1 -5
- data/spec/dummy/Rakefile +1 -1
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/javascripts/application.js +4 -1
- data/spec/dummy/app/assets/javascripts/cable.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +3 -3
- data/spec/dummy/app/controllers/application_controller.rb +0 -2
- data/spec/dummy/app/jobs/application_job.rb +2 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/mailers/notify_mailer.rb +1 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +9 -8
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/rails +6 -1
- data/spec/dummy/bin/rake +5 -0
- data/spec/dummy/bin/setup +15 -10
- data/spec/dummy/bin/spring +17 -0
- data/spec/dummy/bin/update +29 -0
- data/spec/dummy/config.ru +2 -1
- data/spec/dummy/config/application.rb +5 -15
- data/spec/dummy/config/environment.rb +1 -1
- data/spec/dummy/config/environments/development.rb +27 -11
- data/spec/dummy/config/environments/production.rb +27 -17
- data/spec/dummy/config/environments/test.rb +7 -7
- data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/spec/dummy/config/initializers/govuk_notify_rails.rb +1 -2
- data/spec/dummy/config/initializers/new_framework_defaults.rb +24 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +6 -1
- data/spec/dummy/config/puma.rb +47 -0
- data/spec/dummy/config/routes.rb +1 -54
- data/spec/dummy/config/secrets.yml +3 -3
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/log/development.log +7 -428
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/robots.txt +5 -0
- data/spec/govuk_notify_delivery/delivery_spec.rb +29 -11
- data/spec/mailers/notify_mailer_spec.rb +5 -0
- metadata +54 -16
- data/spec/dummy/log/test.log +0 -6
@@ -14,15 +14,9 @@ Rails.application.configure do
|
|
14
14
|
config.consider_all_requests_local = false
|
15
15
|
config.action_controller.perform_caching = true
|
16
16
|
|
17
|
-
# Enable Rack::Cache to put a simple HTTP cache in front of your application
|
18
|
-
# Add `rack-cache` to your Gemfile before enabling this.
|
19
|
-
# For large-scale production use, consider using a caching reverse proxy like
|
20
|
-
# NGINX, varnish or squid.
|
21
|
-
# config.action_dispatch.rack_cache = true
|
22
|
-
|
23
17
|
# Disable serving static files from the `/public` folder by default since
|
24
18
|
# Apache or NGINX already handles this.
|
25
|
-
config.
|
19
|
+
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
26
20
|
|
27
21
|
# Compress JavaScripts and CSS.
|
28
22
|
config.assets.js_compressor = :uglifier
|
@@ -31,16 +25,20 @@ Rails.application.configure do
|
|
31
25
|
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
32
26
|
config.assets.compile = false
|
33
27
|
|
34
|
-
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
35
|
-
# yet still be able to expire them through the digest params.
|
36
|
-
config.assets.digest = true
|
37
|
-
|
38
28
|
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
|
39
29
|
|
30
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
31
|
+
# config.action_controller.asset_host = 'http://assets.example.com'
|
32
|
+
|
40
33
|
# Specifies the header that your server uses for sending files.
|
41
34
|
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
42
35
|
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
43
36
|
|
37
|
+
# Mount Action Cable outside main process or domain
|
38
|
+
# config.action_cable.mount_path = nil
|
39
|
+
# config.action_cable.url = 'wss://example.com/cable'
|
40
|
+
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
|
41
|
+
|
44
42
|
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
45
43
|
# config.force_ssl = true
|
46
44
|
|
@@ -49,16 +47,15 @@ Rails.application.configure do
|
|
49
47
|
config.log_level = :debug
|
50
48
|
|
51
49
|
# Prepend all log lines with the following tags.
|
52
|
-
|
53
|
-
|
54
|
-
# Use a different logger for distributed setups.
|
55
|
-
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
50
|
+
config.log_tags = [ :request_id ]
|
56
51
|
|
57
52
|
# Use a different cache store in production.
|
58
53
|
# config.cache_store = :mem_cache_store
|
59
54
|
|
60
|
-
#
|
61
|
-
# config.
|
55
|
+
# Use a real queuing backend for Active Job (and separate queues per environment)
|
56
|
+
# config.active_job.queue_adapter = :resque
|
57
|
+
# config.active_job.queue_name_prefix = "dummy_#{Rails.env}"
|
58
|
+
config.action_mailer.perform_caching = false
|
62
59
|
|
63
60
|
# Ignore bad email addresses and do not raise email delivery errors.
|
64
61
|
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
@@ -73,4 +70,17 @@ Rails.application.configure do
|
|
73
70
|
|
74
71
|
# Use default logging formatter so that PID and timestamp are not suppressed.
|
75
72
|
config.log_formatter = ::Logger::Formatter.new
|
73
|
+
|
74
|
+
# Use a different logger for distributed setups.
|
75
|
+
# require 'syslog/logger'
|
76
|
+
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
77
|
+
|
78
|
+
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
79
|
+
logger = ActiveSupport::Logger.new(STDOUT)
|
80
|
+
logger.formatter = config.log_formatter
|
81
|
+
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
82
|
+
end
|
83
|
+
|
84
|
+
# Do not dump schema after migrations.
|
85
|
+
config.active_record.dump_schema_after_migration = false
|
76
86
|
end
|
@@ -12,9 +12,11 @@ Rails.application.configure do
|
|
12
12
|
# preloads Rails for running tests, you may have to set it to true.
|
13
13
|
config.eager_load = false
|
14
14
|
|
15
|
-
# Configure
|
16
|
-
config.
|
17
|
-
config.
|
15
|
+
# Configure public file server for tests with Cache-Control for performance.
|
16
|
+
config.public_file_server.enabled = true
|
17
|
+
config.public_file_server.headers = {
|
18
|
+
'Cache-Control' => 'public, max-age=3600'
|
19
|
+
}
|
18
20
|
|
19
21
|
# Show full error reports and disable caching.
|
20
22
|
config.consider_all_requests_local = true
|
@@ -25,14 +27,12 @@ Rails.application.configure do
|
|
25
27
|
|
26
28
|
# Disable request forgery protection in test environment.
|
27
29
|
config.action_controller.allow_forgery_protection = false
|
30
|
+
config.action_mailer.perform_caching = false
|
28
31
|
|
29
32
|
# Tell Action Mailer not to deliver emails to the real world.
|
30
33
|
# The :test delivery method accumulates sent emails in the
|
31
34
|
# ActionMailer::Base.deliveries array.
|
32
|
-
config.action_mailer.delivery_method = :
|
33
|
-
|
34
|
-
# Randomize the order test cases are executed.
|
35
|
-
config.active_support.test_order = :random
|
35
|
+
config.action_mailer.delivery_method = :test
|
36
36
|
|
37
37
|
# Print deprecation notices to the stderr.
|
38
38
|
config.active_support.deprecation = :stderr
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains migration options to ease your Rails 5.0 upgrade.
|
4
|
+
#
|
5
|
+
# Read the Guide for Upgrading Ruby on Rails for more info on each option.
|
6
|
+
|
7
|
+
# Enable per-form CSRF tokens. Previous versions had false.
|
8
|
+
Rails.application.config.action_controller.per_form_csrf_tokens = true
|
9
|
+
|
10
|
+
# Enable origin-checking CSRF mitigation. Previous versions had false.
|
11
|
+
Rails.application.config.action_controller.forgery_protection_origin_check = true
|
12
|
+
|
13
|
+
# Make Ruby 2.4 preserve the timezone of the receiver when calling `to_time`.
|
14
|
+
# Previous versions had false.
|
15
|
+
ActiveSupport.to_time_preserves_timezone = true
|
16
|
+
|
17
|
+
# Require `belongs_to` associations by default. Previous versions had false.
|
18
|
+
Rails.application.config.active_record.belongs_to_required_by_default = true
|
19
|
+
|
20
|
+
# Do not halt callback chains when a callback returns false. Previous versions had true.
|
21
|
+
ActiveSupport.halt_callback_chains_on_return_false = false
|
22
|
+
|
23
|
+
# Configure SSL options to enable HSTS with subdomains. Previous versions had false.
|
24
|
+
Rails.application.config.ssl_options = { hsts: { subdomains: true } }
|
@@ -5,5 +5,10 @@
|
|
5
5
|
|
6
6
|
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
7
|
ActiveSupport.on_load(:action_controller) do
|
8
|
-
wrap_parameters format: [:json]
|
8
|
+
wrap_parameters format: [:json]
|
9
9
|
end
|
10
|
+
|
11
|
+
# To enable root element in JSON for ActiveRecord objects.
|
12
|
+
# ActiveSupport.on_load(:active_record) do
|
13
|
+
# self.include_root_in_json = true
|
14
|
+
# end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# Puma can serve each request in a thread from an internal thread pool.
|
2
|
+
# The `threads` method setting takes two numbers a minimum and maximum.
|
3
|
+
# Any libraries that use thread pools should be configured to match
|
4
|
+
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
5
|
+
# and maximum, this matches the default thread size of Active Record.
|
6
|
+
#
|
7
|
+
threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }.to_i
|
8
|
+
threads threads_count, threads_count
|
9
|
+
|
10
|
+
# Specifies the `port` that Puma will listen on to receive requests, default is 3000.
|
11
|
+
#
|
12
|
+
port ENV.fetch("PORT") { 3000 }
|
13
|
+
|
14
|
+
# Specifies the `environment` that Puma will run in.
|
15
|
+
#
|
16
|
+
environment ENV.fetch("RAILS_ENV") { "development" }
|
17
|
+
|
18
|
+
# Specifies the number of `workers` to boot in clustered mode.
|
19
|
+
# Workers are forked webserver processes. If using threads and workers together
|
20
|
+
# the concurrency of the application would be max `threads` * `workers`.
|
21
|
+
# Workers do not work on JRuby or Windows (both of which do not support
|
22
|
+
# processes).
|
23
|
+
#
|
24
|
+
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
25
|
+
|
26
|
+
# Use the `preload_app!` method when specifying a `workers` number.
|
27
|
+
# This directive tells Puma to first boot the application and load code
|
28
|
+
# before forking the application. This takes advantage of Copy On Write
|
29
|
+
# process behavior so workers use less memory. If you use this option
|
30
|
+
# you need to make sure to reconnect any threads in the `on_worker_boot`
|
31
|
+
# block.
|
32
|
+
#
|
33
|
+
# preload_app!
|
34
|
+
|
35
|
+
# The code in the `on_worker_boot` will be called if you are using
|
36
|
+
# clustered mode by specifying a number of `workers`. After each worker
|
37
|
+
# process is booted this block will be run, if you are using `preload_app!`
|
38
|
+
# option you will want to use this block to reconnect to any threads
|
39
|
+
# or connections that may have been created at application boot, Ruby
|
40
|
+
# cannot share connections between processes.
|
41
|
+
#
|
42
|
+
# on_worker_boot do
|
43
|
+
# ActiveRecord::Base.establish_connection if defined?(ActiveRecord)
|
44
|
+
# end
|
45
|
+
|
46
|
+
# Allow puma to be restarted by `rails restart` command.
|
47
|
+
plugin :tmp_restart
|
data/spec/dummy/config/routes.rb
CHANGED
@@ -1,56 +1,3 @@
|
|
1
1
|
Rails.application.routes.draw do
|
2
|
-
#
|
3
|
-
# See how all your routes lay out with "rake routes".
|
4
|
-
|
5
|
-
# You can have the root of your site routed with "root"
|
6
|
-
# root 'welcome#index'
|
7
|
-
|
8
|
-
# Example of regular route:
|
9
|
-
# get 'products/:id' => 'catalog#view'
|
10
|
-
|
11
|
-
# Example of named route that can be invoked with purchase_url(id: product.id)
|
12
|
-
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
13
|
-
|
14
|
-
# Example resource route (maps HTTP verbs to controller actions automatically):
|
15
|
-
# resources :products
|
16
|
-
|
17
|
-
# Example resource route with options:
|
18
|
-
# resources :products do
|
19
|
-
# member do
|
20
|
-
# get 'short'
|
21
|
-
# post 'toggle'
|
22
|
-
# end
|
23
|
-
#
|
24
|
-
# collection do
|
25
|
-
# get 'sold'
|
26
|
-
# end
|
27
|
-
# end
|
28
|
-
|
29
|
-
# Example resource route with sub-resources:
|
30
|
-
# resources :products do
|
31
|
-
# resources :comments, :sales
|
32
|
-
# resource :seller
|
33
|
-
# end
|
34
|
-
|
35
|
-
# Example resource route with more complex sub-resources:
|
36
|
-
# resources :products do
|
37
|
-
# resources :comments
|
38
|
-
# resources :sales do
|
39
|
-
# get 'recent', on: :collection
|
40
|
-
# end
|
41
|
-
# end
|
42
|
-
|
43
|
-
# Example resource route with concerns:
|
44
|
-
# concern :toggleable do
|
45
|
-
# post 'toggle'
|
46
|
-
# end
|
47
|
-
# resources :posts, concerns: :toggleable
|
48
|
-
# resources :photos, concerns: :toggleable
|
49
|
-
|
50
|
-
# Example resource route within a namespace:
|
51
|
-
# namespace :admin do
|
52
|
-
# # Directs /admin/products/* to Admin::ProductsController
|
53
|
-
# # (app/controllers/admin/products_controller.rb)
|
54
|
-
# resources :products
|
55
|
-
# end
|
2
|
+
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
56
3
|
end
|
@@ -5,16 +5,16 @@
|
|
5
5
|
|
6
6
|
# Make sure the secret is at least 30 characters and all random,
|
7
7
|
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
-
# You can use `
|
8
|
+
# You can use `rails secret` to generate a secure secret key.
|
9
9
|
|
10
10
|
# Make sure the secrets in this file are kept private
|
11
11
|
# if you're sharing your code publicly.
|
12
12
|
|
13
13
|
development:
|
14
|
-
secret_key_base:
|
14
|
+
secret_key_base: 8f4a2df9200266f3ee34baa6afc23e7698014a6e8133a78ce7322bafa745909e00b4dffc635a0c77d75b32d649d101ec1a462e60258f84c6e9c086151c50c05d
|
15
15
|
|
16
16
|
test:
|
17
|
-
secret_key_base:
|
17
|
+
secret_key_base: 43deec8d3af4f6b039161c39c1e88d42e55af9d51ba71006a5fef1a9d5a61331fb26651b8077b141a843283e02366c9980496cce886d984dc036cf041f655d45
|
18
18
|
|
19
19
|
# Do not keep production secrets in the repository,
|
20
20
|
# instead read values from the environment.
|
@@ -1,460 +1,39 @@
|
|
1
|
-
|
2
|
-
NotifyMailer#test_email: processed outbound mail in 2.9ms
|
3
|
-
|
4
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
5
|
-
|
6
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
7
|
-
|
8
|
-
NotifyMailer#test_email: processed outbound mail in 0.1ms
|
9
|
-
|
10
|
-
NotifyMailer#test_email: processed outbound mail in 0.1ms
|
11
|
-
|
12
|
-
NotifyMailer#test_email: processed outbound mail in 2.1ms
|
13
|
-
|
14
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
15
|
-
|
16
|
-
NotifyMailer#test_email: processed outbound mail in 0.1ms
|
17
|
-
|
18
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
19
|
-
|
20
|
-
NotifyMailer#test_email: processed outbound mail in 0.1ms
|
21
|
-
|
22
|
-
NotifyMailer#test_email: processed outbound mail in 110.7ms
|
23
|
-
|
24
|
-
NotifyMailer#test_email: processed outbound mail in 0.8ms
|
25
|
-
|
26
|
-
NotifyMailer#test_email: processed outbound mail in 0.7ms
|
27
|
-
|
28
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
29
|
-
|
1
|
+
NotifyMailer#test_email: processed outbound mail in 111.0ms
|
30
2
|
NotifyMailer#test_email: processed outbound mail in 0.6ms
|
31
|
-
|
32
|
-
NotifyMailer#test_email: processed outbound mail in 81.2ms
|
33
|
-
|
34
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
35
|
-
|
36
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
37
|
-
|
38
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
39
|
-
|
40
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
41
|
-
|
42
|
-
NotifyMailer#test_email: processed outbound mail in 83.7ms
|
43
|
-
|
44
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
45
|
-
|
46
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
47
|
-
|
48
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
49
|
-
|
50
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
51
|
-
|
52
|
-
NotifyMailer#test_email: processed outbound mail in 87.6ms
|
53
|
-
|
54
3
|
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
55
|
-
|
56
4
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
57
|
-
|
58
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
59
|
-
|
60
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
61
|
-
|
62
|
-
NotifyMailer#test_email: processed outbound mail in 86.3ms
|
63
|
-
|
64
5
|
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
65
|
-
|
66
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
67
|
-
|
68
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
69
|
-
|
70
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
71
|
-
|
72
|
-
NotifyMailer#test_email: processed outbound mail in 87.2ms
|
73
|
-
|
74
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
75
|
-
|
76
|
-
NotifyMailer#test_email: processed outbound mail in 0.6ms
|
77
|
-
|
78
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
79
|
-
|
80
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
81
|
-
|
82
|
-
NotifyMailer#test_email: processed outbound mail in 81.7ms
|
83
|
-
|
84
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
85
|
-
|
86
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
87
|
-
|
88
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
89
|
-
|
90
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
91
|
-
|
92
|
-
NotifyMailer#test_email: processed outbound mail in 82.1ms
|
93
|
-
|
94
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
95
|
-
|
96
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
97
|
-
|
98
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
99
|
-
|
100
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
101
|
-
|
102
|
-
NotifyMailer#test_email: processed outbound mail in 82.9ms
|
103
|
-
|
104
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
105
|
-
|
106
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
107
|
-
|
108
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
109
|
-
|
110
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
111
|
-
|
112
|
-
NotifyMailer#test_email: processed outbound mail in 83.0ms
|
113
|
-
|
114
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
115
|
-
|
116
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
117
|
-
|
118
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
119
|
-
|
120
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
121
|
-
|
122
|
-
NotifyMailer#test_email: processed outbound mail in 86.0ms
|
123
|
-
|
124
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
125
|
-
|
126
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
127
|
-
|
128
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
129
|
-
|
130
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
131
|
-
|
132
|
-
NotifyMailer#test_email: processed outbound mail in 84.4ms
|
133
|
-
|
6
|
+
NotifyMailer#test_email: processed outbound mail in 90.8ms
|
134
7
|
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
135
|
-
|
136
8
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
137
|
-
|
138
9
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
139
|
-
|
140
10
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
141
|
-
|
142
|
-
NotifyMailer#test_email: processed outbound mail in 85.3ms
|
143
|
-
|
11
|
+
NotifyMailer#test_email: processed outbound mail in 98.7ms
|
144
12
|
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
145
|
-
|
146
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
147
|
-
|
148
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
149
|
-
|
150
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
151
|
-
|
152
|
-
NotifyMailer#test_email: processed outbound mail in 82.6ms
|
153
|
-
|
154
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
155
|
-
|
156
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
157
|
-
|
158
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
159
|
-
|
160
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
161
|
-
|
162
|
-
NotifyMailer#test_email: processed outbound mail in 94.5ms
|
163
|
-
|
164
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
165
|
-
|
166
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
167
|
-
|
168
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
169
|
-
|
170
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
171
|
-
|
172
|
-
NotifyMailer#test_email: processed outbound mail in 83.1ms
|
173
|
-
|
174
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
175
|
-
|
176
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
177
|
-
|
178
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
179
|
-
|
180
13
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
181
|
-
|
182
|
-
NotifyMailer#test_email: processed outbound mail in 82.4ms
|
183
|
-
|
184
14
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
185
|
-
|
186
15
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
187
|
-
|
188
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
189
|
-
|
190
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
191
|
-
|
192
|
-
NotifyMailer#test_email: processed outbound mail in 86.3ms
|
193
|
-
|
16
|
+
NotifyMailer#test_email: processed outbound mail in 96.9ms
|
194
17
|
NotifyMailer#test_email: processed outbound mail in 0.6ms
|
195
|
-
|
196
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
197
|
-
|
198
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
199
|
-
|
200
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
201
|
-
|
202
|
-
NotifyMailer#test_email: processed outbound mail in 114.2ms
|
203
|
-
|
204
|
-
NotifyMailer#test_email: processed outbound mail in 0.6ms
|
205
|
-
|
206
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
207
|
-
|
208
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
209
|
-
|
210
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
211
|
-
|
212
|
-
NotifyMailer#test_email: processed outbound mail in 90.1ms
|
213
|
-
|
214
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
215
|
-
|
216
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
217
|
-
|
218
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
219
|
-
|
220
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
221
|
-
|
222
|
-
NotifyMailer#test_email: processed outbound mail in 89.9ms
|
223
|
-
|
224
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
225
|
-
|
226
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
227
|
-
|
228
18
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
229
|
-
|
230
19
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
231
|
-
|
232
|
-
NotifyMailer#test_email: processed outbound mail in 91.8ms
|
233
|
-
|
234
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
235
|
-
|
236
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
237
|
-
|
238
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
239
|
-
|
240
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
241
|
-
|
242
|
-
NotifyMailer#test_email: processed outbound mail in 90.6ms
|
243
|
-
|
244
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
245
|
-
|
246
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
247
|
-
|
248
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
249
|
-
|
250
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
251
|
-
|
252
|
-
NotifyMailer#test_email: processed outbound mail in 93.2ms
|
253
|
-
|
254
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
255
|
-
|
256
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
257
|
-
|
258
20
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
259
|
-
|
260
21
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
261
|
-
|
262
|
-
NotifyMailer#test_email: processed outbound mail in 90.9ms
|
263
|
-
|
264
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
265
|
-
|
22
|
+
NotifyMailer#test_email: processed outbound mail in 118.7ms
|
266
23
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
267
|
-
|
268
24
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
269
|
-
|
270
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
271
|
-
|
272
|
-
NotifyMailer#test_email: processed outbound mail in 94.4ms
|
273
|
-
|
274
|
-
NotifyMailer#test_email: processed outbound mail in 0.9ms
|
275
|
-
|
276
|
-
NotifyMailer#test_email: processed outbound mail in 0.6ms
|
277
|
-
|
278
|
-
NotifyMailer#test_email: processed outbound mail in 0.8ms
|
279
|
-
|
280
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
281
|
-
|
282
|
-
NotifyMailer#test_email: processed outbound mail in 87.6ms
|
283
|
-
|
284
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
285
|
-
|
286
25
|
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
287
|
-
|
288
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
289
|
-
|
290
26
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
291
|
-
|
292
|
-
NotifyMailer#test_email: processed outbound mail in 85.0ms
|
293
|
-
|
294
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
295
|
-
|
296
|
-
NotifyMailer#test_email: processed outbound mail in 4.5ms
|
297
|
-
|
298
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
299
|
-
|
300
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
301
|
-
|
302
|
-
NotifyMailer#test_email: processed outbound mail in 90.8ms
|
303
|
-
|
304
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
305
|
-
|
306
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
307
|
-
|
308
27
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
309
|
-
|
310
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
311
|
-
|
312
|
-
NotifyMailer#test_email: processed outbound mail in 94.7ms
|
313
|
-
|
28
|
+
NotifyMailer#test_email: processed outbound mail in 88.5ms
|
314
29
|
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
315
|
-
|
316
30
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
317
|
-
|
318
31
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
319
|
-
|
320
32
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
321
|
-
|
322
|
-
NotifyMailer#test_email: processed outbound mail in 88.0ms
|
323
|
-
|
324
|
-
NotifyMailer#test_email: processed outbound mail in 0.7ms
|
325
|
-
|
326
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
327
|
-
|
328
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
329
|
-
|
330
33
|
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
331
|
-
|
332
|
-
NotifyMailer#test_email: processed outbound mail in 2.4ms
|
333
|
-
|
334
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
335
|
-
|
336
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
337
|
-
|
338
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
339
|
-
|
340
|
-
NotifyMailer#test_email: processed outbound mail in 0.2ms
|
341
|
-
|
342
|
-
NotifyMailer#test_email: processed outbound mail in 88.6ms
|
343
|
-
|
344
|
-
NotifyMailer#test_email: processed outbound mail in 0.7ms
|
345
|
-
|
346
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
347
|
-
|
348
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
349
|
-
|
350
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
351
|
-
|
352
|
-
NotifyMailer#test_email: processed outbound mail in 93.2ms
|
353
|
-
|
354
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
355
|
-
|
356
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
357
|
-
|
358
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
359
|
-
|
360
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
361
|
-
|
362
|
-
NotifyMailer#test_email: processed outbound mail in 103.1ms
|
363
|
-
|
364
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
365
|
-
|
366
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
367
|
-
|
34
|
+
NotifyMailer#test_email: processed outbound mail in 91.8ms
|
368
35
|
NotifyMailer#test_email: processed outbound mail in 0.7ms
|
369
|
-
|
370
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
371
|
-
|
372
|
-
NotifyMailer#test_email: processed outbound mail in 87.5ms
|
373
|
-
|
374
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
375
|
-
|
376
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
377
|
-
|
378
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
379
|
-
|
380
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
381
|
-
|
382
|
-
NotifyMailer#test_email: processed outbound mail in 111.8ms
|
383
|
-
|
384
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
385
|
-
|
386
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
387
|
-
|
388
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
389
|
-
|
390
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
391
|
-
|
392
|
-
NotifyMailer#test_email: processed outbound mail in 90.9ms
|
393
|
-
|
394
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
395
|
-
|
396
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
397
|
-
|
398
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
399
|
-
|
400
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
401
|
-
|
402
|
-
NotifyMailer#test_email: processed outbound mail in 88.8ms
|
403
|
-
|
404
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
405
|
-
|
406
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
407
|
-
|
408
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
409
|
-
|
410
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
411
|
-
|
412
|
-
NotifyMailer#test_email: processed outbound mail in 89.6ms
|
413
|
-
|
414
36
|
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
415
|
-
|
416
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
417
|
-
|
418
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
419
|
-
|
420
37
|
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
421
|
-
|
422
|
-
NotifyMailer#test_email: processed outbound mail in 94.4ms
|
423
|
-
|
424
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
425
|
-
|
426
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
427
|
-
|
428
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
429
|
-
|
430
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
431
|
-
|
432
|
-
NotifyMailer#test_email: processed outbound mail in 85.9ms
|
433
|
-
|
434
38
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
435
|
-
|
436
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
437
|
-
|
438
|
-
NotifyMailer#test_email: processed outbound mail in 2.4ms
|
439
|
-
|
440
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
441
|
-
|
442
|
-
NotifyMailer#test_email: processed outbound mail in 95.3ms
|
443
|
-
|
444
|
-
NotifyMailer#test_email: processed outbound mail in 0.5ms
|
445
|
-
|
446
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
447
|
-
|
448
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
449
|
-
|
450
|
-
NotifyMailer#test_email: processed outbound mail in 0.6ms
|
451
|
-
|
452
|
-
NotifyMailer#test_email: processed outbound mail in 83.9ms
|
453
|
-
|
454
|
-
NotifyMailer#test_email: processed outbound mail in 0.4ms
|
455
|
-
|
456
|
-
NotifyMailer#test_email: processed outbound mail in 0.3ms
|
457
|
-
|
458
|
-
NotifyMailer#test_email: processed outbound mail in 2.4ms
|
459
|
-
|
460
39
|
NotifyMailer#test_email: processed outbound mail in 0.4ms
|