[pfx] Re: Typo in man postconf ("Postix")

2023-07-03 Thread Scott Kitterman via Postfix-users



On July 3, 2023 10:04:05 PM UTC, Viktor Dukhovni via Postfix-users 
 wrote:
>On Mon, Jul 03, 2023 at 09:52:28PM +, Scott Kitterman via Postfix-users 
>wrote:
>
>> >Should I ask WTF BTS?
>>
>> Bug Tracking System.  No.
>
>I see...  The Postfix project does not curate bugs.  There are, except
>briefly for O(1 day) from the date the bug is reported, zero known
>outstanding bugs.  Therefore, also no need for a "BTS".
>

That's almost verbatim what I told him in the part of the IRC conversation he 
elided from the email.

Scott K
___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Re: Typo in man postconf ("Postix")

2023-07-03 Thread Wietse Venema via Postfix-users
Viktor Dukhovni via Postfix-users:
> On Tue, Jul 04, 2023 at 06:19:26AM +1000, Trent W. Buck via Postfix-users 
> wrote:
> 
> > master:postfix/proto/postconf.proto:6450: This feature is available in 
> > Postix 2.10 and later. 
> > master:postfix/proto/stop:1185:Postix
> > 
> > Are these typos?
> 
> Yes.  The fix is trivial:
> 
> --- proto/postconf.proto
> +++ proto/postconf.proto
> @@ -6450 +6450 @@ smtpd_recipient_restrictions.
> - This feature is available in Postix 2.10 and later. 
> + This feature is available in Postfix 2.10 and later. 
> --- proto/stop
> +++ proto/stop
> @@ -1185 +1184,0 @@ OpenSSL's
> -Postix
> 
> The other two files are machine-generated.

Done. No need to get excited.

Wietse
___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Re: Remove mailer-daemon

2023-07-03 Thread Viktor Dukhovni via Postfix-users
On Mon, Jul 03, 2023 at 10:07:55PM +, Israel britto via Postfix-users wrote:

> How can I delete all mailer-daemon messages from my mail server?

By not accepting mail for non-existent recipients.  With working
recipient validation on input, you can ignore the trickle of bounces
that might now and then happen for some other reason.

It is not a good idea to delete all bounces, some might be legitimate
reports of non-delivery of inadvertently mistyped addresses.

You've been warned!  With that, the below will delete deferred bounces
that have lingered in the queue for at least 4 hours:

# postqueue -j |
jq -r '
select(.queue_name == "deferred" and
   (.queue_id | test("^\\w+$")) and
   (.sender == "" or .sender == "<>") and
   .arrival_time < now - 14400)
| .queue_id' |
  postsuper -d - deferred

-- 
Viktor.
___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Re: Remove mailer-daemon

2023-07-03 Thread Benny Pedersen via Postfix-users

Israel britto via Postfix-users skrev den 2023-07-04 00:07:

How can I delete all mailer-daemon messages from my mail server?


no logs, no problem :)

more help post atleast postconf -nf with logs

mailer-daemon is not a bug or anything to solve, unless logs tels 
otherwize


___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Remove mailer-daemon

2023-07-03 Thread Israel britto via Postfix-users
How can I delete all mailer-daemon messages from my mail server?
___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Re: Typo in man postconf ("Postix")

2023-07-03 Thread Viktor Dukhovni via Postfix-users
On Mon, Jul 03, 2023 at 09:52:28PM +, Scott Kitterman via Postfix-users 
wrote:

> >Should I ask WTF BTS?
>
> Bug Tracking System.  No.

I see...  The Postfix project does not curate bugs.  There are, except
briefly for O(1 day) from the date the bug is reported, zero known
outstanding bugs.  Therefore, also no need for a "BTS".

-- 
Viktor.
___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Re: Typo in man postconf ("Postix")

2023-07-03 Thread Scott Kitterman via Postfix-users



On July 3, 2023 9:43:39 PM UTC, Viktor Dukhovni via Postfix-users 
 wrote:
>On Tue, Jul 04, 2023 at 06:19:26AM +1000, Trent W. Buck via Postfix-users 
>wrote:
>
>> master:postfix/proto/postconf.proto:6450: This feature is available in 
>> Postix 2.10 and later. 
>> master:postfix/proto/stop:1185:Postix
>> 
>> Are these typos?
>
>Yes.  The fix is trivial:
>
>--- proto/postconf.proto
>+++ proto/postconf.proto
>@@ -6450 +6450 @@ smtpd_recipient_restrictions.
>- This feature is available in Postix 2.10 and later. 
>+ This feature is available in Postfix 2.10 and later. 
>--- proto/stop
>+++ proto/stop
>@@ -1185 +1184,0 @@ OpenSSL's
>-Postix
>
>The other two files are machine-generated.
>
>> There is no public VCS.
>
>So far, not much need.  FWIW, you can find a tracking git repository at:
>
>https://github.com/vdukhovni/postfix
>
>but since it is not the place to submit changes, it is not immediately
>applicable to your needs.
>
>>  Is there a BTS?
>
>Should I ask WTF BTS?
>
Bug Tracking System.  No.

Scott K
___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Re: Typo in man postconf ("Postix")

2023-07-03 Thread Viktor Dukhovni via Postfix-users
On Tue, Jul 04, 2023 at 06:19:26AM +1000, Trent W. Buck via Postfix-users wrote:

> master:postfix/proto/postconf.proto:6450: This feature is available in 
> Postix 2.10 and later. 
> master:postfix/proto/stop:1185:Postix
> 
> Are these typos?

Yes.  The fix is trivial:

--- proto/postconf.proto
+++ proto/postconf.proto
@@ -6450 +6450 @@ smtpd_recipient_restrictions.
- This feature is available in Postix 2.10 and later. 
+ This feature is available in Postfix 2.10 and later. 
--- proto/stop
+++ proto/stop
@@ -1185 +1184,0 @@ OpenSSL's
-Postix

The other two files are machine-generated.

> There is no public VCS.

So far, not much need.  FWIW, you can find a tracking git repository at:

https://github.com/vdukhovni/postfix

but since it is not the place to submit changes, it is not immediately
applicable to your needs.

>  Is there a BTS?

Should I ask WTF BTS?

-- 
Viktor.

___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org


[pfx] Typo in man postconf ("Postix")

2023-07-03 Thread Trent W. Buck via Postfix-users
master:postfix/html/postconf.5.html:16938: This feature is available in 
Postix 2.10 and later. 
master:postfix/man/man5/postconf.5:11735:This feature is available in Postix 
2.10 and later.
master:postfix/proto/postconf.proto:6450: This feature is available in 
Postix 2.10 and later. 
master:postfix/proto/stop:1185:Postix

Are these typos?
The last one seems like a code thing maybe?

 twb: I think it's worth you writing a mail to postfix-users.
There is no public VCS.
 Is there a BTS?
 No.

 "Postings from non-members are silently discarded"  grr
 I can't really be arsed writing a sieve rule to discard all the-
 Does it accept posts from gmane?
 I don't know.

So OK let's see if gmane works.

___
Postfix-users mailing list -- postfix-users@postfix.org
To unsubscribe send an email to postfix-users-le...@postfix.org