From 8a212df4400931ae2d43667947b1cf1e52a83e47 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 8 Nov 2019 17:25:31 -0400 Subject: [PATCH] Increase DjangoSMTP password field size to 192 Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 ++ mayan/apps/mailer/mailers.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index f96e276f0b..402d28d312 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -120,6 +120,8 @@ HTTP POST action. - Update the timeout field of the workflow HTTP POST action to support templates. +- DjangoSMTP mailer password field size increased to 192 + characters. 3.2.9 (2019-11-03) ================== diff --git a/mayan/apps/mailer/mailers.py b/mayan/apps/mailer/mailers.py index 4ee5e5f487..5fd70f99d4 100644 --- a/mayan/apps/mailer/mailers.py +++ b/mayan/apps/mailer/mailers.py @@ -78,7 +78,7 @@ class DjangoSMTP(MailerBackend): 'the SMTP server. If either of these settings is empty, ' 'authentication won\'t be attempted.' ), 'kwargs': { - 'max_length': 128 + 'max_length': 192 }, 'required': False }, }