fliu aaa6342f93
email: Basic app to manage an email server
- Install postfix and manage the service
- Import ugettext
- Dummy forms and views
- <module>.version (integer) is required

[sunil: Disable the app until remaining issues are worked out]
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
2021-08-17 19:42:26 -07:00

9 lines
192 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
from django.urls import path
from . import views
urlpatterns = [
path('apps/email_server/', views.EmailServerView.as_view(), name='index')
]