xref: /freebsd/usr.bin/mail/cmdtab.c (revision 3494f7c0)
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1980, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include "def.h"
33 #include "extern.h"
34 
35 /*
36  * Mail -- a mail program
37  *
38  * Define all of the command names and bindings.
39  */
40 
41 const struct cmd cmdtab[] = {
42 	/*						msgmask msgflag  */
43 	/* command	function	argtype		result	& mask   */
44 	/* -------	--------	-------		------	-------  */
45 	{ "next",	next,		NDMLIST,	0,	MMNDEL	},
46 	{ "alias",	group,		M|RAWLIST,	0,	1000 	},
47 	{ "print",	type,		MSGLIST,	0,	MMNDEL	},
48 	{ "type",	type,		MSGLIST,	0,	MMNDEL	},
49 	{ "Type",	Type,		MSGLIST,	0,	MMNDEL	},
50 	{ "Print",	Type,		MSGLIST,	0,	MMNDEL	},
51 	{ "visual",	visual,		I|MSGLIST,	0,	MMNORM	},
52 	{ "top",	top,		MSGLIST,	0,	MMNDEL	},
53 	{ "touch",	stouch,		W|MSGLIST,	0,	MMNDEL	},
54 	{ "preserve",	preserve,	W|MSGLIST,	0,	MMNDEL	},
55 	{ "delete",	deletecmd,	W|P|MSGLIST,	0,	MMNDEL	},
56 	{ "dp",		deltype,	W|MSGLIST,	0,	MMNDEL	},
57 	{ "dt",		deltype,	W|MSGLIST,	0,	MMNDEL	},
58 	{ "undelete",	undeletecmd, 	P|MSGLIST,	MDELETED,MMNDEL },
59 	{ "unset",	unset,		M|RAWLIST,	1,	1000 	},
60 	{ "mail",	sendmail,	R|M|I|STRLIST,	0,	0 	},
61 	{ "mbox",	mboxit,		W|MSGLIST,	0,	0 	},
62 	{ "more",	more,		MSGLIST,	0,	MMNDEL	},
63 	{ "page",	more,		MSGLIST,	0,	MMNDEL	},
64 	{ "More",	More,		MSGLIST,	0,	MMNDEL	},
65 	{ "Page",	More,		MSGLIST,	0,	MMNDEL	},
66 	{ "unread",	unread,		MSGLIST,	0,	MMNDEL	},
67 	{ "!",		shell,		I|STRLIST,	0,	0	},
68 	{ "copy",	copycmd,	M|STRLIST,	0,	0 	},
69 	{ "chdir",	schdir,		M|RAWLIST,	0,	1 	},
70 	{ "cd",		schdir,		M|RAWLIST,	0,	1 	},
71 	{ "save",	save,		STRLIST,	0,	0	},
72 	{ "source",	source,		M|RAWLIST,	1,	1	},
73 	{ "set",	set,		M|RAWLIST,	0,	1000 	},
74 	{ "shell",	dosh,		I|NOLIST,	0,	0 	},
75 	{ "version",	pversion,	M|NOLIST,	0,	0 	},
76 	{ "group",	group,		M|RAWLIST,	0,	1000 	},
77 	{ "write",	swrite,		STRLIST,	0,	0 	},
78 	{ "from",	from,		MSGLIST,	0,	MMNORM	},
79 	{ "file",	file,		T|M|RAWLIST,	0,	1 	},
80 	{ "folder",	file,		T|M|RAWLIST,	0,	1 	},
81 	{ "folders",	folders,	T|M|NOLIST,	0,	0 	},
82 	{ "?",		help,		M|NOLIST,	0,	0 	},
83 	{ "z",		scroll,		M|STRLIST,	0,	0 	},
84 	{ "headers",	headers,	MSGLIST,	0,	MMNDEL	},
85 	{ "help",	help,		M|NOLIST,	0,	0 	},
86 	{ "=",		pdot,		NOLIST,		0,	0 	},
87 	{ "Reply",	Respond,	R|I|MSGLIST,	0,	MMNDEL	},
88 	{ "Respond",	Respond,	R|I|MSGLIST,	0,	MMNDEL	},
89 	{ "reply",	respond,	R|I|MSGLIST,	0,	MMNDEL	},
90 	{ "respond",	respond,	R|I|MSGLIST,	0,	MMNDEL	},
91 	{ "edit",	editor,		I|MSGLIST,	0,	MMNORM	},
92 	{ "echo",	echo,		M|RAWLIST,	0,	1000 	},
93 	{ "quit",	quitcmd,	NOLIST,		0,	0 	},
94 	{ "list",	pcmdlist,	M|NOLIST,	0,	0 	},
95 	{ "xit",	rexit,		M|NOLIST,	0,	0 	},
96 	{ "exit",	rexit,		M|NOLIST,	0,	0 	},
97 	{ "size",	messize,	MSGLIST,	0,	MMNDEL	},
98 	{ "hold",	preserve,	W|MSGLIST,	0,	MMNDEL	},
99 	{ "if",		ifcmd,		F|M|RAWLIST,	1,	1 	},
100 	{ "else",	elsecmd,	F|M|RAWLIST,	0,	0 	},
101 	{ "endif",	endifcmd,	F|M|RAWLIST,	0,	0 	},
102 	{ "alternates",	alternates,	M|RAWLIST,	0,	1000 	},
103 	{ "ignore",	igfield,	M|RAWLIST,	0,	1000 	},
104 	{ "discard",	igfield,	M|RAWLIST,	0,	1000 	},
105 	{ "retain",	retfield,	M|RAWLIST,	0,	1000 	},
106 	{ "saveignore",	saveigfield,	M|RAWLIST,	0,	1000 	},
107 	{ "savediscard",saveigfield,	M|RAWLIST,	0,	1000 	},
108 	{ "saveretain",	saveretfield,	M|RAWLIST,	0,	1000 	},
109 /*	{ "Header",	Header,		STRLIST,	0,	1000	}, */
110 	{ "core",	core,		M|NOLIST,	0,	0 	},
111 	{ "#",		null,		M|NOLIST,	0,	0 	},
112 	{ "clobber",	clobber,	M|RAWLIST,	0,	1 	},
113 	{ "inc",	inc,		T|NOLIST,	0,	0 	},
114 	{ 0,		0,		0,		0,	0 	}
115 };
116