mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-06-03 10:50:20 +00:00
- View: security.html -> email_security.html - Setup: will not install Redis - Setup: put clamav packages on hold - Crash recovery: opening firewall ports becomes the last post action - Crash recovery: group postconf.set_many into small transactions - Crash recovery: safer postconf.set_master_cf_options
20 lines
691 B
Python
20 lines
691 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
from django.urls import path
|
|
from plinth.utils import non_admin_view
|
|
from stronghold.decorators import public
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('apps/email_server/', views.EmailServerView.as_view(), name='index'),
|
|
path('apps/email_server/email_security', views.TLSView.as_view()),
|
|
path('apps/email_server/domains', views.DomainView.as_view()),
|
|
|
|
path('apps/email_server/my_mail',
|
|
non_admin_view(views.MyMailView.as_view()), name='my_mail'),
|
|
path('apps/email_server/my_aliases',
|
|
non_admin_view(views.AliasView.as_view())),
|
|
|
|
path('apps/email_server/config.xml', public(views.XmlView.as_view())),
|
|
]
|