[news.config] please remove "tg" from your maps

romain@pyrnj.UUCP (08/29/87)

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);
	}
}