Re: smtpd in master.cf

2022-01-22 Thread Rob McGee
On 2022-01-22 21:53, Ruben Safir wrote: Sorry not main, in master On Sat, Jan 22, 2022 at 10:51:31PM -0500, Ruben Safir wrote: Is this an error? smtp inet n - n - - smtpd "smtp" is the port name. It's 25. "getent services smtp" submission inet n

Why would dovecot not be answering

2022-01-22 Thread Ruben Safir
I am really lost as to why dovecot is not authenticating I have smtpd_sasl_type = dovecot in main.cf and # Postfix smtp-auth unix_listener /var/spool/postfix/private/auth { mode = 0666 user = postfix group = postfix } in /etc/dovecot/conf.d/10-master.conf I want it to authenticate on

Re: smtpd in master.cf

2022-01-22 Thread Ruben Safir
Sorry not main, in master On Sat, Jan 22, 2022 at 10:51:31PM -0500, Ruben Safir wrote: > Is this an error? > > smtp inet n - n - - smtpd > > submission inet n - n - - smtpd > -o syslog_name=postfix/submission > -o

smtpd in main.cf

2022-01-22 Thread Ruben Safir
Is this an error? smtp inet n - n - - smtpd submission inet n - n - - smtpd -o syslog_name=postfix/submission -o smtpd_tls_security_level=encrypt -o smtpd_sasl_auth_enable=yes -o smtpd_sasl_auth_enable=yes -o

Re: postfix and submission and amavis

2022-01-22 Thread Viktor Dukhovni
On Sun, Jan 23, 2022 at 01:48:05PM +1100, raf wrote: > If your cleanup_submission service is managed outside > of Postfix somehow by something that creates a socket > in /var/spool/postfix/public/cleanup_submission, > perhaps it isn't functioning. THere is no mechanism for running cleanup(8)

Re: Relaying using certificate authentication?

2022-01-22 Thread Viktor Dukhovni
On Sat, Jan 22, 2022 at 09:58:58PM -0500, Alex wrote: > I have a postfix-3.5.10 server on fedora35 and would like to > experiment with relaying outbound mail from my Microsoft 365 test > server through my postfix server to the recipient's final destination > using certificates as a way to

Relaying using certificate authentication?

2022-01-22 Thread Alex
Hi, I have a postfix-3.5.10 server on fedora35 and would like to experiment with relaying outbound mail from my Microsoft 365 test server through my postfix server to the recipient's final destination using certificates as a way to authenticate the sending Microsoft 365 server. Is this possible?

Re: postfix and submission and amavis

2022-01-22 Thread Viktor Dukhovni
On Sat, Jan 22, 2022 at 04:18:27PM -0800, Noah wrote: > Jan 23 00:08:12 localhost postfix/smtpd[18628]: warning: connect #1 to > subsystem public/cleanup_submission: No such file or directory You've configured an instance of smtpd(8) to use a "cleanup_submission" service instead of the stock

Re: postfix and submission and amavis

2022-01-22 Thread raf
On Sat, Jan 22, 2022 at 04:18:27PM -0800, Noah wrote: > Hi there, > > I have something misconfigured and cant figure out what I need to change. > > On an ubuntu host. > > Inbound mail is fine > Sending out mail is broken. > I see in the log files this entries around the time of submitting

postfix and submission and amavis

2022-01-22 Thread Noah
Hi there, I have something misconfigured and cant figure out what I need to change. On an ubuntu host. Inbound mail is fine Sending out mail is broken. I see in the log files this entries around the time of submitting mail for outbound delivery. Any clues what I need to configure correctly?

Re: SASL questions

2022-01-22 Thread Joe Acquisto-j4
>> > On Sat, Jan 22, 2022 at 05:56:31PM -0500, Joe Acquisto-j4 wrote: > >> >> > noauth unix - - n - - smtp >> >> > -o smtp_sasl_enable=no >> >> > -o smtp_sender_dependent_authentication=no >> >> > -o smtp_sasl_password_maps= >> >> >>

Re: Should that behaviour be like this?

2022-01-22 Thread Wietse Venema
Demi Marie Obenour: > On 1/20/22 08:13, Wietse Venema wrote: > > tobs...@brain-force.ch: > >> we had in main.cf > >> > >> > >> smtpd_client_restrictions = > >>check_helo_access > >> pcre:/etc/postfix/helo_access.pcre,regexp:/etc/postfix/helo_access.rege > > > > Commas and spaces are treated

Re: SASL questions

2022-01-22 Thread Viktor Dukhovni
On Sat, Jan 22, 2022 at 05:56:31PM -0500, Joe Acquisto-j4 wrote: > >> > noauth unix - - n - - smtp > >> > -o smtp_sasl_enable=no > >> > -o smtp_sender_dependent_authentication=no > >> > -o smtp_sasl_password_maps= > >> > >> My

Re: SASL questions

2022-01-22 Thread Joe Acquisto-j4
> On Sat, Jan 22, 2022 at 05:11:02PM -0500, Joe Acquisto-j4 wrote: > >> > Therefore your master.cf file needs to have an least one additional >> > smtp-based transport, with either SASL disabled entirely, and/or >> > sender-dependent authentication disabled, or perhaps a variant >> > password

Re: SASL questions

2022-01-22 Thread Viktor Dukhovni
On Sat, Jan 22, 2022 at 05:11:02PM -0500, Joe Acquisto-j4 wrote: > > Therefore your master.cf file needs to have an least one additional > > smtp-based transport, with either SASL disabled entirely, and/or > > sender-dependent authentication disabled, or perhaps a variant > > password table...

Re: SASL questions

2022-01-22 Thread Joe Acquisto-j4
> On Sat, Jan 22, 2022 at 02:03:29PM -0500, Joe Acquisto-j4 wrote: > >> > IIRC Wietse already suggested a work-around, by making the >> > sender-dependent authentication settings be transport-specific. >> > >> > In particular the internal nexthop that does not do SASL should be >> > handled by a

Re: SASL questions

2022-01-22 Thread Viktor Dukhovni
On Sat, Jan 22, 2022 at 02:03:29PM -0500, Joe Acquisto-j4 wrote: > > IIRC Wietse already suggested a work-around, by making the > > sender-dependent authentication settings be transport-specific. > > > > In particular the internal nexthop that does not do SASL should be > > handled by a

Re: SASL questions

2022-01-22 Thread Joe Acquisto-j4
> On Sat, Jan 22, 2022 at 08:01:27AM +1100, raf wrote: > >> > It is an issue with email that postfix has received, via fetchmail, and is >> > attempting to deliver to another system. Authentication is being >> > attempted, without it being required or requested, at least as far as I >> > can

Re: Should that behaviour be like this?

2022-01-22 Thread Demi Marie Obenour
On 1/20/22 08:13, Wietse Venema wrote: > tobs...@brain-force.ch: >> Today we stumbled over a postfix behaviour that was quite unexpected >> for us. >> >> we had in main.cf >> >> >> smtpd_client_restrictions = >>check_helo_access >>