Hello.
Is there a reason why the Mailbox.uri field is limited to 255 characters only? If you create Office 365 mailbox with uri formatted like described in documentation:
office365://youremailaddress%40yourdomain.com:oauth2@outlook.office365.com?client_id=client_id&client_secret=client_secret&tenant_id=tenant_id&archive=Archived
you will reach the limit of 255 characters very easily as client_id, client_secret and tenant_id values have together 112 characters.
Can you either increase the max_length value or change it to models.TextField instead?
Hello.
Is there a reason why the
Mailbox.urifield is limited to 255 characters only? If you create Office 365 mailbox with uri formatted like described in documentation:office365://youremailaddress%40yourdomain.com:oauth2@outlook.office365.com?client_id=client_id&client_secret=client_secret&tenant_id=tenant_id&archive=Archivedyou will reach the limit of 255 characters very easily as
client_id,client_secretandtenant_idvalues have together 112 characters.Can you either increase the
max_lengthvalue or change it tomodels.TextFieldinstead?