mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
- 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>
9 lines
192 B
Python
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')
|
|
]
|