I even just tried to add in what is there ie
#allowed_hosts = ['127.0.0.1', 'localhost','Redacted]'] ALLOWED_HOSTS = ['127.0.0.1','localhost','[Redacted]','172.19.199.3','172.19.199.1','172.19.199.4','172.19.199.1'] #ALLOWED_HOSTS = ['*'] DEBUG = True #DEBUG = False EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST = 'Redacted' EMAIL_PORT = 25 INSTALLED_APPS = [ 'hyperkitty', 'postorius', 'django_mailman3', # Uncomment the next line to enable the admin: 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'rest_framework', 'django_gravatar', 'compressor', 'haystack', 'django_extensions', 'django_q', 'allauth', 'allauth.account', 'allauth.socialaccount', ]
this this does not work the mailmanweb.log shows
ERROR 2021-09-16 13:19:07,479 1647 django.security.DisallowedHost Invalid HTTP_HOST header: '[REDACTED]
'. The domain name provided is not valid according to RFC 1034/1035.
WARNING 2021-09-16 13:19:07,520 1647 django.request Bad Request: /
WARNING 2021-09-16 13:19:07,520 1647 django.request Bad Request: /
So that shows me that my opt/mailman/web/settings_local.py. is no longer being loaded??