Commit 5aa0383a 5aa0383aa44c58d6f1e54704b67c0a3323ff5c23 by Sam Roberts

split mailutils capabilities

1 parent 605b1f1b
...@@ -46,8 +46,6 @@ static char args_doc[] = "recipient [recipient ...]"; ...@@ -46,8 +46,6 @@ static char args_doc[] = "recipient [recipient ...]";
46 46
47 static struct argp_option options[] = 47 static struct argp_option options[] =
48 { 48 {
49 {NULL, 0, NULL, 0,
50 "mail.local specific switches", 0},
51 { "ex-multiple-delivery-success", ARG_MULTIPLE_DELIVERY, NULL, 0, 49 { "ex-multiple-delivery-success", ARG_MULTIPLE_DELIVERY, NULL, 0,
52 "Don't return errors when delivering to multiple recipients", 0 }, 50 "Don't return errors when delivering to multiple recipients", 0 },
53 { "ex-quota-tempfail", ARG_QUOTA_TEMPFAIL, NULL, 0, 51 { "ex-quota-tempfail", ARG_QUOTA_TEMPFAIL, NULL, 0,
...@@ -73,7 +71,6 @@ static struct argp_option options[] = ...@@ -73,7 +71,6 @@ static struct argp_option options[] =
73 "Enable debugging", 0 }, 71 "Enable debugging", 0 },
74 { "timeout", 't', "NUMBER", 0, 72 { "timeout", 't', "NUMBER", 0,
75 "Set timeout for acquiring the lockfile" }, 73 "Set timeout for acquiring the lockfile" },
76
77 { NULL, 0, NULL, 0, NULL, 0 } 74 { NULL, 0, NULL, 0, NULL, 0 }
78 }; 75 };
79 76
...@@ -89,8 +86,9 @@ static struct argp argp = { ...@@ -89,8 +86,9 @@ static struct argp argp = {
89 }; 86 };
90 87
91 static const char *argp_capa[] = { 88 static const char *argp_capa[] = {
92 "mailutils",
93 "auth", 89 "auth",
90 "common",
91 "mailbox",
94 "logging", 92 "logging",
95 NULL 93 NULL
96 }; 94 };
......