From 5f80308ecb2982a736c3013d0097c2c5bb22760c Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 14 Oct 2024 07:20:40 -0700 Subject: [PATCH] Update models.py --- src/paperless_mail/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless_mail/models.py b/src/paperless_mail/models.py index 15f7bef35..f5f810911 100644 --- a/src/paperless_mail/models.py +++ b/src/paperless_mail/models.py @@ -42,7 +42,7 @@ class MailAccount(document_models.ModelWithOwner): username = models.CharField(_("username"), max_length=256) - password = models.CharField(_("password"), max_length=2048) + password = models.CharField(_("password"), max_length=3072) is_token = models.BooleanField(_("Is token authentication"), default=False)