Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!ucsd!ucbvax!CAEN.ENGIN.UMICH.EDU!paul From: paul@CAEN.ENGIN.UMICH.EDU (paul killey) Newsgroups: comp.sys.apollo Subject: Re: Sendmail Problem Message-ID: <4d4885df0.000f088@caen.engin.umich.edu> Date: 8 Oct 90 23:26:48 GMT References: <2054@apctrc.UUCP> Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 48 Class define: CD trc.amoco.com hou.amoco.com nap.amoco.com Rewriting rule in S0: R$*<@$=D>$* $#ether $@$2 $:$1<@$2>$3 Address: user@nap.amoco.com Problem: The address fails rule on the Apollo but hits on the Sun. Timestamp of sendmail: Ver Name Time Stamp File Name -------------------------------------------------------------- c 1 version 1989/09/28 9:15:56 CDT (Thu) /bsd4.3/usr/lib/sendmail Is there is bug in sendmail (or a patch I don't know about). Thanks for the help!!! Jim Sills jsills@trc.amoco.com 918-660-3158 Sun probably has some of the "IDA sendmail enhancements". Without them (i.e., your case) sendmail is only trying to match one token, and you have more than one ("nap", ".", "amoco", ".", and "com"). IDA will match on these multi-token classes. In your case, it would match nap, then nap., then nap.amoco, then nap.amoco., etc. You could instead do something like this: CD trc hou nap and R$*<@$=Z.amoco.com>$* $#ether $@$2.amoco.com $:$1<@$2.amoco.com>$3 or whatever. To sum up, this is an instance of comparing IDA sendmail with the stock version.