Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-08 Thread Matthew Seaman
On 08/02/2012 00:06, Doug Barton wrote: Couldn't you add an OPTION for updating mailer.conf? Then, if that OPTION is set, update mailer.conf; and if it isn't set, then leave mailer.conf alone. On my package-building system I do not want to twiddle mailer.conf, but on the systems that I

Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-07 Thread rflynn
mail/postfix and its derivatives are interactive when ALL of the following conditions are true: - PACKAGE_BUILDING is undefined - /etc/mail/mailer.conf exists - /etc/mail/mailer.conf contains a line beginning with 'purgestat' - POSTFIX_DEFAULT_MTA is unset And that one seems the

Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-07 Thread Sahil Tandon
On Feb 7, 2012, at 9:44 AM, rfl...@acsalaska.net wrote: mail/postfix and its derivatives are interactive when ALL of the following conditions are true: - PACKAGE_BUILDING is undefined - /etc/mail/mailer.conf exists - /etc/mail/mailer.conf contains a line beginning with 'purgestat' -

Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-07 Thread Freddie Cash
On Tue, Feb 7, 2012 at 12:37 PM, Sahil Tandon sa...@tandon.net wrote: On Feb 7, 2012, at 9:44 AM, rfl...@acsalaska.net wrote: mail/postfix and its derivatives are interactive when ALL of the following conditions are true: - PACKAGE_BUILDING is undefined - /etc/mail/mailer.conf exists -

Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-07 Thread rflynn
On Feb 7, 2012, at 9:44 AM, rfl...@acsalaska.net wrote: mail/postfix and its derivatives are interactive when ALL of the following conditions are true: - PACKAGE_BUILDING is undefined - /etc/mail/mailer.conf exists - /etc/mail/mailer.conf contains a line beginning with 'purgestat' -

Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-07 Thread Chris Rees
On 7 February 2012 02:04, Sahil Tandon sahil+freebsd-po...@tandon.net wrote: mail/postfix and its derivatives are interactive when ALL of the following conditions are true:  - PACKAGE_BUILDING is undefined  - /etc/mail/mailer.conf exists  - /etc/mail/mailer.conf contains a line beginning

Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-07 Thread Doug Barton
On 02/07/2012 13:18, Freddie Cash wrote: On Tue, Feb 7, 2012 at 12:37 PM, Sahil Tandon sa...@tandon.net wrote: On Feb 7, 2012, at 9:44 AM, rfl...@acsalaska.net wrote: mail/postfix and its derivatives are interactive when ALL of the following conditions are true: - PACKAGE_BUILDING is

Re: Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-07 Thread Sahil Tandon
On Tue, 2012-02-07 at 12:27:31 -0900, rfl...@acsalaska.net wrote: On Feb 7, 2012, at 9:44 AM, rfl...@acsalaska.net wrote: mail/postfix and its derivatives are interactive when ALL of the following conditions are true: - PACKAGE_BUILDING is undefined - /etc/mail/mailer.conf exists -

Input on most correct way to set IS_INTERACTIVE for Postfix ports

2012-02-06 Thread Sahil Tandon
mail/postfix and its derivatives are interactive when ALL of the following conditions are true: - PACKAGE_BUILDING is undefined - /etc/mail/mailer.conf exists - /etc/mail/mailer.conf contains a line beginning with 'purgestat' The way I plan to implement this in the port's Makefile is below;