-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.py
37 lines (32 loc) · 1.09 KB
/
config.example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
EMAIL_ADDRESSES = {
'inbox1': {
'email': '[email protected]',
'secret_id': '<SECRET_ID_HERE>'
},
'inbox_with_alias': {
'email': '[email protected]',
'alias': '[email protected]',
'secret_id': '<SECRET_ID_HERE>'
},
'inbox_with_folder': {
'email': '[email protected]',
'folder': '<FOLDER_NAME_HERE>',
'secret_id': '<SECRET_ID_HERE>'
},
'inbox_with_oauth': {
'email': '[email protected]',
'folder': '<FOLDER_NAME_HERE>',
'client_id': '<APP_REGISTRATION_CLIENT_ID>',
'client_secret_id': '<APP_REGISTRATION_SECRET_MANAGER_ID_HERE>',
'tenant_id': '<APP_REGISTRATION_TENANT_ID>'
}
}
EXCHANGE_URL = 'https://outlook.office365.com/ews/exchange.asmx'
EXCHANGE_VERSION = {'major': 15, 'minor': 20}
PROJECT_ID = '<PROJECT_ID>'
BUCKET_NAME = '<BUCKET_NAME>'
TOPIC_NAME = '<TOPIC_NAME>'
ATTACHMENTS_TO_STORE = ['application/pdf']
ALLOWED_HTML_BODY_TAGS = ['html-tag1', 'html-tag2']
ERROR_EMAIL_ADDRESS = '[email protected]'
ERROR_EMAIL_MESSAGE = 'This is an error message'