Compare commits

..

2 Commits

Author SHA1 Message Date
Jim Hague 02bff10e25 Django required updates to mailman3-web config. 2023-12-06 16:04:15 +00:00
Jim Hague 6a07035281 Update from bullseye to bookworm. 2023-12-06 16:03:52 +00:00
4 changed files with 17 additions and 11 deletions

View File

@ -1,8 +1,8 @@
bullseye_backports: bookworm_backports:
pkgrepo.managed: pkgrepo.managed:
- name: deb http://deb.debian.org/debian bullseye-backports main - name: deb http://deb.debian.org/debian bookworm-backports main
- dist: bullseye-backports - dist: bookworm-backports
- file: /etc/apt/sources.list.d/bullseye-backports.list - file: /etc/apt/sources.list.d/bookworm-backports.list
deploy_sshd_config: deploy_sshd_config:
file.managed: file.managed:

View File

@ -1,9 +1,6 @@
# Stock exim4 gives 'unknown condition "inbound_srs".
# the backports version to start.
exim4: exim4:
pkg.installed: pkg.installed:
- name: exim4-daemon-heavy - name: exim4-daemon-heavy
- fromrepo: bullseye-backports
exim4_conf: exim4_conf:
file.recurse: file.recurse:

View File

@ -1,16 +1,16 @@
# Stock bullseye rspamd doesn't start. bullseye-backports doesn't # Stock bullseye rspamd didn't start. bullseye-backports didn't
# work with Exim. # work with Exim.
rspamd_repo: rspamd_repo:
pkgrepo.managed: pkgrepo.managed:
- name: deb [arch=arm64] http://rspamd.com/apt-stable/ bullseye main - name: deb [arch=arm64] http://rspamd.com/apt-stable/ bookworm main
- dist: bullseye - dist: bookworm
- key_url: https://rspamd.com/apt-stable/gpg.key - key_url: https://rspamd.com/apt-stable/gpg.key
- file: /etc/apt/sources.list.d/rspamd.list - file: /etc/apt/sources.list.d/rspamd.list
rspamd: rspamd:
pkg.installed: pkg.installed:
- name: rspamd - name: rspamd
- fromrepo: bullseye - fromrepo: bookworm
redis_server: redis_server:
pkg.installed: pkg.installed:

View File

@ -188,3 +188,12 @@ SOCIALACCOUNT_PROVIDERS = {
COMPRESS_OFFLINE = True COMPRESS_OFFLINE = True
POSTORIUS_TEMPLATE_BASE_URL = 'http://localhost/mailman3/' POSTORIUS_TEMPLATE_BASE_URL = 'http://localhost/mailman3/'
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
Q_CLUSTER = {
'timeout': 300,
'retry': 600,
'save_limit': 100,
'orm': 'default',
'poll': 5,
}