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
06a4dfc7
...
06a4dfc73b6ea0a1c8c1dc3912986ffe07932782
authored
2002-04-11 10:13:40 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
"mailutils" capability does not exist any more. Changed to "common", "license".
1 parent
95ccd0fb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
mail/mail.c
messages/messages.c
pop3d/pop3d.c
mail/mail.c
View file @
06a4dfc
...
...
@@ -31,8 +31,6 @@ static char doc[] = "GNU mail -- the standard /bin/mail interface";
static
char
args_doc
[]
=
"[address...]"
;
static
struct
argp_option
options
[]
=
{
{
NULL
,
0
,
NULL
,
0
,
"mail specific switches:"
,
0
},
{
"exist"
,
'e'
,
0
,
0
,
"Return true if mail exists"
,
0
},
{
"file"
,
'f'
,
"FILE"
,
OPTION_ARG_OPTIONAL
,
"Operate on mailbox FILE (default ~/mbox)"
,
0
},
...
...
@@ -169,7 +167,11 @@ static struct argp argp = {
NULL
,
NULL
};
static
const
char
*
mail_capa
[]
=
{
"mailutils"
,
NULL
};
static
const
char
*
mail_capa
[]
=
{
"common"
,
"license"
,
NULL
};
static
char
*
mail_cmdline
(
void
*
closure
,
int
cont
)
...
...
messages/messages.c
View file @
06a4dfc
...
...
@@ -40,7 +40,8 @@ static struct argp_option options[] = {
};
static
const
char
*
argp_capa
[]
=
{
"mailutils"
,
"common"
,
"license"
,
NULL
};
...
...
pop3d/pop3d.c
View file @
06a4dfc
...
...
@@ -57,7 +57,8 @@ static struct argp argp = {
};
static
const
char
*
pop3d_argp_capa
[]
=
{
"mailutils"
,
"common"
,
"license"
,
"daemon"
,
"logging"
,
"auth"
,
...
...
Please
register
or
sign in
to post a comment