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
3769cab9
...
3769cab966379be9523596a726aeb4e8f7c043c1
authored
2003-01-26 14:04:19 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated
1 parent
f333a7c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
7 deletions
ChangeLog
mh/rmm.c
mh/scan.c
ChangeLog
View file @
3769cab
2003
-
01
-
26
Sergey
Poznyakoff
*
imap4d
/
auth_gss
.
c
:
Removed
newline
from
the
syslog
diagnostic
message
.
*
imap4d
/
bye
.
c
:
Cleaned
wording
in
diagnostics
.
*
imap4d
/
search
.
c
:
Likewise
.
*
libsieve
/
require
.
c
:
Likewise
.
*
mailbox
/
mu_argp
.
c
:
Likewise
.
*
mh
/
mh_fmtgram
.
y
:
Likewise
.
*
mh
/
mh_format
.
c
:
Likewise
.
*
pop3d
/
extra
.
c
:
Likewise
.
*
sieve
/
sieve
.
c
:
Likewise
.
*
mail
/
summary
.
c
:
Use
ngettext
*
mh
/
folder
.
c
:
Likewise
.
*
mh
/
refile
.
c
:
Likewise
.
*
mh
/
repl
.
c
:
Likewise
.
*
pop3d
/
user
.
c
:
Likewise
.
*
mail
.
remote
/
mail
.
remote
.
c
:
Use
mu_error
instead
of
fprintf
*
readmsg
/
readmsg
.
c
:
Likewise
.
*
mh
/
comp
.
c
:
Fixed
use
of
OPTION_DOC
options
.
*
mh
/
fmtcheck
.
c
:
Likewise
.
*
mh
/
inc
.
c
:
Likewise
.
*
mh
/
mhpath
.
c
:
Likewise
.
*
mh
/
rmf
.
c
:
Likewise
.
2003
-
01
-
23
Wojciech
Polak
*
mailbox
/
mu_argp
.
c
:
Added
WITH_GNUTLS
and
WITH_GSASL
...
...
mh/rmm.c
View file @
3769cab
...
...
@@ -20,14 +20,13 @@
#include <mh.h>
const
char
*
argp_program_version
=
"rmm ("
PACKAGE_STRING
")"
;
static
char
doc
[]
=
"GNU MH rmm"
;
static
char
doc
[]
=
N_
(
"GNU MH rmm
\v
"
"Use -help to obtain the list of traditional MH options."
);
static
char
args_doc
[]
=
N_
(
"[+folder] [msgs]"
);
/* GNU options */
static
struct
argp_option
options
[]
=
{
{
"folder"
,
'f'
,
N_
(
"FOLDER"
),
0
,
N_
(
"Specify folder to operate upon"
)},
{
N_
(
"
\n
Use -help switch to obtain the list of traditional MH options. "
),
0
,
0
,
OPTION_DOC
,
""
},
{
0
}
};
...
...
mh/scan.c
View file @
3769cab
...
...
@@ -27,7 +27,8 @@
#include <mailutils/observer.h>
const
char
*
argp_program_version
=
"scan ("
PACKAGE_STRING
")"
;
static
char
doc
[]
=
"GNU MH scan"
;
static
char
doc
[]
=
N_
(
"GNU MH scan
\v
"
"Use -help to obtain the list of traditional MH options."
);
static
char
args_doc
[]
=
N_
(
"[+folder] [msgs]"
);
/* GNU options */
...
...
@@ -44,9 +45,6 @@ static struct argp_option options[] = {
{
"license"
,
'l'
,
0
,
0
,
N_
(
"Display software license"
),
-
1
},
{
N_
(
"
\n
Use -help switch to obtain the list of traditional MH options. "
),
0
,
0
,
OPTION_DOC
,
""
},
{
0
}
};
...
...
Please
register
or
sign in
to post a comment