Re: Check outgoing emails not using TLS

2020-04-07 Thread Viktor Dukhovni
On Tue, Apr 07, 2020 at 07:06:41PM -0400, Wietse Venema wrote: > Attached are an updated script, and a diff. Looks good to me. -- Viktor.

Re: Check outgoing emails not using TLS

2020-04-07 Thread Wietse Venema
Viktor Dukhovni: > On Tue, Apr 07, 2020 at 11:46:33AM +0200, Michael Storz wrote: > > > > I should perhaps mention that the "tlstype.pl" Perl script does not > > > handle TLS connection re-use. I've not looked at what it would take > > > to do that. > > > > And it does not work for mixed-case

Re: Check outgoing emails not using TLS

2020-04-07 Thread Wietse Venema
Viktor Dukhovni: > On Tue, Apr 07, 2020 at 11:46:33AM +0200, Michael Storz wrote: > > > > I should perhaps mention that the "tlstype.pl" Perl script does not > > > handle TLS connection re-use. I've not looked at what it would take > > > to do that. > > > > And it does not work for mixed-case

Re: Check outgoing emails not using TLS

2020-04-07 Thread Viktor Dukhovni
On Tue, Apr 07, 2020 at 11:46:33AM +0200, Michael Storz wrote: > > I should perhaps mention that the "tlstype.pl" Perl script does not > > handle TLS connection re-use. I've not looked at what it would take > > to do that. > > And it does not work for mixed-case hostnames: > > - TLS connection

Re: modifying outbound email headers

2020-04-07 Thread Stefan Claas
Wietse Venema wrote: > One correction: > > > Anyway, if you can identify all the the mail2news gateways AND your users > > > must use your server set up a transport map: > > > > > > /etc/postfix/main.cf > > > transport_maps = hash:/etc/postfix/transport > > > > > > /etc/postfix/transport: >

Re: modifying outbound email headers

2020-04-07 Thread Wietse Venema
One correction: > > Anyway, if you can identify all the the mail2news gateways AND your users > > must use your server set up a transport map: > > > > /etc/postfix/main.cf > > transport_maps = hash:/etc/postfix/transport > > > > /etc/postfix/transport: > > mail2n...@axample.com

Re: modifying outbound email headers

2020-04-07 Thread Stefan Claas
Wietse Venema wrote: > Stefan Claas: > > Wietse Venema wrote: > > > > > Stefan Claas: > > > > Hi, > > > > > > > > my postfix mail server works perfectly so far. > > > > > > > > However, I am now facing the following problem and have tried as best > > > > as I can to find a solution to this. >

Re: modifying outbound email headers

2020-04-07 Thread Wietse Venema
Stefan Claas: > Wietse Venema wrote: > > > Stefan Claas: > > > Hi, > > > > > > my postfix mail server works perfectly so far. > > > > > > However, I am now facing the following problem and have tried as best as I > > > can to find a solution to this. > > > > > > I run an anonymous remailer,

Re: MTA-STS?

2020-04-07 Thread Wietse Venema
David Mehler: > Hello, > > I just heard about this and started reading on it. Is MTA-STS > something Postfix works with? https://www.google.com/search?q=postfix+mta-sts This uses the Postfix's smtp_tls_policy_maps plugin. Wietse

Re: MTA-STS?

2020-04-07 Thread Scott Kitterman
On Tuesday, April 7, 2020 11:15:27 AM EDT David Mehler wrote: > Hello, > > I just heard about this and started reading on it. Is MTA-STS > something Postfix works with? You need https://github.com/Snawoot/postfix-mta-sts-resolver and then yes. Scott K

Re: Tracking email status - Bounced, Deferred, Over Quota, Delivered

2020-04-07 Thread Wietse Venema
Owais Khan: > Thanks > > I knew this way of redirecting output. I thought it would produce me some > statistics like bounced counts, etc. > > But, it seems to bring chunks from original log. Is this the expected output > of this collate.pl? Yes. The purpose of this script is to group logfile

MTA-STS?

2020-04-07 Thread David Mehler
Hello, I just heard about this and started reading on it. Is MTA-STS something Postfix works with? Thanks. Dave.

Re: Tracking email status - Bounced, Deferred, Over Quota, Delivered

2020-04-07 Thread Owais Khan
Thanks I knew this way of redirecting output. I thought it would produce me some statistics like bounced counts, etc. But, it seems to bring chunks from original log. Is this the expected output of this collate.pl? Thanks & Regards, Owais. -- Sent from:

Re: Check outgoing emails not using TLS

2020-04-07 Thread Michael Storz
Am 2020-04-06 23:53, schrieb Viktor Dukhovni: On Mon, Apr 06, 2020 at 02:53:25PM +0100, Dominic Raferd wrote: > whose output you'd send to the attached Perl script. On my system for > example: > > # bzip2 -dcf $(ls -tr /var/log/maillog*) | perl collate | perl tlstype.pl I should perhaps