summaryrefslogtreecommitdiff
path: root/pop3d/pop3d.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-08-25 19:23:12 +0300
committerSergey Poznyakoff <gray@gnu.org.ua>2009-08-25 19:23:55 +0300
commit2141acfb58732dab8cdb6ffff18550c0ebf016b5 (patch)
tree0f6668ed42e48d6b8e81498c553c72ce96e16d7f /pop3d/pop3d.c
parent8619a1cb3b5a4b84b365571b711cf792e12ab620 (diff)
downloadmailutils-2141acfb58732dab8cdb6ffff18550c0ebf016b5.tar.gz
mailutils-2141acfb58732dab8cdb6ffff18550c0ebf016b5.tar.bz2
Fix help messages.
Option descriptions in `--help' output do not constitute conceptual sentences. Therefore, they should not begin with a capital letter, nor end with a final point. Affected files: comsat/comsat.c, config/mailutils-config.c, dotlock/dotlock.c, frm/frm.c, frm/from.c, guimb/main.c, imap4d/imap4d.c, libmu_argp/auth.c, libmu_argp/common.c, libmu_argp/gsasl.c, libmu_argp/pam.c, libmu_argp/radius.c, libmu_argp/sieve.c, libmu_argp/sql.c, libmu_argp/tls.c, libmu_argp/virtdomain.c, libmu_auth/sql.c, libmu_cfg/sql.c, maidag/maidag.c, maidag/mailquota.c, maidag/mailtmp.c, mail/mail.c, messages/messages.c, mh/ali.c, mh/anno.c, mh/burst.c, mh/comp.c, mh/fmtcheck.c, mh/folder.c, mh/forw.c, mh/inc.c, mh/install-mh.c, mh/mark.c, mh/mh_init.c, mh/mhl.c, mh/mhn.c, mh/mhparam.c, mh/mhpath.c, mh/pick.c, mh/refile.c, mh/repl.c, mh/rmf.c, mh/rmm.c, mh/scan.c, mh/send.c, mh/sortm.c, mh/whatnow.c, mh/whom.c, mimeview/mimeview.c, movemail/movemail.c, pop3d/pop3d.c, pop3d/popauth.c, readmsg/readmsg.c, sieve/sieve.c
Diffstat (limited to 'pop3d/pop3d.c')
-rw-r--r--pop3d/pop3d.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/pop3d/pop3d.c b/pop3d/pop3d.c
index 9605ecb0d..c1f68bee7 100644
--- a/pop3d/pop3d.c
+++ b/pop3d/pop3d.c
@@ -67,41 +67,41 @@ static char doc[] = N_("GNU pop3d -- the POP3 daemon");
static struct argp_option options[] = {
#define GRP 0
- { "foreground", OPT_FOREGROUND, 0, 0, N_("Remain in foreground."), GRP+1},
- { "inetd", 'i', 0, 0, N_("Run in inetd mode"), GRP+1},
+ { "foreground", OPT_FOREGROUND, 0, 0, N_("remain in foreground"), GRP+1},
+ { "inetd", 'i', 0, 0, N_("run in inetd mode"), GRP+1},
{ "daemon", 'd', N_("NUMBER"), OPTION_ARG_OPTIONAL,
- N_("Runs in daemon mode with a maximum of NUMBER children"), GRP+1 },
+ N_("runs in daemon mode with a maximum of NUMBER children"), GRP+1 },
#undef GRP
#define GRP 5
{"undelete", 'u', NULL, OPTION_HIDDEN,
- N_("Undelete all messages on startup"), GRP+1},
+ N_("undelete all messages on startup"), GRP+1},
{"expire", OPT_EXPIRE, N_("DAYS"), OPTION_HIDDEN,
- N_("Expire read messages after the given number of days"), GRP+1},
+ N_("expire read messages after the given number of days"), GRP+1},
{"delete-expired", OPT_EXPIRE_ON_EXIT, NULL, OPTION_HIDDEN,
- N_("Delete expired messages upon closing the mailbox"), GRP+1},
+ N_("delete expired messages upon closing the mailbox"), GRP+1},
#ifdef WITH_TLS
{"tls-required", OPT_TLS_REQUIRED, NULL, OPTION_HIDDEN,
- N_("Always require STLS before entering authentication phase")},
+ N_("always require STLS before entering authentication phase")},
#endif
#undef GRP
#define GRP 10
#ifdef ENABLE_LOGIN_DELAY
{"login-delay", OPT_LOGIN_DELAY, N_("SECONDS"), OPTION_HIDDEN,
- N_("Allowed delay between two successive logins"), GRP+1},
+ N_("allowed delay between two successive logins"), GRP+1},
{"stat-file", OPT_STAT_FILE, N_("FILENAME"), OPTION_HIDDEN,
- N_("Name of login statistics file"), GRP+1},
+ N_("name of login statistics file"), GRP+1},
#endif
#undef GRP
#define GRP 20
{ "bulletin-source", OPT_BULLETIN_SOURCE, N_("MBOX"), OPTION_HIDDEN,
- N_("Set source mailbox to get bulletins from"), GRP+1 },
+ N_("set source mailbox to get bulletins from"), GRP+1 },
#ifdef USE_DBM
{ "bulletin-db", OPT_BULLETIN_DB, N_("FILE"), OPTION_HIDDEN,
- N_("Set the bulletin database file name"), GRP+1 },
+ N_("set the bulletin database file name"), GRP+1 },
#endif
#undef GRP
@@ -459,9 +459,8 @@ main (int argc, char **argv)
}
else
{
- mu_error (_("error getting mail group: %s"),
- mu_strerror (errno));
- exit (EX_OSERR);
+ mu_diag_funcall (MU_DIAG_ERROR, "getgrnam", "mail", errno);
+ exit (EX_OSERR);
}
}

Return to:

Send suggestions and report system problems to the System administrator.