
This upgrades our images to Alpine 3.20, Django 4.2, Mailman 3.3.10, Postorius 1.3.13, Hyperkitty 1.3.12 and django-mailman3 1.3.15. Files are re-synced with upstream (either container or project) files, with versions and any alterations noted. Change-Id: I78d37c0635d38ecfc1d1143a69892fe8d8685214
49 lines
1.9 KiB
Python
49 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# This file has been copied from:
|
|
# https://gitlab.com/mailman/mailman-web/-/blob/5a44178/mailman_web/urls.py
|
|
# In order to match upstream Mailman URL choices (putting modern paths first
|
|
# with fallback routes after for backward compatibility); it can be reverted
|
|
# once https://github.com/maxking/docker-mailman/blob/main/web/mailman-web/ has
|
|
# updated to match.
|
|
#
|
|
# Copyright (C) 2023 by the Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of mailman-web.
|
|
#
|
|
# Postorius is free software: you can redistribute it and/or modify it under
|
|
# the terms of the GNU General Public License as published by the Free
|
|
# Software Foundation, either version 3 of the License, or (at your option)
|
|
# any later version.
|
|
#
|
|
# Postorius is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
# more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# Postorius. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
from django.conf.urls import include
|
|
from django.contrib import admin
|
|
from django.urls import path, reverse_lazy
|
|
from django.views.generic import RedirectView
|
|
|
|
urlpatterns = [
|
|
path(
|
|
'',
|
|
RedirectView.as_view(url=reverse_lazy('list_index'), permanent=True),
|
|
),
|
|
# Include alternate Postorius and HyperKitty URLs.
|
|
path('postorius/', include('postorius.urls')),
|
|
path('hyperkitty/', include('hyperkitty.urls')),
|
|
# Order counts for various links. Put the above first and the following
|
|
# after so the suggested Apache config still works.
|
|
path('mailman3/', include('postorius.urls')),
|
|
path('archives/', include('hyperkitty.urls')),
|
|
path('', include('django_mailman3.urls')),
|
|
path('accounts/', include('allauth.urls')),
|
|
path('admin/', admin.site.urls),
|
|
]
|