Re: Enable DSN for authenticated clients

2011-08-11 Thread Bostjan Skufca
But of course! :) So simple... tnx a lot! b. On 11 August 2011 17:47, Wietse Venema wrote: > Bostjan Skufca: >> Hi all, >> >> is the mode of operation from the subject currently possible to >> achieve with postfix? > > Yes. Use the SUBMISSION port and specify the smtpd_discard_ehlo_keywords > i

Re: Enable DSN for authenticated clients

2011-08-11 Thread Wietse Venema
Bostjan Skufca: > Hi all, > > is the mode of operation from the subject currently possible to > achieve with postfix? Yes. Use the SUBMISSION port and specify the smtpd_discard_ehlo_keywords in master.cf. submission ... .. smtpd -o smtpd_discard_ehlo_keywords=foo,bar,baz Note: NO S

Re: Enable DSN for authenticated clients

2011-08-11 Thread Bostjan Skufca
Yep, different hosts and/or IPs is the solution. Currently I am looking into smtpd_discard_ehlo_keyword_address_maps to enable it for only particular sets of IP addresses. Thanks again, b. On 11 August 2011 15:11, /dev/rob0 wrote: > On Thu, Aug 11, 2011 at 09:00:53AM -0400, Brian Evans - Postfi

Re: Enable DSN for authenticated clients

2011-08-11 Thread /dev/rob0
On Thu, Aug 11, 2011 at 09:00:53AM -0400, Brian Evans - Postfix List wrote: > On 8/11/2011 8:56 AM, Bostjan Skufca wrote: > > Something like this: > > smtpd_discard_ehlo_keywords = silent-discard, etrn, dsn > > smtpd_discard_ehlo_keywords_auth = silent-discard, etrn > > > > Not sure if SMT

Re: Enable DSN for authenticated clients

2011-08-11 Thread Bostjan Skufca
My thoughts exactly, but what I didn't know is if after AUTH another set of EHLO responses is sent that could be altered. Thank you! b. On 11 August 2011 15:00, Brian Evans - Postfix List wrote: > On 8/11/2011 8:56 AM, Bostjan Skufca wrote: >> Something like this: >> smtpd_discard_ehlo_keywords

Re: Enable DSN for authenticated clients

2011-08-11 Thread Brian Evans - Postfix List
On 8/11/2011 8:56 AM, Bostjan Skufca wrote: > Something like this: > smtpd_discard_ehlo_keywords = silent-discard, etrn, dsn > smtpd_discard_ehlo_keywords_auth = silent-discard, etrn > > Not sure if SMTP protocol would support it though... > One problem with this, AUTH happens AFTER EHLO.

Enable DSN for authenticated clients

2011-08-11 Thread Bostjan Skufca
Hi all, is the mode of operation from the subject currently possible to achieve with postfix? Something like this: smtpd_discard_ehlo_keywords = silent-discard, etrn, dsn smtpd_discard_ehlo_keywords_auth = silent-discard, etrn Not sure if SMTP protocol would support it though... Thank