]> diplodocus.org Git - nmh/blob - docs/historical/mh-jun-1982/adrparse.h
Updated documentation and comments about sendmail/pipe.
[nmh] / docs / historical / mh-jun-1982 / adrparse.h
1 #ifdef COMMENT
2 Proprietary Rand Corporation, 1981.
3 Further distribution of this software
4 subject to the terms of the Rand
5 license agreement.
6 #endif
7
8 struct mailname {
9 struct mailname *m_next;
10 char *m_text,
11 *m_headali, /***/
12 *m_mbox,
13 *m_at,
14 *m_host,
15 *m_hs, *m_he;
16 long m_hnum;
17 char m_nohost;
18 } *getm();
19
20 char *adrformat(), *getname(), *stdhost();
21
22 struct hosts {
23 struct hosts *nh_next;
24 char *nh_name;
25 long nh_num;
26 } hosts;
27
28 #ifdef ARPANET
29 long gethnum();
30 #else
31 #define HOSTNAME "(local)"
32 #define HOSTNUM 0
33 #endif
34 /* If on the ARPANET, whoami.h should have these defined. */
35 /* If not on the ARPANET, delete HOSTNAME, HOSTNUM from whoami.h */