Add IMAP OAUTH Mail Box Type

This commit is contained in:
bruce.gibbins
2023-04-15 21:52:44 +10:00
parent 26628db7e0
commit d57f11f40a
5 changed files with 146 additions and 2 deletions

View File

@ -175,7 +175,9 @@ class Queue(models.Model):
email_box_type = models.CharField(
_('E-Mail Box Type'),
max_length=5,
choices=(('pop3', _('POP 3')), ('imap', _('IMAP')),
choices=(('pop3', _('POP 3')),
('imap', _('IMAP')),
('oauth', _('IMAP OAUTH')),
('local', _('Local Directory'))),
blank=True,
null=True,