summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Roberts <sroberts@uniserve.com>2002-04-11 03:13:38 +0000
committerSam Roberts <sroberts@uniserve.com>2002-04-11 03:13:38 +0000
commit0f91d28c563e5d8cdb4b1dda25eb9791f311ae61 (patch)
tree193c6430a7343c31edd0245924d28484dc69bb76
parentecfb69d75cd29975df94500fa5bd062f4e871d23 (diff)
downloadmailutils-0f91d28c563e5d8cdb4b1dda25eb9791f311ae61.tar.gz
mailutils-0f91d28c563e5d8cdb4b1dda25eb9791f311ae61.tar.bz2
mailutils capbilities were split up
-rw-r--r--comsat/comsat.c8
-rw-r--r--guimb/main.c7
-rw-r--r--imap4d/imap4d.c8
3 files changed, 14 insertions, 9 deletions
diff --git a/comsat/comsat.c b/comsat/comsat.c
index 7bd68fd3d..b8c8b0dc7 100644
--- a/comsat/comsat.c
+++ b/comsat/comsat.c
@@ -53,10 +53,8 @@ static char doc[] = "GNU comsatd";
static struct argp_option options[] =
{
- {NULL, 0, NULL, 0,
- "comsatd specific switches:", 0},
{"config", 'c', "FILE", 0, "Read configuration from FILE", 0},
- { NULL, 0, NULL, 0, NULL, 0 }
+ { NULL, 0, NULL, 0, NULL, 0 }
};
static error_t comsatd_parse_opt (int key, char *arg, struct argp_state *state);
@@ -71,9 +69,11 @@ static struct argp argp = {
};
static const char *comsat_argp_capa[] = {
- "mailutils",
"daemon",
+ "common",
"logging",
+ "mailbox",
+ "licence",
NULL
};
diff --git a/guimb/main.c b/guimb/main.c
index 33174110b..b3550b102 100644
--- a/guimb/main.c
+++ b/guimb/main.c
@@ -133,7 +133,12 @@ static struct argp argp = {
NULL, NULL
};
-static const char *guimb_argp_capa[] = {"mailutils", NULL};
+static const char *guimb_argp_capa[] = {
+ "common",
+ "mailbox",
+ "licence",
+ NULL
+};
int
main (int argc, char *argv[])
diff --git a/imap4d/imap4d.c b/imap4d/imap4d.c
index cc5400c93..1d7416158 100644
--- a/imap4d/imap4d.c
+++ b/imap4d/imap4d.c
@@ -42,8 +42,6 @@ static char doc[] = "GNU imap4d -- the IMAP4D daemon";
static struct argp_option options[] =
{
- {NULL, 0, NULL, 0,
- "imap4d specific switches:", 0},
{"other-namespace", 'O', "PATHLIST", 0,
"set the `other' namespace", 0},
{"shared-namespace", 'S', "PATHLIST", 0,
@@ -63,10 +61,12 @@ static struct argp argp = {
};
static const char *imap4d_capa[] = {
- "mailutils",
"daemon",
- "logging",
"auth",
+ "common",
+ "mailbox",
+ "logging",
+ "licence",
NULL
};

Return to:

Send suggestions and report system problems to the System administrator.