table.c
4.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* GNU mailutils - a suite of utilities for electronic mail
Copyright (C) 1999, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "mail.h"
const struct mail_command_entry mail_command_table[] = {
{ "a", "alias", mail_alias,
"a[lias] [alias [address...]]" },
{ "alt", "alternates", mail_alt, "alt[ernates] name..." },
{ "C", "Copy", mail_copy, "C[opy] [msglist]" },
{ "cd", "cd", mail_cd, "cd [directory]" },
{ "ch", "chdir", mail_cd, "ch[dir] directory" },
{ "c", "copy", mail_copy, "c[opy] [[msglist] file]" },
{ "d", "delete", mail_delete, "d[elete] [msglist]" },
{ "di", "discard", mail_discard,
"di[scard] [header-field...]" },
{ "dp", "dp", mail_dp, "dp [msglist]" },
{ "dt", "dt", mail_dp, "dt [msglist]" },
{ "ec", "echo", mail_echo, "ec[ho] string ..." },
{ "e", "edit", mail_edit, "e[dit] [msglist]" },
{ "el", "else", mail_if, "el[se]" }, /* FIXME */
{ "en", "endif", mail_if, "en[dif]" }, /* FIXME */
{ "ex", "exit", mail_exit, "ex[it]" },
{ "F", "Followup", mail_followup, "F[ollowup] [msglist]" },
{ "fi", "file", mail_file, "fi[le] [file]" },
{ "fold", "folder", mail_file, "fold[er] [file]" },
{ "folders", "folders", mail_folders, "folders" },
{ "fo", "followup", mail_followup, "fo[llowup] [msglist]" },
{ "f", "from", mail_from, "f[rom] [msglist]" },
{ "g", "group", mail_alias,
"g[roup] [alias [address...]]" },
{ "h", "headers", mail_headers, "h[eaders] [msglist]" },
{ "hel", "help", mail_help, "hel[p] [command...]" },
{ "ho", "hold", mail_hold, "ho[ld] [msglist]" },
{ "i", "if", mail_if, "i[f] s|r" }, /* FIXME */
{ "ig", "ignore", mail_discard, "ig[nore] [header-field...]" },
{ "l", "list", mail_list, "l[ist]" },
{ "m", "mail", mail_send, "m[ail] [address...]" },
{ "mb", "mbox", mail_mbox, "mb[ox] [msglist]" },
{ "n", "next", mail_next, "n[ext] [message]" },
{ "P", "Print", mail_print, "P[rint] [msglist]" },
{ "pi", "pipe", mail_pipe, "pi[pe] [[msglist] command]" },
{ "pre", "preserve", mail_hold, "pre[serve] [msglist]" },
{ "prev", "previous", mail_previous, "prev[ious] [message]" },
{ "p", "print", mail_print, "p[rint] [msglist]" },
{ "q", "quit", mail_quit, "q[uit]" },
{ "R", "Reply", mail_reply, "R[eply] [msglist]" },
{ "R", "Respond", mail_reply, "R[espond] [msglist]" },
{ "r", "reply", mail_reply, "r[eply] [msglist]" },
{ "r", "respond", mail_reply, "r[espond] [msglist]" },
{ "ret", "retain", mail_retain, "ret[ain] [header-field]" },
{ "S", "Save", mail_save, "S[ave] [msglist]" },
{ "s", "save", mail_save, "s[ave] [[msglist] file]" },
{ "se", "set", mail_set,
"se[t] [name[=[string]]...] [name=number...] [noname...]" },
{ "sh", "shell", mail_shell, "sh[ell] [command]" },
{ "si", "size", mail_size, "si[ze] [msglist]" },
{ "so", "source", mail_source, "so[urce] file" },
{ "T", "Type", mail_print, "T[ype] [msglist]" },
{ "to", "top", mail_top, "to[p] [msglist]" },
{ "tou", "touch", mail_touch, "tou[ch] [msglist]" },
{ "t", "type", mail_print, "t[ype] [msglist]" },
{ "una", "unalias", mail_unalias, "una[lias] [alias]..." },
{ "u", "undelete", mail_undelete, "u[ndelete] [msglist]" },
{ "uns", "unset", mail_unset, "uns[et] name..." },
{ "v", "visual", mail_visual, "v[isual] [msglist]" },
{ "W", "Write", mail_write, "W[rite] [msglist]" },
{ "w", "write", mail_write, "w[rite] [[msglist] file]" },
{ "x", "xit", mail_exit, "x[it]" },
{ "z", "", mail_z, "z[+|-]" },
{ "?", "?", mail_help, "? [command...]" },
{ "!", "", mail_shell, "![command]" },
{ "=", "=", mail_eq, "=" },
{ "#", "#", NULL, "# comment" },
{ "*", "*", mail_list, "*" },
{ "+", "+", mail_next, "+ [message]" },
{ "|", "|", mail_pipe, "| [[msglist] command]" },
{ "-", "-", mail_previous, "- [message]" },
{ 0, 0, 0, 0}
};
const struct mail_command_entry mail_escape_table[] = {
{0, 0, 0, 0}
};