Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
0f91d28c
...
0f91d28c563e5d8cdb4b1dda25eb9791f311ae61
authored
2002-04-11 03:13:38 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
mailutils capbilities were split up
1 parent
ecfb69d7
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
8 deletions
comsat/comsat.c
guimb/main.c
imap4d/imap4d.c
comsat/comsat.c
View file @
0f91d28
...
...
@@ -53,8 +53,6 @@ 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
}
};
...
...
@@ -71,9 +69,11 @@ static struct argp argp = {
};
static
const
char
*
comsat_argp_capa
[]
=
{
"mailutils"
,
"daemon"
,
"common"
,
"logging"
,
"mailbox"
,
"licence"
,
NULL
};
...
...
guimb/main.c
View file @
0f91d28
...
...
@@ -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
[])
...
...
imap4d/imap4d.c
View file @
0f91d28
...
...
@@ -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
};
...
...
Please
register
or
sign in
to post a comment