Path: utzoo!mnetor!uunet!husc6!mailrus!tut.cis.ohio-state.edu!kaul From: kaul@tut.cis.ohio-state.edu (Rich Kaul) Newsgroups: comp.sources.bugs Subject: Re: Ease problems/bugs Message-ID: <8755@tut.cis.ohio-state.edu> Date: 24 Mar 88 15:29:55 GMT References: <960@blade.UUCP> Organization: The Ohio State University Dept of Electrical Engineering Lines: 30 I tried to reply by mail, but your mailer didn't work :-) In article <960@blade.UUCP> schnitz@bellcore.com writes: >Here is an example of my problem. With the following ease input: > > /* format of a total name */ > macro > m_defaddr = "${m_sreladdr}ifset (m_sname, (${m_sname}))"; > >I should get something very much like the following output: > # format of a total name > Dq$g$?x ($x)$. > >But instead, I get > Dq$gifset (m_sname, ($x)) >which is clearly wrong. The problem is in your m_defaddr declaration. My guess is that you used cfc to generate this line, and cfc has a bug on this point. The correct macro to use is: m_defaddr = concat ("${m_sreladdr}", ifset (m_sname," (${m_sname})")); When all else fails, read the manual... >Another question, is the P (postmaster) option a normal sendmail >option? Is it standard in SUN sendmail, but not in others? According to one of the N+1 RFCs (where N is well on the way to infinity), each machine must have a postmaster. If you have any questions about this, feel free to drop me a line.