Hi everyone :),
This is my first post in this group, so let me thank all of the developers for incredible work with Mailman3. Special congratulations goes to new project leader, Abhilash :)
I've been using Mailman2 from over 15 years, and recently decided that it is time to upgrade. For several days I'm playing with all of the components of the system. Currently everything looks to be working nicely :) Mailman-core, Mailman-suite (Postorius, Hyperkitty) installed directly, not using docker containers.
The last step was integration with MTA. I've configured Postfix and Mailman-core according to: https://mailman.readthedocs.io/en/latest/src/mailman/docs/mta.html#mailman-s...
But messages send to the list address are not delivered to the list :( I've started to investigate whats happening and realize that Postfix can not connect to mailman using LMTP. It seems that mailman is not listening on port 8024.
Nov 24 13:12:31 lists postfix/lmtp[2737]: connect to 127.0.0.1[127.0.0.1]:8024: Connection refused
I've checked log files, but haven't realize anything unusual . Any ideas where I could try to find cause of the problem ?
My mailman.cfg file MTA section: [mta] incoming: mailman.mta.postfix.LMTP outgoing: mailman.mta.deliver.deliver lmtp_host: localhost lmtp_port: 8024 smtp_host: localhost smtp_port: 25
regrds.
On 11/24/2017 04:40 AM, Bartosz Sawicki wrote:
But messages send to the list address are not delivered to the list :( I've started to investigate whats happening and realize that Postfix can not connect to mailman using LMTP. It seems that mailman is not listening on port 8024.
Nov 24 13:12:31 lists postfix/lmtp[2737]: connect to 127.0.0.1[127.0.0.1]:8024: Connection refused
I've checked log files, but haven't realize anything unusual . Any ideas where I could try to find cause of the problem ?
Is Mailman, particularly the lmtp runner, running?
$ ps -fwwu mailman|grep lmtp mailman 19107 19085 0 Nov16 ? 00:00:44 /usr/local/bin/python3 /usr/local/bin/runner -C /opt/mailman/mailman-bundler/deployment/mailman.cfg --runner=lmtp:0:1
If so, where is it listening $ sudo netstat -lntp|grep 19107 tcp 0 0 127.0.0.1:8024 0.0.0.0:* LISTEN 19107/python3
where the 19107 in the grep is the PIP of the lmtp runner.
If that's all OK, is there a firewall (iptables or ??) thats not allowing access to localhost:8024?
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
Thanks, problem solved :) You were right, it was firewall issue.
cheers,
participants (3)
-
Bartosz Sawicki
-
Mark Sapiro
-
sawickib@gmail.com