mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
increase max_length of Mailbox.uri
in some cases like Office365 the 255 limit could be exceeded.
This commit is contained in:
parent
eec7fb76f9
commit
eac0d5ce3e
2 changed files with 19 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ class Mailbox(models.Model):
|
|||
|
||||
uri = models.CharField(
|
||||
_('URI'),
|
||||
max_length=255,
|
||||
max_length=2048,
|
||||
help_text=(_(
|
||||
"Example: imap+ssl://myusername:mypassword@someserver <br />"
|
||||
"<br />"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue