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

@ -249,3 +249,14 @@ HELPDESK_FULL_FIRST_MESSAGE_FROM_EMAIL = getattr(
# (which gets stripped/corrupted otherwise)
HELPDESK_ALWAYS_SAVE_INCOMING_EMAIL_MESSAGE = getattr(
settings, "HELPDESK_ALWAYS_SAVE_INCOMING_EMAIL_MESSAGE", False)
#######################
# email OAUTH #
#######################
HELPDESK_OAUTH = {
"token_url": "",
"client_id": "",
"secret": "",
"scope": [""]
}