Changed nameof to return from: or sender: field if not
[unix-history] / usr / src / usr.bin / mail / def.h
CommitLineData
43101bb9
KS
1#
2
3#include "local.h"
4#include <sys/types.h>
5#include <signal.h>
6#include <stdio.h>
7
8#undef isalpha
9#undef isdigit
10
11/*
a642148b 12 * Sccs Id = "@(#)def.h 1.8 %G%";
43101bb9
KS
13 */
14
15/*
16 * Mail -- a mail program
17 *
18 * Commands are:
19 * t <message list> print out these messages
20 * r <message list> reply to messages
21 * m <user list> mail to users (analogous to send)
22 * e <message list> edit messages
23 * c [directory] chdir to dir or home if none
24 * x exit quickly
25 * w <message list> file save messages in file
26 * q quit, save remaining stuff in mbox
27 * d <message list> delete messages
28 * u <message list> undelete messages
29 * h print message headers
30 *
31 * Author: Kurt Shoens (UCB) March 25, 1978
32 */
33
34
35#define ESCAPE '~' /* Default escape for sending */
36#define NMLSIZE 20 /* max names in a message list */
37#define PATHSIZE 35 /* Size of pathnames throughout */
38#define NAMESIZE 20 /* Max size of user name */
39#define HSHSIZE 19 /* Hash size for aliases and vars */
40#define HDRFIELDS 3 /* Number of header fields */
41#define LINESIZE 512 /* max readable line width */
42#define SCREEN 18 /* screen size in lines (effective) */
43#define STRINGSIZE ((unsigned) 128)/* Dynamic allocation units */
44#define MAXARGC 20 /* Maximum list of raw strings */
45#define NOSTR ((char *) 0) /* Null string pointer */
46#define MAXEXP 25 /* Maximum expansion of aliases */
47#define equal(a, b) (strcmp(a,b)==0)/* A nice function to string compare */
48
49struct message {
50 short m_flag; /* flags, see below */
51 short m_block; /* block number of this message */
52 short m_offset; /* offset in block of message */
53 unsigned m_size; /* Bytes in the message */
54 short m_lines; /* Lines in the message */
55};
56
57/*
58 * flag bits.
59 */
60
61#define MUSED 1 /* entry is used, but this bit isn't */
62#define MDELETED 2 /* entry has been deleted */
63#define MSAVED 4 /* entry has been saved */
64#define MTOUCH 8 /* entry has been noticed */
65#define MPRESERVE 16 /* keep entry in sys mailbox */
66#define MMARK 32 /* message is marked! */
67#define MODIFY 64 /* message has been modified */
898c10fc
KS
68#define MNEW 128 /* message has never been seen */
69#define MREAD 256 /* message has been read sometime. */
70#define MSTATUS 512 /* message status has changed */
43101bb9
KS
71
72/*
73 * Format of the command description table.
74 * The actual table is declared and initialized
75 * in lex.c
76 */
77
78struct cmd {
79 char *c_name; /* Name of command */
80 int (*c_func)(); /* Implementor of the command */
81 short c_argtype; /* Type of arglist (see below) */
82 short c_msgflag; /* Required flags of messages */
83 short c_msgmask; /* Relevant flags of messages */
84};
85
86/* Yechh, can't initialize unions */
87
88#define c_minargs c_msgflag /* Minimum argcount for RAWLIST */
89#define c_maxargs c_msgmask /* Max argcount for RAWLIST */
90
91/*
92 * Argument types.
93 */
94
95#define MSGLIST 0 /* Message list type */
96#define STRLIST 1 /* A pure string */
97#define RAWLIST 2 /* Shell string list */
98#define NOLIST 3 /* Just plain 0 */
99#define NDMLIST 4 /* Message list, no defaults */
100
101#define P 040 /* Autoprint dot after command */
102#define I 0100 /* Interactive command bit */
103#define M 0200 /* Illegal from send mode bit */
6fff2fd5 104#define W 0400 /* Illegal when read only bit */
726904d6 105#define F 01000 /* Is a conditional command */
6c0822ea 106#define T 02000 /* Is a transparent command */
a642148b 107#define R 04000 /* Cannot be called from collect */
43101bb9
KS
108
109/*
110 * Oft-used mask values
111 */
112
113#define MMNORM (MDELETED|MSAVED)/* Look at both save and delete bits */
114#define MMNDEL MDELETED /* Look only at deleted bit */
115
116/*
117 * Structure used to return a break down of a head
118 * line (hats off to Bill Joy!)
119 */
120
121struct headline {
122 char *l_from; /* The name of the sender */
123 char *l_tty; /* His tty string (if any) */
124 char *l_date; /* The entire date string */
125};
126
127#define GTO 1 /* Grab To: line */
128#define GSUBJECT 2 /* Likewise, Subject: line */
129#define GCC 4 /* And the Cc: line */
130#define GBCC 8 /* And also the Bcc: line */
131#define GMASK (GTO|GSUBJECT|GCC|GBCC)
132 /* Mask of places from whence */
133
134#define GNL 16 /* Print blank line after */
135#define GDEL 32 /* Entity removed from list */
136#define GCOMMA 64 /* detract puts in commas */
137
138/*
139 * Structure used to pass about the current
140 * state of the user-typed message header.
141 */
142
143struct header {
144 char *h_to; /* Dynamic "To:" string */
145 char *h_subject; /* Subject string */
146 char *h_cc; /* Carbon copies string */
147 char *h_bcc; /* Blind carbon copies */
148 int h_seq; /* Sequence for optimization */
149};
150
151/*
152 * Structure of namelist nodes used in processing
153 * the recipients of mail and aliases and all that
154 * kind of stuff.
155 */
156
157struct name {
158 struct name *n_flink; /* Forward link in list. */
159 struct name *n_blink; /* Backward list link */
160 short n_type; /* From which list it came */
161 char *n_name; /* This fella's name */
162};
163
164/*
165 * Structure of a variable node. All variables are
166 * kept on a singly-linked list of these, rooted by
167 * "variables"
168 */
169
170struct var {
171 struct var *v_link; /* Forward link to next variable */
172 char *v_name; /* The variable's name */
173 char *v_value; /* And it's current value */
174};
175
176struct group {
177 struct group *ge_link; /* Next person in this group */
178 char *ge_name; /* This person's user name */
179};
180
181struct grouphead {
182 struct grouphead *g_link; /* Next grouphead in list */
183 char *g_name; /* Name of this group */
184 struct group *g_list; /* Users in group. */
185};
186
187#define NIL ((struct name *) 0) /* The nil pointer for namelists */
188#define NONE ((struct cmd *) 0) /* The nil pointer to command tab */
189#define NOVAR ((struct var *) 0) /* The nil pointer to variables */
190#define NOGRP ((struct grouphead *) 0)/* The nil grouphead pointer */
191#define NOGE ((struct group *) 0) /* The nil group pointer */
192
193/*
194 * Token values returned by the scanner used for argument lists.
195 * Also, sizes of scanner-related things.
196 */
197
198#define TEOL 0 /* End of the command line */
199#define TNUMBER 1 /* A message number */
200#define TDASH 2 /* A simple dash */
201#define TSTRING 3 /* A string (possibly containing -) */
202#define TDOT 4 /* A "." */
203#define TUP 5 /* An "^" */
204#define TDOLLAR 6 /* A "$" */
205#define TSTAR 7 /* A "*" */
206#define TOPEN 8 /* An '(' */
207#define TCLOSE 9 /* A ')' */
208#define TPLUS 10 /* A '+' */
209
210#define REGDEP 2 /* Maximum regret depth. */
2d5b401e 211#define STRINGLEN 64 /* Maximum length of string token */
43101bb9 212
6c0822ea
KS
213/*
214 * Constants for conditional commands. These describe whether
215 * we should be executing stuff or not.
216 */
217
218#define CANY 0 /* Execute in send or receive mode */
219#define CRCV 1 /* Execute in receive mode only */
220#define CSEND 2 /* Execute in send mode only */
221
43101bb9
KS
222/*
223 * Kludges to handle the change from setexit / reset to setjmp / longjmp
224 */
225
226#define setexit() setjmp(srbuf)
227#define reset(x) longjmp(srbuf, x)
228
229/*
230 * VM/UNIX has a vfork system call which is faster than forking. If we
231 * don't have it, fork(2) will do . . .
232 */
233
234#ifndef VMUNIX
235#define vfork() fork()
236#endif
237
238/*
239 * Forward declarations of routine types to keep lint and cc happy.
240 */
241
242FILE *Fdopen();
243FILE *collect();
244FILE *infix();
245FILE *mesedit();
246FILE *mespipe();
0dfdcc73 247FILE *popen();
43101bb9
KS
248FILE *setinput();
249char **unpack();
250char *addto();
251char *arpafix();
252char *calloc();
253char *copy();
254char *copyin();
255char *detract();
256char *expand();
257char *gets();
258char *hfield();
259char *index();
260char *nameof();
261char *nextword();
262char *getenv();
6fff2fd5 263char *getfilename();
43101bb9
KS
264char *hcontents();
265char *netmap();
266char *netname();
267char *readtty();
268char *rename();
269char *revarpa();
270char *rindex();
271char *rpair();
272char *salloc();
273char *savestr();
274char *savestr();
275char *snarf();
276char *value();
277char *vcopy();
278char *yankword();
279off_t fsize();
280struct cmd *lex();
281struct grouphead *findgroup();
282struct name *cat();
283struct name *delname();
284struct name *elide();
285struct name *extract();
286struct name *gexpand();
287struct name *map();
288struct name *outof();
289struct name *put();
290struct name *usermap();
291struct name *verify();
292struct var *lookup();
293unsigned int msize();