mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
9 lines
213 B
Python
9 lines
213 B
Python
from django.conf import settings as django_settings
|
|
|
|
|
|
def settings(request):
|
|
return {
|
|
"EMAIL_ENABLED": django_settings.EMAIL_HOST != "localhost"
|
|
or django_settings.EMAIL_HOST_USER != "",
|
|
}
|