Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!husc6!cmcl2!rutgers!pyrnj!romain From: romain@pyrnj.UUCP Newsgroups: news.config Subject: please remove "tg" from your maps Message-ID: <659@pyrnj.uucp> Date: Sat, 29-Aug-87 00:37:13 EDT Article-I.D.: pyrnj.659 Posted: Sat Aug 29 00:37:13 1987 Date-Received: Sat, 29-Aug-87 17:50:06 EDT Distribution: world Organization: Pyramid Technology Corp, Woodbridge, NJ Lines: 43 There seem to be a few auto-routers sending things through site "tg". Indeed, tg was operational for several weeks after they announced their demise. Their last gasp came them about 3 weeks ago, but I'm still seeing mail routed through pyrnj!tg. Those of you who are routing mail through tg, especially to "dasys1", should find alternate routes. My current pathalias output suggests cmcl2!cucard!dasys1!%s If you've got pathalias, but you're too busy/lazy to install a smart mailer, the following may help: /* cc path.c -ldbm -o path */ #define PATHBASE "/usr/local/lib/nmail" typedef struct { char *dptr; int dsize; } datum; extern datum fetch(); extern char *index(); main(ac, av) char **av; { datum key, content; if (dbminit(PATHBASE) != 0) { printf("Can't dbminit(%s)\n", PATHBASE); exit(1); } while (--ac) { key.dptr = *++av; key.dsize = strlen(*av) + 1; content = fetch(key); if (content.dptr == (char *)0) printf("%s\tnot found\n", *av); else printf("%s\t%s\n", *av, content.dptr); } }