email backend

This commit is contained in:
j 2023-09-23 14:38:28 +02:00
commit e82d5d5f15
11 changed files with 167 additions and 0 deletions

View file

@ -61,6 +61,7 @@ INSTALLED_APPS = [
"app.item",
"app.signalbot",
"app.telegrambot",
"app.listmonk",
"app.page",
]
@ -162,6 +163,11 @@ CELERY_BROKER_URL = "redis://localhost:6379"
CELERY_RESULT_BACKEND = 'django-db'
SIGNAL_MODERATORS = []
LISTMONK_USER = "listmonk"
LISTMONK_PASSWORD = "listmonk"
LISTMONK_API = "http://localhost:9000/api/"
LISTMONK_LISTS = []
RATELIMIT_CACHE_BACKEND = "app.brake_backend.BrakeBackend"