On Sun, May 15, 2011, Michael Sioutis wrote:
> # DAEMON_OPTIONS(`Family=inet, Port=465, Name=MTA-SSL, M=s')dnl (<---
> Yes, a "comment"!)
> beginning with # and I thought these would be treated as comments as well.
The fine documentation (cf/README) says:
------------------------------------------------------------
One word of warning: M4 macros are expanded even in lines that appear
to be comments. For example, if you have
# See FEATURE(`foo') above
it will not do what you expect, because the FEATURE(`foo') will be
expanded. This also applies to ....
------------------------------------------------------------
Place dnl at the begin:
dnl DAEMON_OPTIONS(`Family=inet, Port=465, Name=MTA-SSL, M=s')
See m4(1)