73 lines
1.4 KiB
C
73 lines
1.4 KiB
C
#ifndef lint
|
|
static char *sccsid = "@(#)config.c 1.1 92/07/30 SMI"; /* from S5R2 1.1 */
|
|
#endif
|
|
|
|
/*
|
|
* mailx -- a modified version of a University of California at Berkeley
|
|
* mail program
|
|
*/
|
|
|
|
/*
|
|
* This file contains definitions of network data used by mailx
|
|
* when replying. See also: configdefs.h and optim.c
|
|
*/
|
|
|
|
/*
|
|
* The subterfuge with CONFIGFILE is to keep cc from seeing the
|
|
* external defintions in configdefs.h.
|
|
*/
|
|
#define CONFIGFILE
|
|
#include "configdefs.h"
|
|
|
|
/*
|
|
* Set of network separator characters.
|
|
*/
|
|
char *metanet = "!^:%@";
|
|
|
|
/*
|
|
* Host table of "known" hosts. See the comment in configdefs.h;
|
|
* not all accessible hosts need be here (fortunately).
|
|
*/
|
|
struct netmach netmach[] = {
|
|
EMPTY, EMPTYID, BN|AN, /* Filled in dynamically */
|
|
EMPTY, EMPTYID, BN|AN, /* Filled in dynamically */
|
|
0, 0, 0
|
|
};
|
|
|
|
#ifdef OPTIM
|
|
/*
|
|
* Table of ordered of preferred networks. You probably won't need
|
|
* to fuss with this unless you add a new network character (foolishly).
|
|
*/
|
|
struct netorder netorder[] = {
|
|
AN, '@',
|
|
AN, '%',
|
|
SN, ':',
|
|
BN, '!',
|
|
-1, 0
|
|
};
|
|
#endif
|
|
|
|
/*
|
|
* Table to convert from network separator code in address to network
|
|
* bit map kind. With this transformation, we can deal with more than
|
|
* one character having the same meaning easily.
|
|
*/
|
|
struct ntypetab ntypetab[] = {
|
|
'%', AN,
|
|
'@', AN,
|
|
':', SN,
|
|
'!', BN,
|
|
'^', BN,
|
|
0, 0
|
|
};
|
|
|
|
#ifdef OPTIM
|
|
struct nkindtab nkindtab[] = {
|
|
AN, IMPLICIT,
|
|
BN, EXPLICIT,
|
|
SN, IMPLICIT,
|
|
0, 0
|
|
};
|
|
#endif
|