-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings_local.py
36 lines (34 loc) · 949 Bytes
/
settings_local.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
# Set a valid email for Django internal emails
SERVER_EMAIL = "[email protected]"
# All Social login providers has been removed
INSTALLED_APPS = [
'hyperkitty',
'postorius',
'django_mailman3',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'django_gravatar',
'compressor',
'haystack',
'django_extensions',
'django_q',
'allauth',
'allauth.account',
'allauth.socialaccount',
]
# Enable full text search in Hyperkitty
# If this is added after first launch you must run:
# docker-compose exec mailman-web ./manage.py rebuild_index
# to rebuild the index.
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'xapian_backend.XapianEngine',
'PATH': "/opt/mailman-web-data/fulltext_index",
},
}