aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2016-10-29 21:51:00 +0300
committerSergey Poznyakoff <gray@gnu.org>2016-10-29 21:51:00 +0300
commit67ef8ed97b4192faa7b09bfa4fc899587f252f6d (patch)
treed2e2355196947c31b6299a9a7487f3b3e71ad6d1 /src
parent8a851aaa1382d188ca2968e7bbd813e99507c4ff (diff)
downloadmailfromd-67ef8ed97b4192faa7b09bfa4fc899587f252f6d.tar.gz
mailfromd-67ef8ed97b4192faa7b09bfa4fc899587f252f6d.tar.bz2
Minor fixes
Diffstat (limited to 'src')
-rw-r--r--src/calloutd.c5
-rw-r--r--src/main.c2
-rw-r--r--src/mfdbtool.c1
-rw-r--r--src/srvcfg.c14
4 files changed, 11 insertions, 11 deletions
diff --git a/src/calloutd.c b/src/calloutd.c
index 4ad4103f..65e0b7b4 100644
--- a/src/calloutd.c
+++ b/src/calloutd.c
@@ -52,11 +52,12 @@ struct mu_cfg_param callout_cfg_param[] = {
{ ".mfd:server", mu_cfg_section, NULL, 0, NULL, NULL },
{ "lock-retry-count", mu_cfg_callback, NULL, 0,
config_cb_lock_retry_count,
- N_("Retry acquiring DBM file lock this number of times.") },
+ N_("Retry acquiring DBM file lock this number of times."),
+ N_("arg: number") },
{ "lock-retry-timeout", mu_cfg_callback, NULL, 0,
config_cb_lock_retry_timeout,
N_("Set the time span between the two DBM locking attempts."),
- N_("time") },
+ N_("time: interval") },
{ NULL }
};
diff --git a/src/main.c b/src/main.c
index 94b7f6b0..18785afa 100644
--- a/src/main.c
+++ b/src/main.c
@@ -867,7 +867,7 @@ struct mu_cfg_param mf_cfg_param[] = {
{ "lock-retry-timeout", mu_cfg_callback, NULL, 0,
config_cb_lock_retry_timeout,
N_("Set the time span between the two DBM locking attempts."),
- N_("time") },
+ N_("time: interval") },
{ "max-match-mx", mu_c_size, &max_match_mx, 0, NULL,
N_("Maximum number of MXs used by MFL \"mx match\" operation.") },
diff --git a/src/mfdbtool.c b/src/mfdbtool.c
index ab32a57c..03649f0b 100644
--- a/src/mfdbtool.c
+++ b/src/mfdbtool.c
@@ -331,7 +331,6 @@ struct mu_cfg_param mfdbtool_cfg_param[] = {
};
static char *capa[] = {
- "common",
"debug",
"locking",
NULL
diff --git a/src/srvcfg.c b/src/srvcfg.c
index b6a8f92a..a0a84d20 100644
--- a/src/srvcfg.c
+++ b/src/srvcfg.c
@@ -417,40 +417,40 @@ struct mu_cfg_param smtp_timeout_section_param[] = {
{ "connection", mu_cfg_callback,
NULL, smtp_timeout_connect * sizeof(time_t), cb_timeout,
N_("Initial SMTP connection timeout."),
- N_("time") },
+ N_("time: interval") },
{ "initial-response",
mu_cfg_callback,
NULL, smtp_timeout_initial * sizeof(time_t), cb_timeout,
N_("Timeout for initial SMTP response."),
- N_("time") },
+ N_("time: interval") },
{ "helo",
mu_cfg_callback,
NULL, smtp_timeout_helo * sizeof(time_t), cb_timeout,
N_("Timeout for HELO response."),
- N_("time") },
+ N_("time: interval") },
{ "mail",
mu_cfg_callback,
NULL, smtp_timeout_mail * sizeof(time_t), cb_timeout,
N_("Timeout for MAIL response."),
- N_("time") },
+ N_("time: interval") },
{ "rcpt",
mu_cfg_callback,
NULL, smtp_timeout_rcpt * sizeof(time_t),
cb_timeout,
N_("Timeout for RCPT response."),
- N_("time") },
+ N_("time: interval") },
{ "rset",
mu_cfg_callback,
NULL, smtp_timeout_rset * sizeof(time_t),
cb_timeout,
N_("Timeout for RSET response."),
- N_("time") },
+ N_("time: interval") },
{ "quit",
mu_cfg_callback,
NULL, smtp_timeout_quit * sizeof(time_t),
cb_timeout,
N_("Timeout for QUIT response."),
- N_("time") },
+ N_("time: interval") },
{ NULL }
};

Return to:

Send suggestions and report system problems to the System administrator.