James B. Byrne:
> >> This is my MSA configuration in Master.cf
> >>
> >> submission inet n - n - - smtpd -v
[...]
Wietse:
[have you ever used this with mailman before?]
James B. Byrne:
> I never tried before this incident and that attempt failed as I previously
> reported. I am not attempting to sign mailman messages at the moment. I am
> just trying to get the submission port to work.
Well maybe we should leave port 587 for MUA clients only, and set
up a mailman submission service that does not require TLS or SASL.
The following still sets the "ORIGINATING" bits so that the Milter
will (hopefully) do the right thing.
master.cf:
127.0.0.1:26 inet n - n - - smtpd
-o smtpd_tls_security_level=none
-o smtpd_sasl_auth_enable=no
-o smtpd_client_restrictions=
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o smtpd_data_restrictions=
-o milter_macro_daemon_name=ORIGINATING
-o syslog_name=postfix-p26
With this in place, do "postfix reload" and see if mailman can
send a test message to 127.0.0.1 port 26.
Wietse