Abhilash Raj
Abhilash Raj
Just as an FYI, I am just guessing what could be the problem, I never seen it before.
Can you tell me what was wrong the first time so that I can help others if they face a similar problem? Thanks! The default address to send emails from...
EMAIL_BACKEND and related settings don't have anything to do with the sender address, they define how mailman-web connects to your SMTP relay service (Postfix or such). The emails generated by...
You need to configure emails at two places right now, once for Core and another time for Django(mailman-web). Django usually sends out account confirmation emails and other error tracebacks if...
There are two command, one for importing the list configs (`mailman import21`) and other for importing the archives (`python manage.py hyperkitty_import`). You want to run `mailman import21` command inside the...
So, there is an interesting problem with having to use multiple IPs with Mailman Core. Mailman Core listens for LMTP connections on `$MM_HOSTNAME` and it also uses the same value...
I was assuming that most of the people would override the default settings in the settings.py using a `settings_local.py` that can be placed at `/opt/mailman/web/` on the host and will...
@ishitatsuyuki Hostname based networking works best for communication between the containers. But I have no idea how to do make the host aware about the hostnames. MTA and Webserver need...
Expose doesn't bind anything to the host, it is only a directive for the linked containers about the open ports AFAIK. If you actually meant port binding to a host...
The way it binds to localhost is by manipulating iptable rules because of which, if lets say ,you have port 8080 blocked in your firewall and if you bind 8080...