(1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('0') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.1ms) CREATE TABLE "my_forum_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_category_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_log_read_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "forum_id" integer, "text" text, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "color" varchar, "rights" text, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "forum_id" integer, "user_id" integer, "latest_post_id" integer, "name" varchar, "description" varchar, "views" integer, "posts_count" integer DEFAULT 0, "pinned" boolean DEFAULT 'f', "closed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_user_group_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "user_group_id" integer, "created_at" datetime, "updated_at" datetime)  (0.7ms) CREATE TABLE "my_forum_user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "html_color" varchar, "default" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.9ms) CREATE TABLE "my_forum_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar, "password" varchar, "salt" varchar, "email" varchar, "posts_count" integer, "is_admin" boolean DEFAULT 'f', "is_moderator" boolean DEFAULT 'f', "is_deleted" boolean DEFAULT 'f', "permanently_banned" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime, "last_logged_in" datetime)   (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  (0.0ms) select sqlite_version(*)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150215212443') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateMyForumForums (20141117122725)  (0.0ms) begin transaction  (0.1ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "my_forum_forums" already exists: CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)  (0.0ms) rollback transaction  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateMyForumForums (20141117122725)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141117122725"]]  (0.8ms) commit transaction Migrating to CreateMyForumTopics (20141117122742)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "forum_id" integer, "user_id" integer, "latest_post_id" integer, "name" varchar, "description" varchar, "views" integer, "posts_count" integer DEFAULT 0, "pinned" boolean DEFAULT 'f', "closed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141117122742"]]  (0.6ms) commit transaction Migrating to CreateMyForumPosts (20141117122751)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "forum_id" integer, "text" text, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141117122751"]]  (0.7ms) commit transaction Migrating to CreateMyForumCategories (20141118081021)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141118081021"]]  (0.7ms) commit transaction Migrating to CreateMyForumUsers (20141118131215)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar, "password" varchar, "salt" varchar, "email" varchar, "posts_count" integer, "is_admin" boolean DEFAULT 'f', "is_moderator" boolean DEFAULT 'f', "is_deleted" boolean DEFAULT 'f', "permanently_banned" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime, "last_logged_in" datetime) MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'admin' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'admin@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "admin"], ["password", "99502669cb4b4bb97b8ffffb3a236b433bcb2604b1a77dbf9611f7b282ad5e37"], ["email", "admin@example.com"], ["salt", "bb1939d3cd6c8d5f535bd21c868cede3279e6855245dbb005c46b286a58b4560"], ["created_at", "2015-02-25 08:53:23.580748"], ["updated_at", "2015-02-25 08:53:23.580748"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141118131215"]]  (0.7ms) commit transaction Migrating to CreateMyForumRoles (20141222094522)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "color" varchar, "rights" text, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141222094522"]]  (0.6ms) commit transaction Migrating to CreateMyForumUserRoles (20141222094538)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141222094538"]]  (0.8ms) commit transaction Migrating to CreateMyForumLogReadMarks (20150202115250)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_log_read_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150202115250"]]  (0.7ms) commit transaction Migrating to CreateMyForumUserGroups (20150215200453)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "html_color" varchar, "default" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)  MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guest"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] SQL (0.1ms) INSERT INTO "my_forum_user_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Guests"], ["created_at", "2015-02-25 08:53:23.627520"], ["updated_at", "2015-02-25 08:53:23.627520"]] SQL (0.1ms) INSERT INTO "my_forum_user_groups" ("name", "default", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Member"], ["default", "t"], ["created_at", "2015-02-25 08:53:23.628465"], ["updated_at", "2015-02-25 08:53:23.628465"]] SQL (0.0ms) INSERT INTO "my_forum_user_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Moderator"], ["created_at", "2015-02-25 08:53:23.629167"], ["updated_at", "2015-02-25 08:53:23.629167"]] SQL (0.0ms) INSERT INTO "my_forum_user_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Admin"], ["created_at", "2015-02-25 08:53:23.629825"], ["updated_at", "2015-02-25 08:53:23.629825"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150215200453"]]  (0.8ms) commit transaction Migrating to CreateMyForumUserGroupLinks (20150215204852)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_user_group_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "user_group_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150215204852"]]  (0.7ms) commit transaction Migrating to CreateMyForumCategoryPermissions (20150215212443)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_category_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150215212443"]]  (0.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "89e87cda359994e68f41f5b3a9724532d2c614fe0d2c85a9e44f0586d99b06af"], ["salt", "e711cb000a5bc0d7329b5005f74fc35666bae0960152e0fe238b8af15f6eda80"], ["created_at", "2015-02-25 08:55:00.808672"], ["updated_at", "2015-02-25 08:55:00.808672"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.4ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Completed 500 Internal Server Error in 46ms  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Completed 500 Internal Server Error in 2ms  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]]  (0.1ms) SELECT COUNT(*) FROM "my_forum_users" MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" ORDER BY "my_forum_users"."id" DESC LIMIT 1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Completed 500 Internal Server Error in 74083ms  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Completed 500 Internal Server Error in 2ms  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "96ced637f616c800b51de13453e289b453624565a0e90328bcf08ad1f16f8f84"], ["email", "demo@example.com"], ["salt", "21b10c188af45ea0d6125255856b23811a12122fa285d4e9000c0e918f9f67a7"], ["created_at", "2015-02-25 17:03:30.826651"], ["updated_at", "2015-02-25 17:03:30.826651"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "my_forum_users" Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}}  (0.1ms) SELECT COUNT(*) FROM "my_forum_users" MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 19962ms (ActiveRecord: 0.3ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Completed 500 Internal Server Error in 7ms  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Completed 500 Internal Server Error in 22ms  (0.1ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Completed 500 Internal Server Error in 2ms  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 23ms (Views: 7.9ms | ActiveRecord: 0.3ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.4ms) Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]]  (0.1ms) SELECT COUNT(*) FROM "my_forum_users" Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 46763ms (Views: 6.5ms | ActiveRecord: 0.4ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.2ms)  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0b83a15f8cd74531b9f2f931d50a4b16abd5648cfa06c84fdee8505bfca99405"], ["email", "demo@example.com"], ["salt", "4ffe3f4a52f0757626cbae817b3d9cb42e539844cdebabe6b59e24b71f42ab9e"], ["created_at", "2015-02-25 17:07:31.648032"], ["updated_at", "2015-02-25 17:07:31.648032"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]]  (0.1ms) SELECT COUNT(*) FROM "my_forum_users" Redirected to http://test.host/my_forum/ Completed 302 Found in 11724ms (ActiveRecord: 0.3ms)  (1.1ms) rollback transaction  (0.2ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "983813118e456a4f9e680c9cedbe98d7be48e411f2dc672a02d0e9b6d1c0c0c5"], ["email", "demo@example.com"], ["salt", "fb593881e70ff99703966918fe8b3d5323ab14f18bdf7e03666fc258681cb0f3"], ["created_at", "2015-02-25 17:07:59.482324"], ["updated_at", "2015-02-25 17:07:59.482324"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 4657ms (ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.4ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1beaa5e7d5b2af08db1b17d0d2d88394fa19c662103c0d4a87d77c75766b7765"], ["email", "demo@example.com"], ["salt", "42031ebf7658b54245508b95d96effa369a115b9aca5cdd76319b622a694761a"], ["created_at", "2015-02-25 17:09:34.807583"], ["updated_at", "2015-02-25 17:09:34.807583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 959ms (ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "22801ba00fda71843eaf378e980a7846a6a04223f42c7dfaea48e41ad326f726"], ["email", "demo@example.com"], ["salt", "6347613fcad07b71a71db5de4ae30246b645527ff4ad254988a551838e01f3e6"], ["created_at", "2015-02-25 17:09:54.661407"], ["updated_at", "2015-02-25 17:09:54.661407"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fbe03b5e9bfa94192175b2a9710db95c4ed955ac717a1b5c1a40caa0922dc35a"], ["email", "demo@example.com"], ["salt", "56cd28fa2149ae27506b8950944c03886e7838ce6302e4ad0ce29d76fa6f35cb"], ["created_at", "2015-02-25 17:10:08.695910"], ["updated_at", "2015-02-25 17:10:08.695910"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (1.2ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.3ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 9ms (Views: 7.4ms | ActiveRecord: 0.3ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "2e6c89258ef7387510b590558dc9beececb98b58f2e4f5f18be8d396981c6183"], ["email", "demo@example.com"], ["salt", "98b425c8d27917064732aba279293ad887329ab00d4d1bbc020815c3aee2bef9"], ["created_at", "2015-02-25 17:10:31.841265"], ["updated_at", "2015-02-25 17:10:31.841265"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.2ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "906911570a6fa1049cf4fa1d50bccbcd0cc5d2bde2666dfa15b94fa242e69672"], ["email", "demo@example.com"], ["salt", "5b022ac0232cc0825d54a6d7ec753035977981c5b74061f63f4be03fd2c5445e"], ["created_at", "2015-02-25 17:13:25.287582"], ["updated_at", "2015-02-25 17:13:25.287582"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.7ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "9a776b2f41a0dcdb2edc139dcaba8abb0db28dc6c3c80b0ddbbaacb4b1d4676a"], ["email", "demo@example.com"], ["salt", "6797cd5e234659ce870cd2b83d53fb7529b09c75d2995519f5bdbf72093011cb"], ["created_at", "2015-02-25 17:14:34.970096"], ["updated_at", "2015-02-25 17:14:34.970096"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "80d8952731c542bc0daf932cc5933d03a80865c950e2723f455aea4d6b010914"], ["email", "demo@example.com"], ["salt", "be37b95780eb4cfc3da870f8ad11980fa650ee5e2aa0300b640355b3f32d5da0"], ["created_at", "2015-02-25 17:15:15.044927"], ["updated_at", "2015-02-25 17:15:15.044927"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.4ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>""}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/forgot_password.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "57962c70406e7537374c8f56d8e9e45a1e60eeba9eccf9b123b367a53cdbcaec"], ["email", "demo@example.com"], ["salt", "2c90e3529fd19c9a081e159a509cdccaed9637d22b59759b19873ce1ab592f3c"], ["created_at", "2015-02-25 17:17:15.813509"], ["updated_at", "2015-02-25 17:17:15.813509"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 9ms (Views: 5.3ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "57962c70406e7537374c8f56d8e9e45a1e60eeba9eccf9b123b367a53cdbcaec"], ["email", "demo@example.com"], ["salt", "2c90e3529fd19c9a081e159a509cdccaed9637d22b59759b19873ce1ab592f3c"], ["created_at", "2015-02-25 17:17:15.841973"], ["updated_at", "2015-02-25 17:17:15.841973"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.8ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "e01ec16aa5f1e5b55b43c893b2aef08bf9e2ffaefeaf43e3db19ea2bfead81e9"], ["salt", "c3dbcff731a50134f73759e728c372f66d3c7d047c5df9f90d5e2c83b11be5d7"], ["updated_at", "2015-02-25 17:17:23.974301"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (2.3ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 8316.4ms Sent mail to demo@example.com (8.5ms) Date: Wed, 25 Feb 2015 19:17:24 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee03a42b0ec_20e53febe4865be0958ef@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: PqNALwzlvN Redirected to http://test.host/my_forum/ Completed 302 Found in 8336ms (ActiveRecord: 1.2ms)  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "358386b8335b1b18b0422994e4d2cddaa6ad175591153764a20a6bcf836440fb"], ["email", "demo@example.com"], ["salt", "0a7c194152a55f837ed34527d5c3a06e5eb9c933cd4410e2adda7fc26bade4c6"], ["created_at", "2015-02-25 17:42:29.568748"], ["updated_at", "2015-02-25 17:42:29.568748"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "358386b8335b1b18b0422994e4d2cddaa6ad175591153764a20a6bcf836440fb"], ["email", "demo@example.com"], ["salt", "0a7c194152a55f837ed34527d5c3a06e5eb9c933cd4410e2adda7fc26bade4c6"], ["created_at", "2015-02-25 17:42:29.600639"], ["updated_at", "2015-02-25 17:42:29.600639"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "977aa2d44ef6918ae05d930133885f694fd775d366f5439a93dc83fe4d8e0827"], ["email", "demo@example.com"], ["salt", "59d8683fcb6f2882001fa180451c587dec91b78a8ddc2a7dd8db23f7a51158e4"], ["created_at", "2015-02-25 17:43:37.463574"], ["updated_at", "2015-02-25 17:43:37.463574"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 10ms (Views: 6.1ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "977aa2d44ef6918ae05d930133885f694fd775d366f5439a93dc83fe4d8e0827"], ["email", "demo@example.com"], ["salt", "59d8683fcb6f2882001fa180451c587dec91b78a8ddc2a7dd8db23f7a51158e4"], ["created_at", "2015-02-25 17:43:37.494125"], ["updated_at", "2015-02-25 17:43:37.494125"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.7ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "dec9e91a37ad2257fdb37e7756d09a71ee00674fa393e1bbe28cff45768300ee"], ["salt", "380e5cde2d72d8b51b24de8d09a4ca41c82c640f112aeab06c1eb98f69117dac"], ["updated_at", "2015-02-25 17:43:37.509466"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.6ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 165.6ms Sent mail to demo@example.com (5.3ms) Date: Wed, 25 Feb 2015 19:43:37 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee09c9a4eec_21ed3ff2a9c65be835629@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: aRneiLQjAC Redirected to http://test.host/my_forum/ Completed 302 Found in 181ms (ActiveRecord: 1.0ms)  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fb5cb937b2f4aecf2bcd35652191e580224ed08c7cd7bb7e0397842e2f3e7442"], ["email", "demo@example.com"], ["salt", "65c8c038b392cc8642cae49535be63932b8604f3205f261c44b6a9738bc61fdf"], ["created_at", "2015-02-25 17:44:03.647434"], ["updated_at", "2015-02-25 17:44:03.647434"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 9ms (Views: 5.3ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fb5cb937b2f4aecf2bcd35652191e580224ed08c7cd7bb7e0397842e2f3e7442"], ["email", "demo@example.com"], ["salt", "65c8c038b392cc8642cae49535be63932b8604f3205f261c44b6a9738bc61fdf"], ["created_at", "2015-02-25 17:44:03.676569"], ["updated_at", "2015-02-25 17:44:03.676569"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.9ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "d12aa02665f0fb50b2a9c5fbda3e90c80feed93c3f63fc8da47db81fbf566e0b"], ["salt", "9a0b0d5bd42f067fd3582779f961d24fa97522e415fa4ed8d49d13e54de85580"], ["updated_at", "2015-02-25 17:44:03.690216"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.3ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 148.9ms Sent mail to demo@example.com (3.4ms) Date: Wed, 25 Feb 2015 19:44:03 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee09e3ccb3d_21fb3fdfe9065be0674f1@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: MFtzzfMezq Redirected to http://test.host/my_forum/ Completed 302 Found in 161ms (ActiveRecord: 1.3ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "71c306e3b9d18b849aa885be79913fef8b8ea0e7089c0aa343191fac250396fb"], ["email", "demo@example.com"], ["salt", "fcdb51a49fe8308dad75be9e881cb10a3f0bf9d034756b7d3a294fb3235afefa"], ["created_at", "2015-02-25 17:45:54.197365"], ["updated_at", "2015-02-25 17:45:54.197365"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 4ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "71c306e3b9d18b849aa885be79913fef8b8ea0e7089c0aa343191fac250396fb"], ["email", "demo@example.com"], ["salt", "fcdb51a49fe8308dad75be9e881cb10a3f0bf9d034756b7d3a294fb3235afefa"], ["created_at", "2015-02-25 17:45:54.227063"], ["updated_at", "2015-02-25 17:45:54.227063"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.9ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "28388415a8d975162c2231e48769b36c01002b47a01b2b597c1ee4b3726ea7d4"], ["salt", "6553b682125eb547638682338e28645d5159c92319f7a105693682934582c3a8"], ["updated_at", "2015-02-25 17:45:54.240767"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.3ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 143.6ms Sent mail to demo@example.com (3.4ms) Date: Wed, 25 Feb 2015 19:45:54 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee0a525db97_22133fc205c65be036b@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: QWZPfNcwaV Redirected to http://test.host/my_forum/ Completed 302 Found in 156ms (ActiveRecord: 1.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "f26fdbdc1e57f4ff6f6a981bb56317d42ee9ada603d7b1b0f8da4ca5687de046"], ["email", "demo@example.com"], ["salt", "8381ece4f031c1f8fb5f7dc9f7695bc081a8f4f35c086d6a3aa6c4d9087c7fa3"], ["created_at", "2015-02-25 17:48:22.384121"], ["updated_at", "2015-02-25 17:48:22.384121"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "f26fdbdc1e57f4ff6f6a981bb56317d42ee9ada603d7b1b0f8da4ca5687de046"], ["email", "demo@example.com"], ["salt", "8381ece4f031c1f8fb5f7dc9f7695bc081a8f4f35c086d6a3aa6c4d9087c7fa3"], ["created_at", "2015-02-25 17:48:22.414303"], ["updated_at", "2015-02-25 17:48:22.414303"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.9ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "cd0b092e8227f8272f31d8c44bddfbb8b46af034d46bc762aeb8fb9cd6547e7b"], ["salt", "c4feb8f43aa1d8ae15c730b4068ce1eb84479271272ad5c9e71984aaa72b873f"], ["updated_at", "2015-02-25 17:48:22.427966"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.3ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 145.3ms Sent mail to demo@example.com (3.5ms) Date: Wed, 25 Feb 2015 19:48:22 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee0ae68bd16_22373ff088c65be81bd@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: ACVPvltmMx Redirected to http://test.host/my_forum/ Completed 302 Found in 158ms (ActiveRecord: 1.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.9ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fe9e87a8f97168d3ddf25a8523c10e6fe4c8ed38a344945fb8817754537eb09e"], ["email", "demo@example.com"], ["salt", "f0cad7ee0d79d76f10a369522fd56211aaaf72cd09d8b2b66b5a4e787f88d48c"], ["created_at", "2015-02-25 20:14:03.464362"], ["updated_at", "2015-02-25 20:14:03.464362"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 7ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 13ms (Views: 7.5ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fe9e87a8f97168d3ddf25a8523c10e6fe4c8ed38a344945fb8817754537eb09e"], ["email", "demo@example.com"], ["salt", "f0cad7ee0d79d76f10a369522fd56211aaaf72cd09d8b2b66b5a4e787f88d48c"], ["created_at", "2015-02-25 20:14:03.500724"], ["updated_at", "2015-02-25 20:14:03.500724"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.7ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "ec3271a147f63f03ef19a3ed83370312e7db40bb4fe86f23837174ee772ba76b"], ["salt", "c97018782e5eaaeb3d1cb482317454d418d73a552d9e1258c571de9556c9eaac"], ["updated_at", "2015-02-25 20:14:03.517104"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.2ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.8ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 168.7ms Sent mail to demo@example.com (6.9ms) Date: Wed, 25 Feb 2015 22:14:03 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee2d0ba7ba8_23f23fe294865be4429da@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54ee2d0ba6967_23f23fe294865be442847"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54ee2d0ba6967_23f23fe294865be442847 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: pfQezqWFie ----==_mimepart_54ee2d0ba6967_23f23fe294865be442847 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: pfQezqWFie ----==_mimepart_54ee2d0ba6967_23f23fe294865be442847-- Redirected to http://test.host/my_forum/ Completed 302 Found in 187ms (ActiveRecord: 1.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1f670290f8a13fffb3ac4e3a6a8ac5b24813af03ac044a675de171aea5807c5b"], ["email", "demo@example.com"], ["salt", "884561dc35b482011ffbb11d64a63a8fba04bd5548ff290353fb2f9a00cdc06b"], ["created_at", "2015-02-25 20:16:12.643950"], ["updated_at", "2015-02-25 20:16:12.643950"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 4ms (ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 16ms (Views: 11.8ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1f670290f8a13fffb3ac4e3a6a8ac5b24813af03ac044a675de171aea5807c5b"], ["email", "demo@example.com"], ["salt", "884561dc35b482011ffbb11d64a63a8fba04bd5548ff290353fb2f9a00cdc06b"], ["created_at", "2015-02-25 20:16:12.680378"], ["updated_at", "2015-02-25 20:16:12.680378"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.8ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "10ad70bdfb98ad77b77942c046ad0f5867f37ad7661284a5daf01e683c77cca0"], ["salt", "f3ec587413e006072fb1e3bb44064ffae8bd69e54baefdb8648a1b245245514c"], ["updated_at", "2015-02-25 20:16:12.693564"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.6ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 139.6ms Sent mail to demo@example.com (4.3ms) Date: Wed, 25 Feb 2015 22:16:12 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee2d8ccb5a0_240a3fe254c65be47795f@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54ee2d8ccaa18_240a3fe254c65be4778ab"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54ee2d8ccaa18_240a3fe254c65be4778ab Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: tnOjFDeTpI ----==_mimepart_54ee2d8ccaa18_240a3fe254c65be4778ab Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: tnOjFDeTpI ----==_mimepart_54ee2d8ccaa18_240a3fe254c65be4778ab-- Redirected to http://test.host/my_forum/ Completed 302 Found in 153ms (ActiveRecord: 1.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "f548a2b1f1f679147dd7601f2b8e37668ed3f53fc5b77079021dd18a8f488ff5"], ["email", "demo@example.com"], ["salt", "76ce28af79400f7973454bd6306c515ce83a1f1cea8ad857e51379fb7a1fae9e"], ["created_at", "2015-02-25 20:16:36.563031"], ["updated_at", "2015-02-25 20:16:36.563031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 10ms (Views: 5.8ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "f548a2b1f1f679147dd7601f2b8e37668ed3f53fc5b77079021dd18a8f488ff5"], ["email", "demo@example.com"], ["salt", "76ce28af79400f7973454bd6306c515ce83a1f1cea8ad857e51379fb7a1fae9e"], ["created_at", "2015-02-25 20:16:36.592660"], ["updated_at", "2015-02-25 20:16:36.592660"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.9ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "d7bb27b92c04b3e88b102bed83a0ff8146c7091b9eb8ffd4f943b91636db16a2"], ["salt", "056d13e493aecd5917d0ebba9808138565ef4d684c5e35868d6fd535cd87c6e2"], ["updated_at", "2015-02-25 20:16:36.606955"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 146.5ms Sent mail to demo@example.com (6.6ms) Date: Wed, 25 Feb 2015 22:16:36 +0200 From: from@example.com To: demo@example.com Message-ID: <54ee2da4b80b2_24113fd899865be477541@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54ee2da4b71e0_24113fd899865be4774e7"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54ee2da4b71e0_24113fd899865be4774e7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: TWMxOOZcBG ----==_mimepart_54ee2da4b71e0_24113fd899865be4774e7 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: TWMxOOZcBG ----==_mimepart_54ee2da4b71e0_24113fd899865be4774e7-- Redirected to http://test.host/my_forum/ Completed 302 Found in 165ms (ActiveRecord: 1.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.9ms) CREATE TABLE "my_forum_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)   (0.7ms) CREATE TABLE "my_forum_category_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.7ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)   (0.6ms) CREATE TABLE "my_forum_log_read_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime)  (0.6ms) CREATE TABLE "my_forum_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "forum_id" integer, "text" text, "created_at" datetime, "updated_at" datetime)   (0.7ms) CREATE TABLE "my_forum_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "color" varchar, "rights" text, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "forum_id" integer, "user_id" integer, "latest_post_id" integer, "name" varchar, "description" varchar, "views" integer, "posts_count" integer DEFAULT 0, "pinned" boolean DEFAULT 'f', "closed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.6ms) CREATE TABLE "my_forum_user_group_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "user_group_id" integer, "created_at" datetime, "updated_at" datetime)  (0.7ms) CREATE TABLE "my_forum_user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "html_color" varchar, "default" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.9ms) CREATE TABLE "my_forum_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar, "password" varchar, "salt" varchar, "email" varchar, "posts_count" integer, "is_admin" boolean DEFAULT 'f', "is_moderator" boolean DEFAULT 'f', "is_deleted" boolean DEFAULT 'f', "permanently_banned" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime, "last_logged_in" datetime)   (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  (0.1ms) select sqlite_version(*)  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150215212443') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.0ms) CREATE TABLE "my_forum_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)   (1.0ms) CREATE TABLE "my_forum_category_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.9ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_log_read_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "forum_id" integer, "text" text, "created_at" datetime, "updated_at" datetime)   (1.0ms) CREATE TABLE "my_forum_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "color" varchar, "rights" text, "created_at" datetime, "updated_at" datetime)  (0.9ms) CREATE TABLE "my_forum_topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "forum_id" integer, "user_id" integer, "latest_post_id" integer, "name" varchar, "description" varchar, "views" integer, "posts_count" integer DEFAULT 0, "pinned" boolean DEFAULT 'f', "closed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.9ms) CREATE TABLE "my_forum_user_group_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "user_group_id" integer, "created_at" datetime, "updated_at" datetime)  (0.9ms) CREATE TABLE "my_forum_user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "html_color" varchar, "default" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  (0.9ms) CREATE TABLE "my_forum_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar, "password" varchar, "salt" varchar, "email" varchar, "posts_count" integer, "is_admin" boolean DEFAULT 'f', "is_moderator" boolean DEFAULT 'f', "is_deleted" boolean DEFAULT 'f', "permanently_banned" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime, "last_logged_in" datetime)   (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  (0.0ms) select sqlite_version(*)  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150215212443') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateMyForumForums (20141117122725)  (0.1ms) begin transaction  (0.1ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "my_forum_forums" already exists: CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.9ms) CREATE TABLE "my_forum_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_category_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.7ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)   (0.7ms) CREATE TABLE "my_forum_log_read_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "forum_id" integer, "text" text, "created_at" datetime, "updated_at" datetime)   (0.7ms) CREATE TABLE "my_forum_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "color" varchar, "rights" text, "created_at" datetime, "updated_at" datetime)  (1.0ms) CREATE TABLE "my_forum_topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "forum_id" integer, "user_id" integer, "latest_post_id" integer, "name" varchar, "description" varchar, "views" integer, "posts_count" integer DEFAULT 0, "pinned" boolean DEFAULT 'f', "closed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.7ms) CREATE TABLE "my_forum_user_group_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "user_group_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "html_color" varchar, "default" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (1.0ms) CREATE TABLE "my_forum_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar, "password" varchar, "salt" varchar, "email" varchar, "posts_count" integer, "is_admin" boolean DEFAULT 'f', "is_moderator" boolean DEFAULT 'f', "is_deleted" boolean DEFAULT 'f', "permanently_banned" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime, "last_logged_in" datetime)   (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  (0.0ms) select sqlite_version(*)  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150215212443') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.9ms) CREATE TABLE "my_forum_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_category_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.8ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_log_read_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "forum_id" integer, "text" text, "created_at" datetime, "updated_at" datetime)   (0.7ms) CREATE TABLE "my_forum_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "color" varchar, "rights" text, "created_at" datetime, "updated_at" datetime)  (0.8ms) CREATE TABLE "my_forum_topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "forum_id" integer, "user_id" integer, "latest_post_id" integer, "name" varchar, "description" varchar, "views" integer, "posts_count" integer DEFAULT 0, "pinned" boolean DEFAULT 'f', "closed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (7.7ms) CREATE TABLE "my_forum_user_group_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "user_group_id" integer, "created_at" datetime, "updated_at" datetime)  (0.7ms) CREATE TABLE "my_forum_user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "html_color" varchar, "default" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)   (0.8ms) CREATE TABLE "my_forum_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  (0.7ms) CREATE TABLE "my_forum_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar, "password" varchar, "salt" varchar, "email" varchar, "posts_count" integer, "is_admin" boolean DEFAULT 'f', "is_moderator" boolean DEFAULT 'f', "is_deleted" boolean DEFAULT 'f', "permanently_banned" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime, "last_logged_in" datetime)   (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)  (0.0ms) select sqlite_version(*)  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150215212443') ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateMyForumForums (20141117122725)  (0.1ms) begin transaction  (0.1ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "my_forum_forums" already exists: CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime)  (0.0ms) rollback transaction  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateMyForumForums (20141117122725)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_forums" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "category_id" integer, "name" varchar, "description" varchar, "topics_count" integer, "posts_count" integer, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141117122725"]]  (0.7ms) commit transaction Migrating to CreateMyForumTopics (20141117122742)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "my_forum_topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "forum_id" integer, "user_id" integer, "latest_post_id" integer, "name" varchar, "description" varchar, "views" integer, "posts_count" integer DEFAULT 0, "pinned" boolean DEFAULT 'f', "closed" boolean DEFAULT 'f', "deleted" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141117122742"]]  (0.6ms) commit transaction Migrating to CreateMyForumPosts (20141117122751)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "forum_id" integer, "text" text, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141117122751"]]  (0.6ms) commit transaction Migrating to CreateMyForumCategories (20141118081021)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141118081021"]]  (0.7ms) commit transaction Migrating to CreateMyForumUsers (20141118131215)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "login" varchar, "password" varchar, "salt" varchar, "email" varchar, "posts_count" integer, "is_admin" boolean DEFAULT 'f', "is_moderator" boolean DEFAULT 'f', "is_deleted" boolean DEFAULT 'f', "permanently_banned" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime, "last_logged_in" datetime) MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'admin' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'admin@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "admin"], ["password", "5e197298d9ae984e49aa1fbb6d593adf407f962138788a44311f17fbe96284a6"], ["email", "admin@example.com"], ["salt", "4196457f8b2ffebea985b363c9370e664cd49eb14ba2e5078b2f43883ba182c5"], ["created_at", "2015-03-01 20:58:12.326240"], ["updated_at", "2015-03-01 20:58:12.326240"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141118131215"]]  (0.6ms) commit transaction Migrating to CreateMyForumRoles (20141222094522)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "color" varchar, "rights" text, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141222094522"]]  (0.6ms) commit transaction Migrating to CreateMyForumUserRoles (20141222094538)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "my_forum_user_roles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "role_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141222094538"]]  (1.0ms) commit transaction Migrating to CreateMyForumLogReadMarks (20150202115250)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_log_read_marks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "topic_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150202115250"]]  (0.5ms) commit transaction Migrating to CreateMyForumUserGroups (20150215200453)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "my_forum_user_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "html_color" varchar, "default" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)  MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] SQL (0.1ms) INSERT INTO "my_forum_user_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Guests"], ["created_at", "2015-03-01 20:58:12.410293"], ["updated_at", "2015-03-01 20:58:12.410293"]] SQL (0.1ms) INSERT INTO "my_forum_user_groups" ("name", "default", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Member"], ["default", "t"], ["created_at", "2015-03-01 20:58:12.411232"], ["updated_at", "2015-03-01 20:58:12.411232"]] SQL (0.0ms) INSERT INTO "my_forum_user_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Moderator"], ["created_at", "2015-03-01 20:58:12.411937"], ["updated_at", "2015-03-01 20:58:12.411937"]] SQL (0.0ms) INSERT INTO "my_forum_user_groups" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Admin"], ["created_at", "2015-03-01 20:58:12.412619"], ["updated_at", "2015-03-01 20:58:12.412619"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150215200453"]]  (0.8ms) commit transaction Migrating to CreateMyForumUserGroupLinks (20150215204852)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_user_group_links" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "user_group_id" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150215204852"]]  (0.7ms) commit transaction Migrating to CreateMyForumCategoryPermissions (20150215212443)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "my_forum_category_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_group_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150215212443"]]  (0.7ms) commit transaction Migrating to CreateMyForumPrivateMessages (20150227210814)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "my_forum_private_messages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "sender_id" integer, "recipient_id" integer, "sender_deleted" boolean DEFAULT 'f', "recipient_deleted" boolean DEFAULT 'f', "unread" boolean DEFAULT 't', "subject" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150227210814"]]  (0.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.3ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "b40b15fb05604474bb225c2d11dc3d24c468c7f4eab57b56a2049afd07c3fb2b"], ["email", "demo@example.com"], ["salt", "3846651cbfa2429147592ea06722b850b0afa86990cbfa00a1ebec9b0fe83bac"], ["created_at", "2015-03-01 21:02:19.582314"], ["updated_at", "2015-03-01 21:02:19.582314"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 14ms (Views: 8.2ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "b40b15fb05604474bb225c2d11dc3d24c468c7f4eab57b56a2049afd07c3fb2b"], ["email", "demo@example.com"], ["salt", "3846651cbfa2429147592ea06722b850b0afa86990cbfa00a1ebec9b0fe83bac"], ["created_at", "2015-03-01 21:02:19.620144"], ["updated_at", "2015-03-01 21:02:19.620144"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "94b46f71ecc5f0ba6bac1852c4c01dc3f286ef855c6bdaee2ce85fb936afe212"], ["salt", "51c098605975018c28b399f4f684eab8cf9db6859eedbaa510ddfa45f4ae01e3"], ["created_at", "2015-03-01 21:02:19.632825"], ["updated_at", "2015-03-01 21:02:19.632825"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "ae9690d7655d7955a1a0c450aa257ed9627d2965585aa4d1c57834ea0ee36b4f"], ["email", "demo@example.com"], ["salt", "79529a7536879972a3703dadb6331f82a8bfb6249ab355315fe332200b20035c"], ["created_at", "2015-03-01 21:03:32.928993"], ["updated_at", "2015-03-01 21:03:32.928993"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 7ms (ActiveRecord: 0.2ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "ae9690d7655d7955a1a0c450aa257ed9627d2965585aa4d1c57834ea0ee36b4f"], ["email", "demo@example.com"], ["salt", "79529a7536879972a3703dadb6331f82a8bfb6249ab355315fe332200b20035c"], ["created_at", "2015-03-01 21:03:32.962085"], ["updated_at", "2015-03-01 21:03:32.962085"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "b96c56727810da283e36a985f286ded8d3d714c8699f1b63048720162420ed59"], ["salt", "d050586ef2a42886001fd8f1bd7c1b867fd8804dcb20f666aaf0d4307d7c3399"], ["created_at", "2015-03-01 21:03:32.972320"], ["updated_at", "2015-03-01 21:03:32.972320"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.4ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (1.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "9a5663b760a49420ecfb8172d8d1a4fc89c0b707e370babf711327cd8167aa93"], ["email", "demo@example.com"], ["salt", "a2ee3d13ac5d285d8843ef7353e0afcb539e3274b217a5fee477efe5dfb4ced8"], ["created_at", "2015-03-01 21:05:34.073227"], ["updated_at", "2015-03-01 21:05:34.073227"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 15ms (Views: 8.4ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "9a5663b760a49420ecfb8172d8d1a4fc89c0b707e370babf711327cd8167aa93"], ["email", "demo@example.com"], ["salt", "a2ee3d13ac5d285d8843ef7353e0afcb539e3274b217a5fee477efe5dfb4ced8"], ["created_at", "2015-03-01 21:05:34.111544"], ["updated_at", "2015-03-01 21:05:34.111544"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SELECT COUNT(*) FROM "my_forum_users" MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" ORDER BY "my_forum_users"."id" ASC LIMIT 1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 2ms (ActiveRecord: 0.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "0f9a952465c3b474fe2f1d2ec146d1c730a7b5470ef3e99089b048c28ff185d2"], ["salt", "2cf546e6b6ce90c2f34fd5bb81ad4d5d135b028fd2d83b95ad484443755179d8"], ["created_at", "2015-03-01 21:07:51.589519"], ["updated_at", "2015-03-01 21:07:51.589519"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.3ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "518c13ddfb16e852a01bac24abfbb8355bafd86a4f3b655bf8f05b7c9f17bd75"], ["email", "demo@example.com"], ["salt", "a77ad54a16f581cdb021ee671228b2e82fcf90fc075f8eb9ebd318d9dcbbed94"], ["created_at", "2015-03-01 21:07:55.458923"], ["updated_at", "2015-03-01 21:07:55.458923"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 14ms (Views: 8.1ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "518c13ddfb16e852a01bac24abfbb8355bafd86a4f3b655bf8f05b7c9f17bd75"], ["email", "demo@example.com"], ["salt", "a77ad54a16f581cdb021ee671228b2e82fcf90fc075f8eb9ebd318d9dcbbed94"], ["created_at", "2015-03-01 21:07:55.495583"], ["updated_at", "2015-03-01 21:07:55.495583"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.4ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "315ac13220128190616574152d95c2b982de2e5c994df44e71bd5efe93864ea7"], ["salt", "3b5e4ed82370cbece927cb92d81f088739641c42697d4d2eec39da3984407723"], ["created_at", "2015-03-01 21:07:55.504799"], ["updated_at", "2015-03-01 21:07:55.504799"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8587e5cca0c0522d21d068616e040a1a3c9b14b85040a82176ef111a9ec2018a"], ["email", "demo@example.com"], ["salt", "3bc364fbe4a0d474bba610fc6f63d6719538305235aa22d042e5931222cc3db7"], ["created_at", "2015-03-01 21:08:14.215483"], ["updated_at", "2015-03-01 21:08:14.215483"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.4ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8587e5cca0c0522d21d068616e040a1a3c9b14b85040a82176ef111a9ec2018a"], ["email", "demo@example.com"], ["salt", "3bc364fbe4a0d474bba610fc6f63d6719538305235aa22d042e5931222cc3db7"], ["created_at", "2015-03-01 21:08:14.247911"], ["updated_at", "2015-03-01 21:08:14.247911"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "4886969ba739fd42ed6c1d1e4ad4ebf0ba894247158278f8d749a0099f4a78df"], ["salt", "a9632effb758d9e3efdb727b0a9c40fc6570a676f3312e99eee2e83b9de0fb10"], ["created_at", "2015-03-01 21:08:14.255880"], ["updated_at", "2015-03-01 21:08:14.255880"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0b8bbfdd0c620a416996b96d475f1bb6ce43f81a007c728e6f18b830d831539d"], ["email", "demo@example.com"], ["salt", "8265b74d1234deff330882670f73c28118144a214201ee1b4ce708bde9eeecec"], ["created_at", "2015-03-01 21:08:26.370288"], ["updated_at", "2015-03-01 21:08:26.370288"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 10ms (Views: 5.8ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0b8bbfdd0c620a416996b96d475f1bb6ce43f81a007c728e6f18b830d831539d"], ["email", "demo@example.com"], ["salt", "8265b74d1234deff330882670f73c28118144a214201ee1b4ce708bde9eeecec"], ["created_at", "2015-03-01 21:08:26.401872"], ["updated_at", "2015-03-01 21:08:26.401872"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "dddd228dc8731959c6ade3dba309f8dd501696953b2a8b2a424b085b5d0f79d1"], ["salt", "f7a3660bebf6a799e1c8b8cae0ade5844fb5256db2f934984449fa46f4f5c34c"], ["created_at", "2015-03-01 21:08:26.410934"], ["updated_at", "2015-03-01 21:08:26.410934"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "aca75009a6ba593e0f41f0ef7c184e0a1888c0c96e23b2eed6c07885254178c6"], ["email", "demo@example.com"], ["salt", "2fbe2766ac267be0355dd0ad4bef62326fe4b5b9a174dd49de6a99f416899df6"], ["created_at", "2015-03-01 21:08:56.956788"], ["updated_at", "2015-03-01 21:08:56.956788"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "aca75009a6ba593e0f41f0ef7c184e0a1888c0c96e23b2eed6c07885254178c6"], ["email", "demo@example.com"], ["salt", "2fbe2766ac267be0355dd0ad4bef62326fe4b5b9a174dd49de6a99f416899df6"], ["created_at", "2015-03-01 21:08:56.988809"], ["updated_at", "2015-03-01 21:08:56.988809"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} Redirected to http://test.host/my_forum/ Filter chain halted as :authorize_user rendered or redirected Completed 302 Found in 1ms (ActiveRecord: 0.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "f3cf46140dda10888a0e252fb26cfcb0ea5a4c65488adcabb954a00dfaacc1fd"], ["salt", "94f9dd2028fffe00ac5ffd1f2b0da3c54c39b2a8985fd2fcfd5b8fae8fbe8f2a"], ["created_at", "2015-03-01 21:08:57.001723"], ["updated_at", "2015-03-01 21:08:57.001723"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "c8785efa441dd5e80071120d0f8a85db97f21f6ae2bb630dea2020d97c3c7b21"], ["email", "demo@example.com"], ["salt", "7a5e4847e377242d110d07d0aee31113d2fa1f5224a78f06e43882fecce37907"], ["created_at", "2015-03-01 21:11:16.851195"], ["updated_at", "2015-03-01 21:11:16.851195"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "c8785efa441dd5e80071120d0f8a85db97f21f6ae2bb630dea2020d97c3c7b21"], ["email", "demo@example.com"], ["salt", "7a5e4847e377242d110d07d0aee31113d2fa1f5224a78f06e43882fecce37907"], ["created_at", "2015-03-01 21:11:16.881988"], ["updated_at", "2015-03-01 21:11:16.881988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.5ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.3ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:11:16.918917' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.2ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "811555033e40b5398157c1a79667d6090ce66471f4d9a331a3f5bdf58870ba23"], ["salt", "56b4f92e5d661007ad98bec983bfe83b5b7a17cde68cc0df376f3b5d3cae2569"], ["updated_at", "2015-03-01 21:11:16.941980"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (2.1ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.3ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 183.9ms Sent mail to demo@example.com (10.1ms) Date: Sun, 01 Mar 2015 23:11:17 +0200 From: from@example.com To: demo@example.com Message-ID: <54f380751f7e6_a2813fda59865bf03198b@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f380751dd66_a2813fda59865bf0318e1"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f380751dd66_a2813fda59865bf0318e1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: AYQYAtytGE ----==_mimepart_54f380751dd66_a2813fda59865bf0318e1 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: AYQYAtytGE ----==_mimepart_54f380751dd66_a2813fda59865bf0318e1-- Redirected to http://test.host/my_forum/ Completed 302 Found in 250ms (ActiveRecord: 3.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "1727dd942f2ac9cea0595db0eb8e128f77288cf06b5437a01033762497257894"], ["salt", "31e77c7418d6f71b6696bb794411d906ef9cef46b92d8f42bea1eb28c21cb59a"], ["created_at", "2015-03-01 21:11:17.140372"], ["updated_at", "2015-03-01 21:11:17.140372"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "7ebb0c1116124daea62acc6f356e205517a1a158b05ddc1b14c86a6f5ed6f39e"], ["email", "demo@example.com"], ["salt", "54378aa670627787949d10c9902605c73dba08b3fb0b3114f3ff1d58a9bcccb6"], ["created_at", "2015-03-01 21:13:28.785073"], ["updated_at", "2015-03-01 21:13:28.785073"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 13ms (Views: 8.2ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "7ebb0c1116124daea62acc6f356e205517a1a158b05ddc1b14c86a6f5ed6f39e"], ["email", "demo@example.com"], ["salt", "54378aa670627787949d10c9902605c73dba08b3fb0b3114f3ff1d58a9bcccb6"], ["created_at", "2015-03-01 21:13:28.820198"], ["updated_at", "2015-03-01 21:13:28.820198"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.2ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.2ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:13:28.854542' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "9ba023a9900703fb11df2d637b71c67237a3334fbd508a8573bffefeec4225a1"], ["salt", "8bd924060bda5841cd7e934cc6d6ac9297d130d48e1d8d75584e820ab61bbc8f"], ["updated_at", "2015-03-01 21:13:28.865869"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.0ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.8ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 147.0ms Sent mail to demo@example.com (4.2ms) Date: Sun, 01 Mar 2015 23:13:29 +0200 From: from@example.com To: demo@example.com Message-ID: <54f380f933af_a2993ff8d9c57be812873@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f380f92813_a2993ff8d9c57be81277c"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f380f92813_a2993ff8d9c57be81277c Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: VcbXnHmnDS ----==_mimepart_54f380f92813_a2993ff8d9c57be81277c Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: VcbXnHmnDS ----==_mimepart_54f380f92813_a2993ff8d9c57be81277c-- Redirected to http://test.host/my_forum/ Completed 302 Found in 192ms (ActiveRecord: 2.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "088899abe7d28ff1ca880313e47886c61232729b8c0348f0fbc92eb168ded4df"], ["email", "demo@example.com"], ["salt", "1f19f3abaf591fe79b41f458109a835de722d6eead1f23d9cf97cd4ca47eaa88"], ["created_at", "2015-03-01 21:13:29.021269"], ["updated_at", "2015-03-01 21:13:29.021269"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "b0e1dc29dc9d9711efe6251db14eb83bd8708d99e21f35990ce7d4ac89a51a4a"], ["email", "demo@example.com"], ["salt", "fab78b7d1f6c872031981466ddf3fa0a0f196192b400cfc655e5152e4ea61789"], ["created_at", "2015-03-01 21:14:35.430348"], ["updated_at", "2015-03-01 21:14:35.430348"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "b0e1dc29dc9d9711efe6251db14eb83bd8708d99e21f35990ce7d4ac89a51a4a"], ["email", "demo@example.com"], ["salt", "fab78b7d1f6c872031981466ddf3fa0a0f196192b400cfc655e5152e4ea61789"], ["created_at", "2015-03-01 21:14:35.463696"], ["updated_at", "2015-03-01 21:14:35.463696"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:14:35.488112' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.2ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "1ed523f6a14d54c316f974ae7aac0dcaf7f72bd42bc6b0d166223e067f32b7e2"], ["salt", "947627d7d4d73c58e79b42a46f7dd82a011921611299f846ac0b63ae400ac27e"], ["updated_at", "2015-03-01 21:14:35.499842"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.1ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 144.7ms Sent mail to demo@example.com (4.2ms) Date: Sun, 01 Mar 2015 23:14:35 +0200 From: from@example.com To: demo@example.com Message-ID: <54f3813b9d5cb_a2a33fecc5465be458316@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f3813b9ca36_a2a33fecc5465be4582f"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f3813b9ca36_a2a33fecc5465be4582f Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: unFJZYhDwe ----==_mimepart_54f3813b9ca36_a2a33fecc5465be4582f Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: unFJZYhDwe ----==_mimepart_54f3813b9ca36_a2a33fecc5465be4582f-- Redirected to http://test.host/my_forum/ Completed 302 Found in 181ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "b0e1dc29dc9d9711efe6251db14eb83bd8708d99e21f35990ce7d4ac89a51a4a"], ["email", "demo@example.com"], ["salt", "fab78b7d1f6c872031981466ddf3fa0a0f196192b400cfc655e5152e4ea61789"], ["created_at", "2015-03-01 21:14:35.654750"], ["updated_at", "2015-03-01 21:14:35.654750"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (3.9ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.6ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "5fe0fe517c0cec8822dd7eb0dcff2740e6a9351e10fa0524e40819d78d852773"], ["email", "demo@example.com"], ["salt", "ab66d71074dee0052ed7d032dec606d12f7dd7796ee93e145719e3755efad956"], ["created_at", "2015-03-01 21:28:50.266291"], ["updated_at", "2015-03-01 21:28:50.266291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 14ms (Views: 6.9ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "5fe0fe517c0cec8822dd7eb0dcff2740e6a9351e10fa0524e40819d78d852773"], ["email", "demo@example.com"], ["salt", "ab66d71074dee0052ed7d032dec606d12f7dd7796ee93e145719e3755efad956"], ["created_at", "2015-03-01 21:28:50.302905"], ["updated_at", "2015-03-01 21:28:50.302905"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.3ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.4ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:28:50.335311' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "f35f54b380a1bcee9d2c194f811bdc9dd522c0e9d65df46f9793be18e3c90644"], ["salt", "925decdd04c3220e0a877804bd7b1e4d5bc23415dad4d811a9364181a9f295fa"], ["updated_at", "2015-03-01 21:28:50.354112"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.5ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.1ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 168.4ms Sent mail to demo@example.com (8.4ms) Date: Sun, 01 Mar 2015 23:28:50 +0200 From: from@example.com To: demo@example.com Message-ID: <54f384927fe76_a33e3fdfc0c65be431830@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f384927e8f0_a33e3fdfc0c65be43175"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f384927e8f0_a33e3fdfc0c65be43175 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: sqUQHAUdLx ----==_mimepart_54f384927e8f0_a33e3fdfc0c65be43175 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: sqUQHAUdLx ----==_mimepart_54f384927e8f0_a33e3fdfc0c65be43175-- Redirected to http://test.host/my_forum/ Completed 302 Found in 223ms (ActiveRecord: 2.7ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "5fe0fe517c0cec8822dd7eb0dcff2740e6a9351e10fa0524e40819d78d852773"], ["email", "demo@example.com"], ["salt", "ab66d71074dee0052ed7d032dec606d12f7dd7796ee93e145719e3755efad956"], ["created_at", "2015-03-01 21:28:50.534367"], ["updated_at", "2015-03-01 21:28:50.534367"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "c5ea099be8416d79908515095633ebc48535e52c8980df0494b9cdeea7eb4bbe"], ["email", "demo@example.com"], ["salt", "075a491e91bfbc41375a80d5639672e6df500854ae8da6407aa534ba68004098"], ["created_at", "2015-03-01 21:29:34.891403"], ["updated_at", "2015-03-01 21:29:34.891403"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "c5ea099be8416d79908515095633ebc48535e52c8980df0494b9cdeea7eb4bbe"], ["email", "demo@example.com"], ["salt", "075a491e91bfbc41375a80d5639672e6df500854ae8da6407aa534ba68004098"], ["created_at", "2015-03-01 21:29:34.921903"], ["updated_at", "2015-03-01 21:29:34.921903"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:29:34.946983' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "32360bf7f57553293a5b4f6e0167092dd6e4044196a8a8fb8864727cfc62f5fd"], ["salt", "ec44313aa2befa540c878b65ee9db6559797eb9cdfc59887267a70a76509a418"], ["updated_at", "2015-03-01 21:29:34.960216"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 153.5ms Sent mail to demo@example.com (6.4ms) Date: Sun, 01 Mar 2015 23:29:35 +0200 From: from@example.com To: demo@example.com Message-ID: <54f384bf1c071_a3473ff284865be47661b@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f384bf1ac74_a3473ff284865be4765a"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f384bf1ac74_a3473ff284865be4765a Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: yWTsYNBmVL ----==_mimepart_54f384bf1ac74_a3473ff284865be4765a Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: yWTsYNBmVL ----==_mimepart_54f384bf1ac74_a3473ff284865be4765a-- Redirected to http://test.host/my_forum/ Completed 302 Found in 194ms (ActiveRecord: 2.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "73c0bb1d3948394c582d1a231660c7116a24a7e9166777459414d53e6d0619af"], ["email", "demo@example.com"], ["salt", "b654254738dcd1e35b857f3c9f4f7e31e302db4ef861bd0335a281cea683e061"], ["created_at", "2015-03-01 21:29:35.125507"], ["updated_at", "2015-03-01 21:29:35.125507"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "93a0f861324461b52966c1c00e557f9b70d7051ff0a0de2efaf2ab9d2aa74acd"], ["email", "demo@example.com"], ["salt", "d277d0665224a85cf7ea4e2f459e46e010d4c975c89bff6f05a096b064b92787"], ["created_at", "2015-03-01 21:31:07.526520"], ["updated_at", "2015-03-01 21:31:07.526520"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "93a0f861324461b52966c1c00e557f9b70d7051ff0a0de2efaf2ab9d2aa74acd"], ["email", "demo@example.com"], ["salt", "d277d0665224a85cf7ea4e2f459e46e010d4c975c89bff6f05a096b064b92787"], ["created_at", "2015-03-01 21:31:07.558484"], ["updated_at", "2015-03-01 21:31:07.558484"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:31:07.586055' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "9553abd94bfb045e148a89b63e8c6560bc3777b569f6b0f9fdd7f999cd730432"], ["salt", "34ab15508e4e18c4c952509a96ef1aba8d59e4cdf3fa644d26f0804ca8bcede2"], ["updated_at", "2015-03-01 21:31:07.599269"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 145.7ms Sent mail to demo@example.com (4.5ms) Date: Sun, 01 Mar 2015 23:31:07 +0200 From: from@example.com To: demo@example.com Message-ID: <54f3851bb5eb0_a35a3ff34c865be45815c@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f3851bb52db_a35a3ff34c865be4580bb"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f3851bb52db_a35a3ff34c865be4580bb Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: tSoOBBQOOm ----==_mimepart_54f3851bb52db_a35a3ff34c865be4580bb Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: tSoOBBQOOm ----==_mimepart_54f3851bb52db_a35a3ff34c865be4580bb-- Redirected to http://test.host/my_forum/ Completed 302 Found in 187ms (ActiveRecord: 2.3ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.2ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "93a0f861324461b52966c1c00e557f9b70d7051ff0a0de2efaf2ab9d2aa74acd"], ["email", "demo@example.com"], ["salt", "d277d0665224a85cf7ea4e2f459e46e010d4c975c89bff6f05a096b064b92787"], ["created_at", "2015-03-01 21:31:07.755945"], ["updated_at", "2015-03-01 21:31:07.755945"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:31:07.764124' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["password", "75a361ce8a6febdf57d48a24b211ef1169ea533d5b989fe266769e9d190fc9e2"], ["salt", "f0657b14635df0644e7e6665e6f6d9e8fba5caa617788d9ed58a2069ce13adf6"], ["updated_at", "2015-03-01 21:31:07.769840"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 14ms (ActiveRecord: 1.2ms)  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fbc422dfefadcac6b64aed10c2b2d6b52a50013f39318b97186721c789e6c62e"], ["email", "demo@example.com"], ["salt", "84cdd46e2fbfa47751edfc3c52d939ea93468af897e269beb02ac5a9d27b2523"], ["created_at", "2015-03-01 21:31:30.936017"], ["updated_at", "2015-03-01 21:31:30.936017"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fbc422dfefadcac6b64aed10c2b2d6b52a50013f39318b97186721c789e6c62e"], ["email", "demo@example.com"], ["salt", "84cdd46e2fbfa47751edfc3c52d939ea93468af897e269beb02ac5a9d27b2523"], ["created_at", "2015-03-01 21:31:30.967963"], ["updated_at", "2015-03-01 21:31:30.967963"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:31:30.992015' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "dd93766e0a0fa3c82c736ca917a14b86baad26824e82204a3b21443e9e1ebf97"], ["salt", "6dc0e6ca8be200111601b225ad91641a2fbecc4140820686d1e90e570e487096"], ["updated_at", "2015-03-01 21:31:31.006405"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.6ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 143.3ms Sent mail to demo@example.com (4.4ms) Date: Sun, 01 Mar 2015 23:31:31 +0200 From: from@example.com To: demo@example.com Message-ID: <54f3853324791_a3623fe32d065be4327d2@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f3853323b9e_a3623fe32d065be43268d"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f3853323b9e_a3623fe32d065be43268d Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: OWTmIfEJDq ----==_mimepart_54f3853323b9e_a3623fe32d065be43268d Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: OWTmIfEJDq ----==_mimepart_54f3853323b9e_a3623fe32d065be43268d-- Redirected to http://test.host/my_forum/ Completed 302 Found in 182ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.0ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "ce4dd85604af0536407f3637b6c292dc8dac3251673276e5d9ddef95c6ef4ee9"], ["email", "demo@example.com"], ["salt", "0d7b3c70e53ccd13226f9162256157788e758775717eb7ad5cdc9f2a069137bd"], ["created_at", "2015-03-01 21:31:31.159575"], ["updated_at", "2015-03-01 21:31:31.159575"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:31:31.166893' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (2.7ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["password", "56701e30ef62477f1d5642cb8a02f8cb4e139bb7895dc7d77358f14cc5ba37b1"], ["salt", "f3e81e284ef34c7cbece1b9fe7ad0f234e897dbab984474528a45f40d2744e59"], ["updated_at", "2015-03-01 21:31:31.175113"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 16ms (ActiveRecord: 3.8ms)  (0.4ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "7dd8732362001764a300a05fa26dbba8e028319b3de928c07aeeb90ccc4316cb"], ["email", "demo@example.com"], ["salt", "9b9c72dd51257b6c612d24ab187c9145744f058b270a9e4feabddb29ff301772"], ["created_at", "2015-03-01 21:31:44.157282"], ["updated_at", "2015-03-01 21:31:44.157282"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (3.9ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.3ms) Completed 200 OK in 10ms (Views: 5.6ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "7dd8732362001764a300a05fa26dbba8e028319b3de928c07aeeb90ccc4316cb"], ["email", "demo@example.com"], ["salt", "9b9c72dd51257b6c612d24ab187c9145744f058b270a9e4feabddb29ff301772"], ["created_at", "2015-03-01 21:31:44.193222"], ["updated_at", "2015-03-01 21:31:44.193222"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:31:44.218459' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "16df6534b50f9b55991a46a7a1c0ff34e5e27299102cc5864a0feb23f6a88474"], ["salt", "69d1ff564646064ce583662a3215103b979067285b78dc2fb6e94a685533152f"], ["updated_at", "2015-03-01 21:31:44.232166"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 142.9ms Sent mail to demo@example.com (4.4ms) Date: Sun, 01 Mar 2015 23:31:44 +0200 From: from@example.com To: demo@example.com Message-ID: <54f385405b8ec_a3673ffb58865be472786@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f385405ad2e_a3673ffb58865be4726e7"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f385405ad2e_a3673ffb58865be4726e7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: UZkbjitSWU ----==_mimepart_54f385405ad2e_a3673ffb58865be4726e7 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: UZkbjitSWU ----==_mimepart_54f385405ad2e_a3673ffb58865be4726e7-- Redirected to http://test.host/my_forum/ Completed 302 Found in 181ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.6ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "7dd8732362001764a300a05fa26dbba8e028319b3de928c07aeeb90ccc4316cb"], ["email", "demo@example.com"], ["salt", "9b9c72dd51257b6c612d24ab187c9145744f058b270a9e4feabddb29ff301772"], ["created_at", "2015-03-01 21:31:44.385886"], ["updated_at", "2015-03-01 21:31:44.385886"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:31:44.393184' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["password", "cf139dce9b379133b86ff1291a168d2b11be9618c20d7ca24cf815f892e479a9"], ["salt", "12fc14df4b1c7fc9dd6f8684e3a41382d5819fb2509df73dcf2f7accbeeef0cb"], ["updated_at", "2015-03-01 21:31:44.397679"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 13ms (ActiveRecord: 1.1ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8bcf4c3940aa20b662672114a5caaf7b4419896e1adda576d98017c270379586"], ["email", "demo@example.com"], ["salt", "ceb1037966922283bccd56033fe97acc15c5a12378b4f9d7bd7d6345ae8bed98"], ["created_at", "2015-03-01 21:32:02.162881"], ["updated_at", "2015-03-01 21:32:02.162881"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 10ms (ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8bcf4c3940aa20b662672114a5caaf7b4419896e1adda576d98017c270379586"], ["email", "demo@example.com"], ["salt", "ceb1037966922283bccd56033fe97acc15c5a12378b4f9d7bd7d6345ae8bed98"], ["created_at", "2015-03-01 21:32:02.198214"], ["updated_at", "2015-03-01 21:32:02.198214"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:32:02.223822' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "8b966bb3a36e974893f0044a08dbc09947a448db11a6c42d0093db2bf8748555"], ["salt", "6a718515167bb50ea6a7c95c97faf941eb15db185f8fc00487853848e5833142"], ["updated_at", "2015-03-01 21:32:02.235965"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.1ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.9ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 153.8ms Sent mail to demo@example.com (4.3ms) Date: Sun, 01 Mar 2015 23:32:02 +0200 From: from@example.com To: demo@example.com Message-ID: <54f385525f166_a36d3fce01c65bec256de@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f385525e595_a36d3fce01c65bec255dd"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f385525e595_a36d3fce01c65bec255dd Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: xNEiRSmKps ----==_mimepart_54f385525e595_a36d3fce01c65bec255dd Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: xNEiRSmKps ----==_mimepart_54f385525e595_a36d3fce01c65bec255dd-- Redirected to http://test.host/my_forum/ Completed 302 Found in 191ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8bcf4c3940aa20b662672114a5caaf7b4419896e1adda576d98017c270379586"], ["email", "demo@example.com"], ["salt", "ceb1037966922283bccd56033fe97acc15c5a12378b4f9d7bd7d6345ae8bed98"], ["created_at", "2015-03-01 21:32:02.400272"], ["updated_at", "2015-03-01 21:32:02.400272"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:32:02.408828' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["password", "108c716c3ea120af45cf79be0edbcf2da5c47badc8e7d1b17c75fd19b374e8a3"], ["salt", "b0c6ab6bca325a34940f6b25c27e9e5ff0dac2241015587163ecc5650c93428b"], ["updated_at", "2015-03-01 21:32:02.413933"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 13ms (ActiveRecord: 1.1ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "4050646ef8c6056254c576ca9ada1f1bdec31812f4078d097299c5d5b4538d30"], ["email", "demo@example.com"], ["salt", "211e0b709e5869c8ebe7d0dc521da0f3287aa41a20da7f39b84d3383c0a1daa2"], ["created_at", "2015-03-01 21:32:13.604177"], ["updated_at", "2015-03-01 21:32:13.604177"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "4050646ef8c6056254c576ca9ada1f1bdec31812f4078d097299c5d5b4538d30"], ["email", "demo@example.com"], ["salt", "211e0b709e5869c8ebe7d0dc521da0f3287aa41a20da7f39b84d3383c0a1daa2"], ["created_at", "2015-03-01 21:32:13.636134"], ["updated_at", "2015-03-01 21:32:13.636134"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:32:13.661011' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "a7c1bc89d5e534782426ef7f633666b2762efb0082c3b028e99774b2afd64b16"], ["salt", "3d70b202eedeb1da633fbe88777713551f7ae129161ffa41126c2597aa580c11"], ["updated_at", "2015-03-01 21:32:13.673164"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 138.9ms Sent mail to demo@example.com (4.4ms) Date: Sun, 01 Mar 2015 23:32:13 +0200 From: from@example.com To: demo@example.com Message-ID: <54f3855dc6242_a3723fc715465bec1783@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f3855dc56a5_a3723fc715465bec17796"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f3855dc56a5_a3723fc715465bec17796 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: ZkOuHTambi ----==_mimepart_54f3855dc56a5_a3723fc715465bec17796 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: ZkOuHTambi ----==_mimepart_54f3855dc56a5_a3723fc715465bec17796-- Redirected to http://test.host/my_forum/ Completed 302 Found in 175ms (ActiveRecord: 2.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.0ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "4050646ef8c6056254c576ca9ada1f1bdec31812f4078d097299c5d5b4538d30"], ["email", "demo@example.com"], ["salt", "211e0b709e5869c8ebe7d0dc521da0f3287aa41a20da7f39b84d3383c0a1daa2"], ["created_at", "2015-03-01 21:32:13.820731"], ["updated_at", "2015-03-01 21:32:13.820731"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:32:13.828112' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["password", "5cbe7d250c958afdf337b99dd746d2899d3f4ed8eb8241cfe9f72557ad1a0bfc"], ["salt", "c1cb671f0e77b7a1244ebaa064cc212751c1fc178688eb683ec38fb86bb2b12f"], ["updated_at", "2015-03-01 21:32:13.834450"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 14ms (ActiveRecord: 1.2ms)  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "a0af86f0ac0f40539a69bd837d6905ed32879d1c80d76960bf1e6b8448dbffa4"], ["email", "demo@example.com"], ["salt", "7f6b9e849df79bd1d011ad355eabf75dede503eb14cc563dd45416af2cd34dbb"], ["created_at", "2015-03-01 21:33:05.815931"], ["updated_at", "2015-03-01 21:33:05.815931"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (1.0ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "a0af86f0ac0f40539a69bd837d6905ed32879d1c80d76960bf1e6b8448dbffa4"], ["email", "demo@example.com"], ["salt", "7f6b9e849df79bd1d011ad355eabf75dede503eb14cc563dd45416af2cd34dbb"], ["created_at", "2015-03-01 21:33:05.848591"], ["updated_at", "2015-03-01 21:33:05.848591"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:33:05.873372' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "9a7a0fd868aba76191e8005122fba76a0bb69bf0eb6c67e0fd4a4a6f543895ab"], ["salt", "51f41b4236e267ef1ce91255c0e3e6c96c6f92f4cb4a9a113820dfeead595b14"], ["updated_at", "2015-03-01 21:33:05.886843"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.8ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.6ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 151.3ms Sent mail to demo@example.com (4.8ms) Date: Sun, 01 Mar 2015 23:33:06 +0200 From: from@example.com To: demo@example.com Message-ID: <54f38592953e_a37f3feb65c65be820928@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f3859286ec_a37f3feb65c65be820892"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f3859286ec_a37f3feb65c65be820892 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: thABhzeNDM ----==_mimepart_54f3859286ec_a37f3feb65c65be820892 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: thABhzeNDM ----==_mimepart_54f3859286ec_a37f3feb65c65be820892-- Redirected to http://test.host/my_forum/ Completed 302 Found in 190ms (ActiveRecord: 2.0ms) MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8854de060a36eef77ab17c12ba99b90c2c21850c5663b27921a5be1370591872"], ["email", "demo@example.com"], ["salt", "65fad6a8e8c004dbed0288a3e850d84f625ce66a27db9203500cb79a764091b2"], ["created_at", "2015-03-01 21:33:06.049678"], ["updated_at", "2015-03-01 21:33:06.049678"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:33:06.057091' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["password", "4a8146ad1e5d1990f633045bf15f862d91f1aca921348ab17dacb5cd75622ee3"], ["salt", "eb7c12214ae7ebdbec6cb20bdf8dfb0e8b8e46743d375ef384c5e424dd1b9fbf"], ["updated_at", "2015-03-01 21:34:11.497034"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 65448ms (ActiveRecord: 1.4ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "cd8c608e3a12376ce1542772f693c69ac89fce5f0a1a13f5feca132eeefed316"], ["email", "demo@example.com"], ["salt", "e715dc7b2e5874b8364e7b2c76189b47af58a4d4263c3988383a15e6042801bd"], ["created_at", "2015-03-01 21:34:30.852413"], ["updated_at", "2015-03-01 21:34:30.852413"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "cd8c608e3a12376ce1542772f693c69ac89fce5f0a1a13f5feca132eeefed316"], ["email", "demo@example.com"], ["salt", "e715dc7b2e5874b8364e7b2c76189b47af58a4d4263c3988383a15e6042801bd"], ["created_at", "2015-03-01 21:34:30.884384"], ["updated_at", "2015-03-01 21:34:30.884384"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:34:30.909175' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "d4054d88c41c12a90e445243408d1682e38234de3ee3c31010d0479661f83bef"], ["salt", "374867213cca959d3699c3854102ed14a59ee17a7b7495c5acc133b9fc0c1f4f"], ["updated_at", "2015-03-01 21:34:30.923640"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.1ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 141.2ms Sent mail to demo@example.com (4.5ms) Date: Sun, 01 Mar 2015 23:34:31 +0200 From: from@example.com To: demo@example.com Message-ID: <54f385e7f990_a38a3fd266065be450bb@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f385e7ecbe_a38a3fd266065be44962"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f385e7ecbe_a38a3fd266065be44962 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: FEMYReLfXq ----==_mimepart_54f385e7ecbe_a38a3fd266065be44962 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: FEMYReLfXq ----==_mimepart_54f385e7ecbe_a38a3fd266065be44962-- Redirected to http://test.host/my_forum/ Completed 302 Found in 179ms (ActiveRecord: 2.2ms) MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "76d4cae84bde65929d45f230d0bd010bdecc32cec614e56fc7ffb82b25994e61"], ["email", "demo@example.com"], ["salt", "c22cd3cc4cd1a6c4a2d4b771edac24d876244ed70136fc653c6be26cc3f7bc5f"], ["created_at", "2015-03-01 21:34:31.073339"], ["updated_at", "2015-03-01 21:34:31.073339"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:34:31.080344' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.2ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.5ms) UPDATE "my_forum_users" SET "email" = ?, "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["password", "dc19f58c33f79a40c951ecacde8a9b76ee93c1392b141976bef1aec16725a2e3"], ["salt", "1de2c1403db1fdcbbcb30b71c9c99b6e35f75823e32859a66b2c461d22e6eb4b"], ["updated_at", "2015-03-01 21:41:08.765841"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 397697ms (ActiveRecord: 1.8ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.8ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "72ab7c41e35997f4c762d7708f6e51cc11c8bd16a7c31d8fe93e299939ad97ce"], ["email", "demo@example.com"], ["salt", "c04ecf3b59f9b80e064864365bac1cc32868d27e2a264e2b36e0b308f3b0c1d3"], ["created_at", "2015-03-01 21:41:12.313188"], ["updated_at", "2015-03-01 21:41:12.313188"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 14ms (Views: 7.4ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "72ab7c41e35997f4c762d7708f6e51cc11c8bd16a7c31d8fe93e299939ad97ce"], ["email", "demo@example.com"], ["salt", "c04ecf3b59f9b80e064864365bac1cc32868d27e2a264e2b36e0b308f3b0c1d3"], ["created_at", "2015-03-01 21:41:12.349887"], ["updated_at", "2015-03-01 21:41:12.349887"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.2ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:41:12.387175' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "382c257d9ae5aad3c586fd623e56e75d03786587271db8ff56ecccbadced3a0c"], ["salt", "c0ef643dae108e3aea296e81410b8942f3fd47ff965d00a72e5422cd3ee65e30"], ["updated_at", "2015-03-01 21:41:12.401255"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.2ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.8ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 180.0ms Sent mail to demo@example.com (6.9ms) Date: Sun, 01 Mar 2015 23:41:12 +0200 From: from@example.com To: demo@example.com Message-ID: <54f387788e385_a3c93fe0a1061be03467e@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f387788d090_a3c93fe0a1061be034510"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f387788d090_a3c93fe0a1061be034510 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: cwAlrWFyyB ----==_mimepart_54f387788d090_a3c93fe0a1061be034510 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: cwAlrWFyyB ----==_mimepart_54f387788d090_a3c93fe0a1061be034510-- Redirected to http://test.host/my_forum/ Completed 302 Found in 233ms (ActiveRecord: 2.3ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "72ab7c41e35997f4c762d7708f6e51cc11c8bd16a7c31d8fe93e299939ad97ce"], ["email", "demo@example.com"], ["salt", "c04ecf3b59f9b80e064864365bac1cc32868d27e2a264e2b36e0b308f3b0c1d3"], ["created_at", "2015-03-01 21:41:12.591907"], ["updated_at", "2015-03-01 21:41:12.591907"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-01 21:41:12.597484' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "271eae69168bf15a4ebea4f92a171a7872b4517cb13245883d5c1c4aee9ed984"], ["password", "af6dbe15b917bb234de2c6f8fc2c7b862c553085767720622caf5c55adf17cdc"], ["updated_at", "2015-03-01 21:41:12.602949"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 11ms (ActiveRecord: 1.1ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.8ms) rollback transaction ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.4ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.6ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fd9c8bf9c35511b283e71b1479675c2cd631c0039957dbe0c8a08b41d1452232"], ["email", "demo@example.com"], ["salt", "e3aee98450f18b3ca82f72571b30022f49844b5401ad597cfb707f5205554e30"], ["created_at", "2015-03-02 07:18:15.325988"], ["updated_at", "2015-03-02 07:18:15.325988"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 7ms (ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 14ms (Views: 7.7ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fd9c8bf9c35511b283e71b1479675c2cd631c0039957dbe0c8a08b41d1452232"], ["email", "demo@example.com"], ["salt", "e3aee98450f18b3ca82f72571b30022f49844b5401ad597cfb707f5205554e30"], ["created_at", "2015-03-02 07:18:15.363362"], ["updated_at", "2015-03-02 07:18:15.363362"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.4ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.4ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:18:15.398582' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "ee1cbc6154030377ce748930d2ca0059e2e807600415fcd869c8541f4229041e"], ["salt", "16849af7b3b0116791150c05ace795a57ff19fa283d149d576d891dc81ee8339"], ["updated_at", "2015-03-02 07:18:15.413418"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.5ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.0ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 185.1ms Sent mail to demo@example.com (6.7ms) Date: Mon, 02 Mar 2015 09:18:15 +0200 From: from@example.com To: demo@example.com Message-ID: <54f40eb792430_a4ae3fd339857be43646e@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f40eb791337_a4ae3fd339857be43633b"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f40eb791337_a4ae3fd339857be43633b Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: fFiPqHsdzY ----==_mimepart_54f40eb791337_a4ae3fd339857be43633b Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: fFiPqHsdzY ----==_mimepart_54f40eb791337_a4ae3fd339857be43633b-- Redirected to http://test.host/my_forum/ Completed 302 Found in 237ms (ActiveRecord: 2.8ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fd9c8bf9c35511b283e71b1479675c2cd631c0039957dbe0c8a08b41d1452232"], ["email", "demo@example.com"], ["salt", "e3aee98450f18b3ca82f72571b30022f49844b5401ad597cfb707f5205554e30"], ["created_at", "2015-03-02 07:18:15.608632"], ["updated_at", "2015-03-02 07:18:15.608632"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:18:15.614444' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "9155019903ebd3f78799b59d7398a7e6d85eb149bc4339fe5a9ed965f9110d9c"], ["password", "b7fca18257ac857402a4f1b030a3ffd15578b137d8d6b9baa39e376e7facd815"], ["updated_at", "2015-03-02 07:18:15.620403"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 13ms (ActiveRecord: 1.1ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "590ebb97478b9b90e2d052f37eb7408b509a0aeeb3dbfb060da8d54fd181e6c3"], ["email", "demo@example.com"], ["salt", "ccba40d378fca79be63c7dee6a7b4939eb9dec5f6bd6c99e22a0a7367e2978d4"], ["created_at", "2015-03-02 07:18:20.427625"], ["updated_at", "2015-03-02 07:18:20.427625"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "590ebb97478b9b90e2d052f37eb7408b509a0aeeb3dbfb060da8d54fd181e6c3"], ["email", "demo@example.com"], ["salt", "ccba40d378fca79be63c7dee6a7b4939eb9dec5f6bd6c99e22a0a7367e2978d4"], ["created_at", "2015-03-02 07:18:20.459953"], ["updated_at", "2015-03-02 07:18:20.459953"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:18:20.484919' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "3179e5a1e5ad6d5c26c4452e080b65e6a24a4ea98b1f9d201218cded9e380c1f"], ["salt", "4df4a8b5bd332f2d7cffdb65bdf21a3823592b59d98ecde2c59e00532192442f"], ["updated_at", "2015-03-02 07:18:20.498833"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.1ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 159.6ms Sent mail to demo@example.com (5.3ms) Date: Mon, 02 Mar 2015 09:18:20 +0200 From: from@example.com To: demo@example.com Message-ID: <54f40ebca0c4d_a4af3fd4cd865bf09664b@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f40ebc9fd01_a4af3fd4cd865bf0965fa"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f40ebc9fd01_a4af3fd4cd865bf0965fa Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: RnkVsPKDrC ----==_mimepart_54f40ebc9fd01_a4af3fd4cd865bf0965fa Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: RnkVsPKDrC ----==_mimepart_54f40ebc9fd01_a4af3fd4cd865bf0965fa-- Redirected to http://test.host/my_forum/ Completed 302 Found in 199ms (ActiveRecord: 1.9ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "590ebb97478b9b90e2d052f37eb7408b509a0aeeb3dbfb060da8d54fd181e6c3"], ["email", "demo@example.com"], ["salt", "ccba40d378fca79be63c7dee6a7b4939eb9dec5f6bd6c99e22a0a7367e2978d4"], ["created_at", "2015-03-02 07:18:20.668149"], ["updated_at", "2015-03-02 07:18:20.668149"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.5ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:18:20.674374' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "a60f2315e65ef601ce3f266f9a6619345dedaed7a95aa8ff6c31be85806ad496"], ["password", "9f4216b248e650bb26cb704fa57c1a7b4886826279967e8891e3dfd20a11e33f"], ["updated_at", "2015-03-02 07:18:20.681139"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 14ms (ActiveRecord: 1.4ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "94eafeaf58239e29154805e11668e1c7bc54e2d65b7a719140c3acde92a1e2d7"], ["email", "demo@example.com"], ["salt", "bfe683debc3eb8cf5e8774f711e0047235546d5091bf1a126fbb8e7f204e34f9"], ["created_at", "2015-03-02 07:18:29.992979"], ["updated_at", "2015-03-02 07:18:29.992979"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "eca5884d6518fbbecac4f53f8fbe18d36fc7c04df49c211247355fe5a76ea668"], ["email", "demo@example.com"], ["salt", "d05c8acdaf1ce9733b755cdbf2076e1404270f96fbd7c818c542ac50e00e8ca0"], ["created_at", "2015-03-02 07:18:30.024790"], ["updated_at", "2015-03-02 07:18:30.024790"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:18:30.048922' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "922ba30bd2673510fa0e85a55e8d1a655029caf82d7c78e98c19d0c096b83a32"], ["salt", "5839f4e32322f635fa51da459bfe7e20399ab9783cf67abc4a412c667f468a33"], ["updated_at", "2015-03-02 07:18:30.061597"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 149.9ms Sent mail to demo@example.com (5.8ms) Date: Mon, 02 Mar 2015 09:18:30 +0200 From: from@example.com To: demo@example.com Message-ID: <54f40ec633d52_a4b33fd949465bec59462@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f40ec632cf5_a4b33fd949465bec5931"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f40ec632cf5_a4b33fd949465bec5931 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: vdLpXJlixw ----==_mimepart_54f40ec632cf5_a4b33fd949465bec5931 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: vdLpXJlixw ----==_mimepart_54f40ec632cf5_a4b33fd949465bec5931-- Redirected to http://test.host/my_forum/ Completed 302 Found in 188ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "eca5884d6518fbbecac4f53f8fbe18d36fc7c04df49c211247355fe5a76ea668"], ["email", "demo@example.com"], ["salt", "d05c8acdaf1ce9733b755cdbf2076e1404270f96fbd7c818c542ac50e00e8ca0"], ["created_at", "2015-03-02 07:18:30.222310"], ["updated_at", "2015-03-02 07:18:30.222310"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:18:30.229531' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "f3c62159f65bf07e6744f84585fab847150e9d661d6456272a1eae9f974f5097"], ["password", "7d87ef5b6ed5e8de7d7d814986b9af884a4b0b6eb3a9f32d45fb9981cca4952c"], ["updated_at", "2015-03-02 07:18:49.854608"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["salt", "5b2c2c1ec92625a4119644a5908d957b017605914c6d35081ca0280e6abebf64"], ["password", "7dbd535450f9b27632aab9925c632d8edf2f81c34b1d929cdf223a4000b841e8"], ["updated_at", "2015-03-02 07:20:51.025956"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 140805ms (ActiveRecord: 2.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "e12eeabc56133fe895a6aa557f2d257028fa03cd5965ab3bc93d9995af0db111"], ["email", "demo@example.com"], ["salt", "96fea550be68a5ad7e4fe880db22238ff19d6bb9e3b68da6c446bd4765c459b7"], ["created_at", "2015-03-02 07:20:53.562344"], ["updated_at", "2015-03-02 07:20:53.562344"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.5ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "e12eeabc56133fe895a6aa557f2d257028fa03cd5965ab3bc93d9995af0db111"], ["email", "demo@example.com"], ["salt", "96fea550be68a5ad7e4fe880db22238ff19d6bb9e3b68da6c446bd4765c459b7"], ["created_at", "2015-03-02 07:20:53.594504"], ["updated_at", "2015-03-02 07:20:53.594504"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:20:53.618752' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.2ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "e444095f40d927c1cf57e3916eb01abc2b7fd5785b3363d62b35c1bb6fac2df7"], ["salt", "abca09621b36dd302a5216a8118be1bf64846bc6ea68d95561a065d0272c74f2"], ["updated_at", "2015-03-02 07:20:53.631936"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.0ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 150.5ms Sent mail to demo@example.com (4.9ms) Date: Mon, 02 Mar 2015 09:20:53 +0200 From: from@example.com To: demo@example.com Message-ID: <54f40f55bef18_a4cb3fea31465be41288b@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f40f55be26a_a4cb3fea31465be412794"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f40f55be26a_a4cb3fea31465be412794 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: doLIaflwCw ----==_mimepart_54f40f55be26a_a4cb3fea31465be412794 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: doLIaflwCw ----==_mimepart_54f40f55be26a_a4cb3fea31465be412794-- Redirected to http://test.host/my_forum/ Completed 302 Found in 188ms (ActiveRecord: 2.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "e12eeabc56133fe895a6aa557f2d257028fa03cd5965ab3bc93d9995af0db111"], ["email", "demo@example.com"], ["salt", "96fea550be68a5ad7e4fe880db22238ff19d6bb9e3b68da6c446bd4765c459b7"], ["created_at", "2015-03-02 07:20:53.792437"], ["updated_at", "2015-03-02 07:20:53.792437"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:20:53.799715' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "c483e644bd570624755844628666030f388d9b58b09c4ed7b1c37d7103f96792"], ["password", "95e40170b0c3e736e56966a8a5279052555f6fdec13f082056d2b9eebdd1ef5a"], ["updated_at", "2015-03-02 07:20:54.635119"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 844ms (ActiveRecord: 1.4ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "cdab51000647b46ae715cd53fb18b7aac83697b7007cdedd39e779e0b11b7c5a"], ["email", "demo@example.com"], ["salt", "d9c192a6cffec8241177848c72a6aa20e50a8a363edc7ba408cf6ded863259c8"], ["created_at", "2015-03-02 07:20:58.190770"], ["updated_at", "2015-03-02 07:20:58.190770"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.9ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.4ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "cdab51000647b46ae715cd53fb18b7aac83697b7007cdedd39e779e0b11b7c5a"], ["email", "demo@example.com"], ["salt", "d9c192a6cffec8241177848c72a6aa20e50a8a363edc7ba408cf6ded863259c8"], ["created_at", "2015-03-02 07:20:58.226031"], ["updated_at", "2015-03-02 07:20:58.226031"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:20:58.252607' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "81ba9e7f8c4058b632b02faeb185dc9de26eeee8e6630743f043deaac78f3e6f"], ["salt", "7aef099102082a9537e3277befd86d2d7260955bd9eb9a95e3474e8843ac19be"], ["updated_at", "2015-03-02 07:20:58.267188"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 144.7ms Sent mail to demo@example.com (4.5ms) Date: Mon, 02 Mar 2015 09:20:58 +0200 From: from@example.com To: demo@example.com Message-ID: <54f40f5a64863_a4cd3feb15465bf0718d8@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f40f5a63bed_a4cd3feb15465bf0717c"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f40f5a63bed_a4cd3feb15465bf0717c Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: KlhWGxQznl ----==_mimepart_54f40f5a63bed_a4cd3feb15465bf0717c Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: KlhWGxQznl ----==_mimepart_54f40f5a63bed_a4cd3feb15465bf0717c-- Redirected to http://test.host/my_forum/ Completed 302 Found in 187ms (ActiveRecord: 2.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "cdab51000647b46ae715cd53fb18b7aac83697b7007cdedd39e779e0b11b7c5a"], ["email", "demo@example.com"], ["salt", "d9c192a6cffec8241177848c72a6aa20e50a8a363edc7ba408cf6ded863259c8"], ["created_at", "2015-03-02 07:20:58.421524"], ["updated_at", "2015-03-02 07:20:58.421524"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:20:58.428008' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "6892f8ad98f76acabca46766109133236f3b612ed6af39d7c464fa8065dc0b93"], ["password", "9ec60cbe6c8462a3e07712a9106d26a941ae167314943509f76c59e95da8ae1f"], ["updated_at", "2015-03-02 07:21:19.487363"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 21066ms (ActiveRecord: 1.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "61f3a85e2e252b988ed93269c2303b20fb689531d54a634428863a0bb275b091"], ["email", "demo@example.com"], ["salt", "dfad5390a136912ac418dc88e31428d7d768950b642e674df13dafba380b2a35"], ["created_at", "2015-03-02 07:21:23.052643"], ["updated_at", "2015-03-02 07:21:23.052643"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (1.1ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 13ms (Views: 6.6ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "53d7c000b0f45e67440e7bb90dc8936710bed871836cfcb8c8015684eeea1072"], ["email", "demo@example.com"], ["salt", "c8a590c1c9f784a55f599f08a153537a5c4d4723384cc577ac72a5aa0aa1b4ec"], ["created_at", "2015-03-02 07:22:14.688244"], ["updated_at", "2015-03-02 07:22:14.688244"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:22:14.716821' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "5e7353a236fb09044ace81a5383f24a886b9b7e26dbff2cbaa391792f1a02b31"], ["salt", "f25886224bc34e6f839ad74268554d5b163f3a5d9b45384a041577aadef68244"], ["updated_at", "2015-03-02 07:22:15.344141"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.8ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 786.2ms Sent mail to demo@example.com (4.6ms) Date: Mon, 02 Mar 2015 09:22:15 +0200 From: from@example.com To: demo@example.com Message-ID: <54f40fa77e3e0_a4d73fd99dc65be0818af@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f40fa77d6ae_a4d73fd99dc65be0817e9"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f40fa77d6ae_a4d73fd99dc65be0817e9 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: ijgJFIVNKL ----==_mimepart_54f40fa77d6ae_a4d73fd99dc65be0817e9 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: ijgJFIVNKL ----==_mimepart_54f40fa77d6ae_a4d73fd99dc65be0817e9-- Redirected to http://test.host/my_forum/ Completed 302 Found in 827ms (ActiveRecord: 2.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "e9de9f91f4d7873423bd23945e9494b4c7b0cd0a6f9acc5d700eeba8c25ccc10"], ["email", "demo@example.com"], ["salt", "a4d311ff31a7a4c9fd82411b64d58160ec1f56ef8bae948da492d1f5f7943afe"], ["created_at", "2015-03-02 07:22:16.071546"], ["updated_at", "2015-03-02 07:22:16.071546"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:22:16.079884' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "9f1d98bbc20e9659c8158781309ed720cc2d8ab7006f10a1895c577aede15235"], ["password", "3d4feac2c76a1420edf17c673ec794ba6be781b7a7b6619eeec69fe8567f586d"], ["updated_at", "2015-03-02 07:22:17.735093"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 1663ms (ActiveRecord: 1.3ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "89e5f7fb5ddbf9c2f6a8dc482af546324be61ade86499f5bd30fbe1b4b302dc0"], ["email", "demo@example.com"], ["salt", "8806e9fc6b4769ab224654b252a7e39e6621adec20d271481d0bc9761f2ec198"], ["created_at", "2015-03-02 07:23:41.091596"], ["updated_at", "2015-03-02 07:23:41.091596"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:23:41.126534' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "ad102e59dae8225232d5f022a509dc4a6ef2cd92fe970066f373dd43954c416f"], ["password", "a5113d64545caa9e81824fc9b782e08d1b8e7e457d677ab13658e5afe75c9243"], ["updated_at", "2015-03-02 07:23:43.473439"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 2380ms (ActiveRecord: 2.4ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", nil]] SQL (0.5ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "02bc966daca2f5517ea19d90ba963c83258a68a0b8e84443b6ca6e90527e5778"], ["email", "demo@example.com"], ["salt", "8a0449ea26d3292e917925c6c4bda25dc39fe094ec983eb1fa32bda02813bd60"], ["created_at", "2015-03-02 07:24:31.743433"], ["updated_at", "2015-03-02 07:24:31.743433"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:24:31.777753' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'abc@google.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.2ms) UPDATE "my_forum_users" SET "email" = ?, "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["email", "abc@google.com"], ["salt", "ee698c94ef4934ad13217431ded6b8c2c7b2c5589838cb796761974e37db2aa7"], ["password", "c3ab7fcf9201a95a6709d39ef13194bead3a63d292c0e94249a7a54990106fc0"], ["updated_at", "2015-03-02 07:24:33.745140"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 1998ms (ActiveRecord: 2.5ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "495403cf803b6fd504e6f98c1bb4d5d7f5a77e4eb57d806d39704445bf48a4fe"], ["email", "demo@example.com"], ["salt", "503e6bb5d889a129faf4d347496fa18bc44d8803121512ef27f8a6045941f065"], ["created_at", "2015-03-02 07:31:42.402112"], ["updated_at", "2015-03-02 07:31:42.402112"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:31:42.434371' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.2ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 1358ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "14aead5b698416232a5bc7af208e0d5b45a6fcda68f5096499d5fe7c572ca3af"], ["email", "demo@example.com"], ["salt", "83417dd1b422275f5fd81a7c52c621e478ec02fa1a14d38465f1dc5a2952c378"], ["created_at", "2015-03-02 07:33:51.643587"], ["updated_at", "2015-03-02 07:33:51.643587"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:33:51.674732' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 33ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "14aead5b698416232a5bc7af208e0d5b45a6fcda68f5096499d5fe7c572ca3af"], ["email", "demo@example.com"], ["salt", "83417dd1b422275f5fd81a7c52c621e478ec02fa1a14d38465f1dc5a2952c378"], ["created_at", "2015-03-02 07:33:51.686488"], ["updated_at", "2015-03-02 07:33:51.686488"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:33:51.692562' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 8ms (ActiveRecord: 0.8ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "dced2d8217e5bf693ca3196e029b980a23770b6a777635b1b0b5942cfc6ebdc2"], ["email", "demo@example.com"], ["salt", "18391abda060eb722cb894bb545bd7e9462c6bd766bfd4805ff70f5979fb8f47"], ["created_at", "2015-03-02 07:34:02.686899"], ["updated_at", "2015-03-02 07:34:02.686899"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.1ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:34:02.718040' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 30ms (ActiveRecord: 2.0ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "c238a93d7c21fa8556b73743e31d5dce98aa53150f4de37d004509782380197f"], ["email", "demo@example.com"], ["salt", "21db7b812282d84661dadf253e7113d2e77dec0fa528777e3ecb348c4397cfdf"], ["created_at", "2015-03-02 07:34:24.021291"], ["updated_at", "2015-03-02 07:34:24.021291"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:34:24.055207' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 6478ms (ActiveRecord: 2.2ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.3ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.4ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8f192f12db3af227be9a15bd0c6abae7c485068304b0334229f9c5e06da77a4b"], ["email", "demo@example.com"], ["salt", "160835667359d79518c00266f6eab14f61bb9e6c8c408b3798e8a630ad06f8c9"], ["created_at", "2015-03-02 07:36:11.238845"], ["updated_at", "2015-03-02 07:36:11.238845"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.1ms)  (0.4ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8f192f12db3af227be9a15bd0c6abae7c485068304b0334229f9c5e06da77a4b"], ["email", "demo@example.com"], ["salt", "160835667359d79518c00266f6eab14f61bb9e6c8c408b3798e8a630ad06f8c9"], ["created_at", "2015-03-02 07:36:11.272038"], ["updated_at", "2015-03-02 07:36:11.272038"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:11.299242' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "85b0bc1c84ce4b49b04ea6b3e8979bb78adbc5c0fb342830342cbfac59be37f1"], ["salt", "e39a1bb74c7fe880705857aad4f3d3ba9efd98edc04f6f9d2955941fca3f8a95"], ["updated_at", "2015-03-02 07:36:11.311528"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.6ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 133.5ms Sent mail to demo@example.com (4.3ms) Date: Mon, 02 Mar 2015 09:36:11 +0200 From: from@example.com To: demo@example.com Message-ID: <54f412eb6caaa_a5863fdcc8865be8324f0@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f412eb6beda_a5863fdcc8865be832388"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f412eb6beda_a5863fdcc8865be832388 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: QyDKprmIoA ----==_mimepart_54f412eb6beda_a5863fdcc8865be832388 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: QyDKprmIoA ----==_mimepart_54f412eb6beda_a5863fdcc8865be832388-- Redirected to http://test.host/my_forum/ Completed 302 Found in 173ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "8f192f12db3af227be9a15bd0c6abae7c485068304b0334229f9c5e06da77a4b"], ["email", "demo@example.com"], ["salt", "160835667359d79518c00266f6eab14f61bb9e6c8c408b3798e8a630ad06f8c9"], ["created_at", "2015-03-02 07:36:11.455737"], ["updated_at", "2015-03-02 07:36:11.455737"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:11.463018' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 3168ms (ActiveRecord: 1.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.5ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "fd5a9592860036a841a1757da335a5d54ddd48c2fa553ecedf3bf9f3cd46fe33"], ["email", "demo@example.com"], ["salt", "a3fd019b0811eacb0d4395608662d0b688d30311d3bf63cc4aa9406e1059ee42"], ["created_at", "2015-03-02 07:36:14.635917"], ["updated_at", "2015-03-02 07:36:14.635917"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:14.644645' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 1169ms (ActiveRecord: 1.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "dfa249e37c753d925c4db6fa21ac6c3a84b8f0304cb818817d2529042172d2b0"], ["email", "demo@example.com"], ["salt", "db82b88559bc7cd9759162945ad07dd0859ddfb77d1c436c2be4acd5e81c3048"], ["created_at", "2015-03-02 07:36:15.817104"], ["updated_at", "2015-03-02 07:36:15.817104"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:15.828092' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["salt", "708dd6b6ac440c226de7f109c2c68a8e483e5a459f6835933d358fdb7921ddf8"], ["password", "696aa9e6a521211e90d7a1d0b206c8d574892e686d0997d2db77e7c5cef462f7"], ["updated_at", "2015-03-02 07:36:16.951136"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 1133ms (ActiveRecord: 1.7ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0eb2626fd00fff1b82ee76da12abb068ff310e15aa9efecfe8d0c97c287b7f8b"], ["email", "demo@example.com"], ["salt", "8ad9e822242dc4c10f9750781e512b2eb86850ca957cb317d5c56ad771e9b586"], ["created_at", "2015-03-02 07:36:38.098417"], ["updated_at", "2015-03-02 07:36:38.098417"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 6ms (ActiveRecord: 0.2ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.7ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0eb2626fd00fff1b82ee76da12abb068ff310e15aa9efecfe8d0c97c287b7f8b"], ["email", "demo@example.com"], ["salt", "8ad9e822242dc4c10f9750781e512b2eb86850ca957cb317d5c56ad771e9b586"], ["created_at", "2015-03-02 07:36:38.133816"], ["updated_at", "2015-03-02 07:36:38.133816"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:38.162420' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "5b7a9a705fcc879c7c66f3f4cc91f513c8531ff57274126c3c672b5c68c4719e"], ["salt", "28abc1d3e3ada9bd915a4a65853ccbb26ff0bec4fa1efc65f454cb2dff28f544"], ["updated_at", "2015-03-02 07:36:38.175247"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 159.0ms Sent mail to demo@example.com (5.6ms) Date: Mon, 02 Mar 2015 09:36:38 +0200 From: from@example.com To: demo@example.com Message-ID: <54f413065175c_a58e3fcca9465be4480f8@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f4130650b8f_a58e3fcca9465be4479ac"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f4130650b8f_a58e3fcca9465be4479ac Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: beJxuZtafD ----==_mimepart_54f4130650b8f_a58e3fcca9465be4479ac Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: beJxuZtafD ----==_mimepart_54f4130650b8f_a58e3fcca9465be4479ac-- Redirected to http://test.host/my_forum/ Completed 302 Found in 201ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0eb2626fd00fff1b82ee76da12abb068ff310e15aa9efecfe8d0c97c287b7f8b"], ["email", "demo@example.com"], ["salt", "8ad9e822242dc4c10f9750781e512b2eb86850ca957cb317d5c56ad771e9b586"], ["created_at", "2015-03-02 07:36:38.344582"], ["updated_at", "2015-03-02 07:36:38.344582"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:38.350403' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 9ms (ActiveRecord: 0.9ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.7ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0eb2626fd00fff1b82ee76da12abb068ff310e15aa9efecfe8d0c97c287b7f8b"], ["email", "demo@example.com"], ["salt", "8ad9e822242dc4c10f9750781e512b2eb86850ca957cb317d5c56ad771e9b586"], ["created_at", "2015-03-02 07:36:38.361749"], ["updated_at", "2015-03-02 07:36:38.361749"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:38.369946' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 11ms (ActiveRecord: 1.0ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "0eb2626fd00fff1b82ee76da12abb068ff310e15aa9efecfe8d0c97c287b7f8b"], ["email", "demo@example.com"], ["salt", "8ad9e822242dc4c10f9750781e512b2eb86850ca957cb317d5c56ad771e9b586"], ["created_at", "2015-03-02 07:36:38.382292"], ["updated_at", "2015-03-02 07:36:38.382292"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.2ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:36:38.390260' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["salt", "e5d5f710b907051a6b06e4142449301edb19f197b6c9cb500a8bc91a74ca60ae"], ["password", "08c9ab141a51384c07efaf0e7a34319626e5fd27e94ab46f8dd0c42424cae3f9"], ["updated_at", "2015-03-02 07:36:38.398637"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 18ms (ActiveRecord: 1.7ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.7ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.6ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "6bff6f9a6a90d3c4f01cbf69151a0f0ee39599f77b220b74eb6a08316010d5c7"], ["email", "demo@example.com"], ["salt", "a04300dcfc4ca9c5f13761325ff3820246e5e9f2aa01833d144de835932157e1"], ["created_at", "2015-03-02 07:37:42.370594"], ["updated_at", "2015-03-02 07:37:42.370594"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.2ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:37:42.404870' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "salt" = ?, "password" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["salt", "d873643064218e4d7536591f75e6bbda69609b9d89cbf3749e4909466399461a"], ["password", "87b149d5ece88e857fc7540ef25e4ca5a86cd373cef72622ab61918ecf556dbf"], ["updated_at", "2015-03-02 07:38:08.587615"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 158543ms (ActiveRecord: 3.8ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "256e5609e79a6ce1c674878dc3b6d1c76e4ab21e09ed9e1d30c0a746baf959cf"], ["email", "demo@example.com"], ["salt", "3c4526f4ae7eb6458cc25c7d0649fcb0403946696260a9b5d64cfa0b3621ac2a"], ["created_at", "2015-03-02 07:40:23.426198"], ["updated_at", "2015-03-02 07:40:23.426198"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (1.0ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:40:23.458572' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "fcf052a4172973ee5bd596526fb535340f05068e473e87e4ab3e2b311d7390a8"], ["salt", "7a07efd5eecaec9c642733ec161dd5b5eff2d7f5a92f8120fb727faf4de11dd5"], ["updated_at", "2015-03-02 07:42:06.924850"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 144609ms (ActiveRecord: 3.7ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.2ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "458e5985a3193565b8ed39bdf6ab620e733cc87ea1cdcd84a86738b4c760bc6d"], ["email", "demo@example.com"], ["salt", "524938807aab308efb3a29b3fca0615c4418a4c209ddf022a7c66484a95db4c6"], ["created_at", "2015-03-02 07:42:50.603219"], ["updated_at", "2015-03-02 07:42:50.603219"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.9ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:42:50.633462' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "8491ca9c00d1e5cf5dc28c9245fb2e4e5f31ddb16071587488e0503280abe864"], ["salt", "3ef2491e8381fbca7b3616f52a9d0603ae6133bd3fa5ec2cc8f221a5cd85561a"], ["updated_at", "2015-03-02 07:42:50.640528"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 34ms (ActiveRecord: 2.2ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "d544e67a29a0f6b775b1d4302380fde6b460cab406c7b58447e3786ba28aa99b"], ["email", "demo@example.com"], ["salt", "e10cbe19c4a5749427381dede3e02c3ca532f6c2927afd61ffd523e7d58ed8a6"], ["created_at", "2015-03-02 07:42:55.153514"], ["updated_at", "2015-03-02 07:42:55.153514"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.3ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 11ms (Views: 6.6ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "d544e67a29a0f6b775b1d4302380fde6b460cab406c7b58447e3786ba28aa99b"], ["email", "demo@example.com"], ["salt", "e10cbe19c4a5749427381dede3e02c3ca532f6c2927afd61ffd523e7d58ed8a6"], ["created_at", "2015-03-02 07:42:55.184305"], ["updated_at", "2015-03-02 07:42:55.184305"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:42:55.208372' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "3de4cad340e1b93fdc2c229c23c19e287caf17d4c75d21eda69e7dda432a9619"], ["salt", "7a9b9de696574b315bc2cc41929607267abfb9888b89a73f5280fe488e3f9294"], ["updated_at", "2015-03-02 07:42:55.221157"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (0.9ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 136.5ms Sent mail to demo@example.com (5.7ms) Date: Mon, 02 Mar 2015 09:42:55 +0200 From: from@example.com To: demo@example.com Message-ID: <54f4147f574a3_a5e93fe6b4465bec395ad@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f4147f566e9_a5e93fe6b4465bec3948c"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f4147f566e9_a5e93fe6b4465bec3948c Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: wxPwWSNRuI ----==_mimepart_54f4147f566e9_a5e93fe6b4465bec3948c Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: wxPwWSNRuI ----==_mimepart_54f4147f566e9_a5e93fe6b4465bec3948c-- Redirected to http://test.host/my_forum/ Completed 302 Found in 175ms (ActiveRecord: 1.9ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.0ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "d544e67a29a0f6b775b1d4302380fde6b460cab406c7b58447e3786ba28aa99b"], ["email", "demo@example.com"], ["salt", "e10cbe19c4a5749427381dede3e02c3ca532f6c2927afd61ffd523e7d58ed8a6"], ["created_at", "2015-03-02 07:42:55.368619"], ["updated_at", "2015-03-02 07:42:55.368619"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.4ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:42:55.376178' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 11ms (ActiveRecord: 1.0ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "d544e67a29a0f6b775b1d4302380fde6b460cab406c7b58447e3786ba28aa99b"], ["email", "demo@example.com"], ["salt", "e10cbe19c4a5749427381dede3e02c3ca532f6c2927afd61ffd523e7d58ed8a6"], ["created_at", "2015-03-02 07:42:55.387219"], ["updated_at", "2015-03-02 07:42:55.387219"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:42:55.393160' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 9ms (ActiveRecord: 0.8ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "d544e67a29a0f6b775b1d4302380fde6b460cab406c7b58447e3786ba28aa99b"], ["email", "demo@example.com"], ["salt", "e10cbe19c4a5749427381dede3e02c3ca532f6c2927afd61ffd523e7d58ed8a6"], ["created_at", "2015-03-02 07:42:55.403602"], ["updated_at", "2015-03-02 07:42:55.403602"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:42:55.410140' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.0ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "a3ec1a81beb2f2f8dcdd4a927a2f0ea7887fcc2e3e1d9a4aa3f91e330cfad217"], ["salt", "83dd79574a8a79c7cd0521e463e52b48b7d8adb9f47e92ac4f8dcddfe065cc7d"], ["updated_at", "2015-03-02 07:42:55.420262"], ["id", 2]]  (0.1ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 19ms (ActiveRecord: 1.4ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1dd3e7e9b447dc92595987b404ceeb55b557a641bdbd890a12011362469a6034"], ["email", "demo@example.com"], ["salt", "4b1f09d4d8c8dd5e8f07eb9d1d8a111286977e712972ba05c629fef4ec4c6221"], ["created_at", "2015-03-02 07:45:40.384597"], ["updated_at", "2015-03-02 07:45:40.384597"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.8ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.4ms) Completed 200 OK in 17ms (Views: 12.6ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.4ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.5ms)  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1dd3e7e9b447dc92595987b404ceeb55b557a641bdbd890a12011362469a6034"], ["email", "demo@example.com"], ["salt", "4b1f09d4d8c8dd5e8f07eb9d1d8a111286977e712972ba05c629fef4ec4c6221"], ["created_at", "2015-03-02 07:45:40.426272"], ["updated_at", "2015-03-02 07:45:40.426272"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.1ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.8ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:45:40.452130' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "5ae4a8fb9057a48c248e8c5167f7b98fe34f0e5fce90fef02653a97d39e09422"], ["salt", "6b4379c493d5f2bf329f38466861a0e3e3f5f53c40e6db7c5a2e2a315bd4fdb1"], ["updated_at", "2015-03-02 07:45:40.464710"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.0ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (0.7ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 144.9ms Sent mail to demo@example.com (4.1ms) Date: Mon, 02 Mar 2015 09:45:40 +0200 From: from@example.com To: demo@example.com Message-ID: <54f4152494d86_a6033ffd9d865be8509d4@vomelchenko.tpeo.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_54f415249422c_a6033ffd9d865be85081d"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_54f415249422c_a6033ffd9d865be85081d Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: WzFJhYxBNG ----==_mimepart_54f415249422c_a6033ffd9d865be85081d Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: WzFJhYxBNG ----==_mimepart_54f415249422c_a6033ffd9d865be85081d-- Redirected to http://test.host/my_forum/ Completed 302 Found in 183ms (ActiveRecord: 2.1ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (1.3ms) rollback transaction  (0.1ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1dd3e7e9b447dc92595987b404ceeb55b557a641bdbd890a12011362469a6034"], ["email", "demo@example.com"], ["salt", "4b1f09d4d8c8dd5e8f07eb9d1d8a111286977e712972ba05c629fef4ec4c6221"], ["created_at", "2015-03-02 07:45:40.618738"], ["updated_at", "2015-03-02 07:45:40.618738"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:45:40.626269' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 10ms (ActiveRecord: 0.9ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1dd3e7e9b447dc92595987b404ceeb55b557a641bdbd890a12011362469a6034"], ["email", "demo@example.com"], ["salt", "4b1f09d4d8c8dd5e8f07eb9d1d8a111286977e712972ba05c629fef4ec4c6221"], ["created_at", "2015-03-02 07:45:40.636323"], ["updated_at", "2015-03-02 07:45:40.636323"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:45:40.643378' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 10ms (ActiveRecord: 1.0ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.5ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "1dd3e7e9b447dc92595987b404ceeb55b557a641bdbd890a12011362469a6034"], ["email", "demo@example.com"], ["salt", "4b1f09d4d8c8dd5e8f07eb9d1d8a111286977e712972ba05c629fef4ec4c6221"], ["created_at", "2015-03-02 07:45:40.654343"], ["updated_at", "2015-03-02 07:45:40.654343"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-02 07:45:40.660935' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.0ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "1b9e6e3c2b743afab5a8fb61fce7125e0c997c3c960339dc56d2f194e7c02c2b"], ["salt", "f643ce4fa49fa65719109791cc2e0be764549cb9c5ab184464cf7b57ba938106"], ["updated_at", "2015-03-02 07:45:40.666049"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 12ms (ActiveRecord: 1.2ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#create as HTML Parameters: {"user"=>{"email"=>"new_user@google.com", "password"=>"[FILTERED]", "login"=>"new_user"}} MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'new_user' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'new_user@google.com' LIMIT 1  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'new_user' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'new_user@google.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "email", "password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "new_user"], ["email", "new_user@google.com"], ["password", "4828f293f59ffba54bac151ebaf46e6721031811d1ca0e9a7b77f20f40289a55"], ["salt", "309f1eeb08fe3650a537f3e70dc278a0114875752ca572e94c4e17a33a378042"], ["created_at", "2015-03-02 07:45:40.684853"], ["updated_at", "2015-03-02 07:45:40.684853"]] SQL (0.1ms) INSERT INTO "my_forum_user_group_links" ("user_group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_group_id", 2], ["user_id", 2], ["created_at", "2015-03-02 07:45:40.686015"], ["updated_at", "2015-03-02 07:45:40.686015"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/my_forum/ Completed 302 Found in 13ms (ActiveRecord: 0.7ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "new_user@google.com"]]  (0.5ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.5ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "59eed2d294b0268bbc5d59752fde1df0dd39667ff160f315f6160052516eea1d"], ["email", "demo@example.com"], ["salt", "3210fd5e71b5186cdf7422b113b4e7d68adc4be54ebf97876e6b1b5a9f4c0abe"], ["created_at", "2015-03-25 13:11:14.769189"], ["updated_at", "2015-03-25 13:11:14.769189"]]  (0.1ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"demo", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "demo"]] Redirected to http://test.host/my_forum/ Completed 302 Found in 5ms (ActiveRecord: 0.1ms)  (0.5ms) rollback transaction  (0.1ms) begin transaction Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"", "password"=>"[FILTERED]"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", ""]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.2ms) Completed 200 OK in 15ms (Views: 9.3ms | ActiveRecord: 0.1ms) Processing by MyForum::UsersController#signin as HTML Parameters: {"user"=>{"login"=>"wrong", "password"=>"[FILTERED]"}} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."login" = ? LIMIT 1 [["login", "wrong"]] Rendered /Users/vint/rails/my_forum/app/views/my_forum/users/signin.haml within layouts/my_forum/application (0.1ms) Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.2ms)  (0.1ms) rollback transaction  (0.0ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "59eed2d294b0268bbc5d59752fde1df0dd39667ff160f315f6160052516eea1d"], ["email", "demo@example.com"], ["salt", "3210fd5e71b5186cdf7422b113b4e7d68adc4be54ebf97876e6b1b5a9f4c0abe"], ["created_at", "2015-03-25 13:11:14.807991"], ["updated_at", "2015-03-25 13:11:14.807991"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#forgot_password as HTML Parameters: {"user"=>{"email"=>"demo@example.com"}} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroup Load (0.2ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Guests"]] MyForum::UserGroup Load (0.0ms) SELECT "my_forum_user_groups".* FROM "my_forum_user_groups" WHERE "my_forum_user_groups"."name" = ? LIMIT 1 [["name", "Member"]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-25 13:11:14.839725' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "demo@example.com"]]  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.1ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "a3d80eb9cab2f98bc2b973a1eb155fab0110e550a4583fa533516a0fd16e1886"], ["salt", "dfab96978915f8323aa5fd1154a7b88adc2fae56f6a4c4a9f492fa08c568eb86"], ["updated_at", "2015-03-25 13:11:14.855065"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.text.erb within layouts/mailer (1.2ms) Rendered /Users/vint/rails/my_forum/app/views/my_forum/user_mailer/reset_password_email.haml within layouts/mailer (1.0ms) MyForum::UserMailer#reset_password_email: processed outbound mail in 170.7ms Sent mail to demo@example.com (7.5ms) Date: Wed, 25 Mar 2015 15:11:15 +0200 From: from@example.com To: demo@example.com Message-ID: <5512b3f36b23_bfb83feff08601f8653fb@Vitalys-MacBook-Pro.local.mail> Subject: vaz.od.ua - New password Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_5512b3f35743_bfb83feff08601f86528a"; charset=UTF-8 Content-Transfer-Encoding: 7bit ----==_mimepart_5512b3f35743_bfb83feff08601f86528a Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: TXJihBJPbZ ----==_mimepart_5512b3f35743_bfb83feff08601f86528a Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Your new password is: TXJihBJPbZ ----==_mimepart_5512b3f35743_bfb83feff08601f86528a-- Redirected to http://test.host/my_forum/ Completed 302 Found in 221ms (ActiveRecord: 1.5ms) MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "f0abae8ead75625e0d6689e95400dec999d1d615a8cb6b177c14ec47ff481bb4"], ["email", "demo@example.com"], ["salt", "03a41672ecd7b4bb0b64a0520762948e16083f3960f9c2f404cbdb60ef7ae67d"], ["created_at", "2015-03-25 13:11:15.037111"], ["updated_at", "2015-03-25 13:11:15.037111"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-25 13:11:15.042760' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.1ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 8ms (ActiveRecord: 0.8ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.1ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "f0abae8ead75625e0d6689e95400dec999d1d615a8cb6b177c14ec47ff481bb4"], ["email", "demo@example.com"], ["salt", "03a41672ecd7b4bb0b64a0520762948e16083f3960f9c2f404cbdb60ef7ae67d"], ["created_at", "2015-03-25 13:11:15.052551"], ["updated_at", "2015-03-25 13:11:15.052551"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-25 13:11:15.057923' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 8ms (ActiveRecord: 0.7ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.7ms) rollback transaction  (0.0ms) begin transaction  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'demo' LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'demo@example.com' LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("login", "password", "email", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "demo"], ["password", "f0abae8ead75625e0d6689e95400dec999d1d615a8cb6b177c14ec47ff481bb4"], ["email", "demo@example.com"], ["salt", "03a41672ecd7b4bb0b64a0520762948e16083f3960f9c2f404cbdb60ef7ae67d"], ["created_at", "2015-03-25 13:11:15.067971"], ["updated_at", "2015-03-25 13:11:15.067971"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] Processing by MyForum::UsersController#update as HTML Parameters: {"user"=>{"email"=>"abc@google.com", "password"=>"[FILTERED]", "new_password"=>"[FILTERED]"}, "id"=>"2"} MyForum::User Load (0.1ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 SQL (0.3ms) UPDATE "my_forum_users" SET "updated_at" = '2015-03-25 13:11:15.075810' WHERE "my_forum_users"."id" = ? [["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.1ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: new_password MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2)  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."login" = 'demo' AND "my_forum_users"."id" != 2) LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE ("my_forum_users"."email" = 'demo@example.com' AND "my_forum_users"."id" != 2) LIMIT 1 SQL (0.0ms) UPDATE "my_forum_users" SET "password" = ?, "salt" = ?, "updated_at" = ? WHERE "my_forum_users"."id" = ? [["password", "2dff05801bb836396cb4645dd7a25d06fa16560a189bff9a945aff9b0cc9987f"], ["salt", "8f0d8702f17e9bcbee5c0e7649f1aebcff4d93f95a7ef5e1bd837fcecac97894"], ["updated_at", "2015-03-25 13:11:15.081280"], ["id", 2]]  (0.0ms) RELEASE SAVEPOINT active_record_1 MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Unpermitted parameter: password SQL (0.0ms) UPDATE "my_forum_users" SET "email" = 'abc@google.com' WHERE "my_forum_users"."id" = ? [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? ORDER BY "my_forum_users"."id" ASC LIMIT 1 [["id", 2]] MyForum::UserGroupLink Load (0.0ms) SELECT "my_forum_user_group_links".* FROM "my_forum_user_group_links" WHERE "my_forum_user_group_links"."user_id" IN (2) Redirected to http://test.host/my_forum/users/2/edit Completed 302 Found in 13ms (ActiveRecord: 1.2ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]] MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."id" = ? LIMIT 1 [["id", 2]]  (0.6ms) rollback transaction  (0.0ms) begin transaction Processing by MyForum::UsersController#create as HTML Parameters: {"user"=>{"email"=>"new_user@google.com", "password"=>"[FILTERED]", "login"=>"new_user"}} MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'new_user' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'new_user@google.com' LIMIT 1  (0.0ms) SAVEPOINT active_record_1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" = 'new_user' LIMIT 1 MyForum::User Exists (0.0ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" = 'new_user@google.com' LIMIT 1 SQL (0.3ms) INSERT INTO "my_forum_users" ("login", "email", "password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["login", "new_user"], ["email", "new_user@google.com"], ["password", "f7e8d12ce6cb1252fb028bebd6463e10d4daba18429aa6825890167cd32d65aa"], ["salt", "db7db9805a2248285317476cb3204aef7f2c98b75c9e460df9fb3b15bb7792b5"], ["created_at", "2015-03-25 13:11:15.097563"], ["updated_at", "2015-03-25 13:11:15.097563"]] SQL (0.1ms) INSERT INTO "my_forum_user_group_links" ("user_group_id", "user_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["user_group_id", 2], ["user_id", 2], ["created_at", "2015-03-25 13:11:15.098754"], ["updated_at", "2015-03-25 13:11:15.098754"]]  (0.0ms) RELEASE SAVEPOINT active_record_1 Redirected to http://test.host/my_forum/ Completed 302 Found in 11ms (ActiveRecord: 0.7ms) MyForum::User Load (0.0ms) SELECT "my_forum_users".* FROM "my_forum_users" WHERE "my_forum_users"."email" = ? LIMIT 1 [["email", "new_user@google.com"]]  (0.4ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) SAVEPOINT active_record_1 MyForum::User Exists (0.2ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."login" IS NULL LIMIT 1 MyForum::User Exists (0.1ms) SELECT 1 AS one FROM "my_forum_users" WHERE "my_forum_users"."email" IS NULL LIMIT 1 SQL (0.2ms) INSERT INTO "my_forum_users" ("password", "salt", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["password", "925006b8a1af39a370200566925a3a2f9d25bd067fa6039f24a3cfab6cc377dc"], ["salt", "786cf2a94204b8f3b9c0218d1427e9937ebb402bb35f07618905dcbca903e84d"], ["created_at", "2015-03-25 13:11:15.106136"], ["updated_at", "2015-03-25 13:11:15.106136"]]  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.3ms) rollback transaction