Re: policy daemon protocol quoted sender localpart

2018-06-14 Thread Wietse Venema
Viktor Dukhovni: > > > > On Jun 14, 2018, at 8:33 AM, Omicron wrote: > > > > I'm implementing a policy daemon and I realized > > the sender attribute value of the Postfix > > policy delegation protocol does not preserve the > > quotes of the original envelope address. > > If Postfix accepts a m

Re: policy daemon protocol quoted sender localpart

2018-06-14 Thread Omicron
Thanks for the answers. That makes a lot of sense. Knowing this I can easily modify my algorithm. Thanks Daniel On 14.06.2018 14:33, Omicron wrote: Hi I'm implementing a policy daemon and I realized the sender attribute value of the Postfix policy delegation protocol does not preserve the qu

Re: policy daemon protocol quoted sender localpart

2018-06-14 Thread Viktor Dukhovni
> On Jun 14, 2018, at 8:33 AM, Omicron wrote: > > I'm implementing a policy daemon and I realized > the sender attribute value of the Postfix > policy delegation protocol does not preserve the > quotes of the original envelope address. > If Postfix accepts a mail address I think it > should pa

Re: policy daemon protocol quoted sender localpart

2018-06-14 Thread Wietse Venema
Omicron: > Sender address > "AAA a...@aaa.aaa"@AAA.AAA > is passed by postfix to the policy daemon as: > sender=AAA a...@aaa.aaa@AAA.AAA > which is invalid without the quotes. I would expect to get > sender="AAA a...@aaa.aaa"@AAA.AAA The form is valid unqoted form. As you probably know, one addre

policy daemon protocol quoted sender localpart

2018-06-14 Thread Omicron
Hi I'm implementing a policy daemon and I realized the sender attribute value of the Postfix policy delegation protocol does not preserve the quotes of the original envelope address. If Postfix accepts a mail address I think it should pass this address to the policy daemon without modifying it.