mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +00:00
Creating home directories is no longer necessary. We store all mail in /var/mail and don't allow use of direct access to mail folder. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
17 lines
553 B
Python
17 lines
553 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
from django.urls import path
|
|
from stronghold.decorators import public
|
|
|
|
from plinth.utils import non_admin_view
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('apps/email_server/', views.EmailServerView.as_view(), name='index'),
|
|
path('apps/email_server/domains', views.DomainsView.as_view(),
|
|
name='domains'),
|
|
path('apps/email_server/my_aliases',
|
|
non_admin_view(views.AliasView.as_view()), name='aliases'),
|
|
path('apps/email_server/config.xml', public(views.XmlView.as_view())),
|
|
]
|