Commit 06a4dfc7 06a4dfc73b6ea0a1c8c1dc3912986ffe07932782 by Sergey Poznyakoff

"mailutils" capability does not exist any more. Changed to "common", "license".

1 parent 95ccd0fb
...@@ -31,8 +31,6 @@ static char doc[] = "GNU mail -- the standard /bin/mail interface"; ...@@ -31,8 +31,6 @@ static char doc[] = "GNU mail -- the standard /bin/mail interface";
31 static char args_doc[] = "[address...]"; 31 static char args_doc[] = "[address...]";
32 32
33 static struct argp_option options[] = { 33 static struct argp_option options[] = {
34 {NULL, 0, NULL, 0,
35 "mail specific switches:", 0},
36 {"exist", 'e', 0, 0, "Return true if mail exists", 0}, 34 {"exist", 'e', 0, 0, "Return true if mail exists", 0},
37 {"file", 'f', "FILE", OPTION_ARG_OPTIONAL, 35 {"file", 'f', "FILE", OPTION_ARG_OPTIONAL,
38 "Operate on mailbox FILE (default ~/mbox)", 0}, 36 "Operate on mailbox FILE (default ~/mbox)", 0},
...@@ -169,7 +167,11 @@ static struct argp argp = { ...@@ -169,7 +167,11 @@ static struct argp argp = {
169 NULL, NULL 167 NULL, NULL
170 }; 168 };
171 169
172 static const char *mail_capa[] = { "mailutils", NULL }; 170 static const char *mail_capa[] = {
171 "common",
172 "license",
173 NULL
174 };
173 175
174 static char * 176 static char *
175 mail_cmdline(void *closure, int cont) 177 mail_cmdline(void *closure, int cont)
......
...@@ -40,7 +40,8 @@ static struct argp_option options[] = { ...@@ -40,7 +40,8 @@ static struct argp_option options[] = {
40 }; 40 };
41 41
42 static const char *argp_capa[] = { 42 static const char *argp_capa[] = {
43 "mailutils", 43 "common",
44 "license",
44 NULL 45 NULL
45 }; 46 };
46 47
......
...@@ -57,7 +57,8 @@ static struct argp argp = { ...@@ -57,7 +57,8 @@ static struct argp argp = {
57 }; 57 };
58 58
59 static const char *pop3d_argp_capa[] = { 59 static const char *pop3d_argp_capa[] = {
60 "mailutils", 60 "common",
61 "license",
61 "daemon", 62 "daemon",
62 "logging", 63 "logging",
63 "auth", 64 "auth",
......