From 7ba1c4acc991566fef29f6f14f950728148525b2 Mon Sep 17 00:00:00 2001 From: Tyler Gross Date: Wed, 13 Mar 2019 18:21:43 -0500 Subject: [PATCH] Increased SMTP password length Increased smtp_pass size to better support transactional emailing services that auto-generate passwords longer than 50 chars and don't let you change them. --- db/migrations/001_sequel.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/001_sequel.rb b/db/migrations/001_sequel.rb index 03b11f44..4342bf8a 100644 --- a/db/migrations/001_sequel.rb +++ b/db/migrations/001_sequel.rb @@ -113,7 +113,7 @@ String :smtp_server, size: 50 String :smtp_sender, size: 50 String :smtp_user, size: 50 - String :smtp_pass, size: 50 + String :smtp_pass, size: 100 TrueClass :smtp_use_tls # Options include 'plain', 'login', 'cram_md5', 'none' String :smtp_auth_type, size: 50