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
13c96f59
...
13c96f59c1c862bb62a70f8a6831768d4a576f77
authored
2007-02-23 11:47:36 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(--bulletin-source, --bulletin-db): New options
1 parent
e93b9d64
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
13 deletions
pop3d/pop3d.c
pop3d/pop3d.c
View file @
13c96f5
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
2005 Free Software Foundation, Inc.
2005
, 2007
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -69,24 +69,48 @@ static char doc[] = N_("GNU pop3d -- the POP3 daemon");
#define OPT_EXPIRE 259
#define OPT_EXPIRE_ON_EXIT 260
#define OPT_TLS_REQUIRED 261
#define OPT_BULLETIN_SOURCE 262
#define OPT_BULLETIN_DB 263
static
struct
argp_option
options
[]
=
{
#define GRP 0
{
NULL
,
0
,
NULL
,
0
,
N_
(
"General options"
),
GRP
},
{
"undelete"
,
'u'
,
NULL
,
0
,
N_
(
"Undelete all messages on startup"
),
0
},
#ifdef ENABLE_LOGIN_DELAY
{
"login-delay"
,
OPT_LOGIN_DELAY
,
N_
(
"SECONDS"
),
0
,
N_
(
"Allowed delay between the two successive logins"
),
0
},
{
"stat-file"
,
OPT_STAT_FILE
,
N_
(
"FILENAME"
),
0
,
N_
(
"Name of login statistics file"
),
0
},
#endif
N_
(
"Undelete all messages on startup"
),
GRP
+
1
},
{
"expire"
,
OPT_EXPIRE
,
N_
(
"DAYS"
),
0
,
N_
(
"Expire read messages after the given number of days"
),
0
},
N_
(
"Expire read messages after the given number of days"
),
GRP
+
1
},
{
"delete-expired"
,
OPT_EXPIRE_ON_EXIT
,
NULL
,
0
,
N_
(
"Delete expired messages upon closing the mailbox"
),
0
},
N_
(
"Delete expired messages upon closing the mailbox"
),
GRP
+
1
},
#ifdef WITH_TLS
{
"tls-required"
,
OPT_TLS_REQUIRED
,
NULL
,
0
,
N_
(
"Always require STLS before entering authentication phase"
)},
#endif
#undef GRP
#define GRP 10
#ifdef ENABLE_LOGIN_DELAY
{
NULL
,
0
,
NULL
,
0
,
N_
(
"Login delay control"
),
GRP
},
{
"login-delay"
,
OPT_LOGIN_DELAY
,
N_
(
"SECONDS"
),
0
,
N_
(
"Allowed delay between the two successive logins"
),
GRP
+
1
},
{
"stat-file"
,
OPT_STAT_FILE
,
N_
(
"FILENAME"
),
0
,
N_
(
"Name of login statistics file"
),
GRP
+
1
},
#endif
#undef GRP
#define GRP 20
{
NULL
,
0
,
NULL
,
0
,
N_
(
"Bulletin control"
),
GRP
},
{
"bulletin-source"
,
OPT_BULLETIN_SOURCE
,
N_
(
"MBOX"
),
0
,
N_
(
"Set source mailbox to get bulletins from"
),
GRP
+
1
},
#ifdef USE_DBM
{
"bulletin-db"
,
OPT_BULLETIN_DB
,
N_
(
"FILE"
),
0
,
N_
(
"Set the bulletin database file name"
),
GRP
+
1
},
#endif
#undef GRP
{
NULL
,
0
,
NULL
,
0
,
NULL
,
0
}
};
...
...
@@ -161,6 +185,16 @@ pop3d_parse_opt (int key, char *arg, struct argp_state *astate)
break
;
#endif
case
OPT_BULLETIN_SOURCE
:
set_bulletin_source
(
arg
);
break
;
#ifdef USE_DBM
case
OPT_BULLETIN_DB
:
set_bulletin_db
(
arg
);
break
;
#endif
default:
return
ARGP_ERR_UNKNOWN
;
}
...
...
@@ -179,6 +213,9 @@ main (int argc, char **argv)
mu_argp_init
(
program_version
,
NULL
);
MU_AUTH_REGISTER_ALL_MODULES
();
/* Register the desired formats. */
mu_register_local_mbox_formats
();
#ifdef WITH_TLS
mu_tls_init_argp
();
#endif
/* WITH_TLS */
...
...
@@ -210,9 +247,6 @@ main (int argc, char **argv)
}
}
/* Register the desired formats. */
mu_register_local_mbox_formats
();
/* Set the signal handlers. */
signal
(
SIGINT
,
pop3d_signal
);
signal
(
SIGQUIT
,
pop3d_signal
);
...
...
Please
register
or
sign in
to post a comment