Commit 7b333284 7b33328452802337f3c0301d96da0b5430a58223 by Sergey Poznyakoff

Fixes.

* doc/texinfo/Makefile.am (final): Add fix-sentence-spacing.
* doc/texinfo/mailutils.texi: Update.
* doc/texinfo/programs.texi: Update.
* pop3d/pop3d.c, sieve/sieve.c: Use mu_cfg_bool, where appropriate.
1 parent 1dc8eb3f
...@@ -125,7 +125,7 @@ fix-sentence-spacing: ...@@ -125,7 +125,7 @@ fix-sentence-spacing:
125 fi; \ 125 fi; \
126 done 126 done
127 127
128 final: untabify master-menu 128 final: untabify fix-sentence-spacing master-menu
129 129
130 130
131 # Checks 131 # Checks
......
...@@ -227,9 +227,15 @@ Reading Mail ...@@ -227,9 +227,15 @@ Reading Mail
227 227
228 @command{movemail} --- Moves Mail from the User Maildrop to the Local File 228 @command{movemail} --- Moves Mail from the User Maildrop to the Local File
229 229
230 * Movemail Configuration::
230 * Movemail Options:: Description of the Available Options 231 * Movemail Options:: Description of the Available Options
231 * Summary:: Short Movemail Invocation Summary 232 * Summary:: Short Movemail Invocation Summary
232 233
234 @command{readmsg} --- Extract Messages from a Folder
235
236 * Opt-readmsg:: Invocation of @command{readmsg}.
237 * Conf-readmsg:: Configuration of @command{readmsg}.
238
233 @command{sieve} 239 @command{sieve}
234 240
235 * sieve interpreter:: A Sieve Interpreter 241 * sieve interpreter:: A Sieve Interpreter
......
...@@ -127,12 +127,12 @@ cb_bulletin_db (mu_debug_t debug, void *data, mu_config_value_t *val) ...@@ -127,12 +127,12 @@ cb_bulletin_db (mu_debug_t debug, void *data, mu_config_value_t *val)
127 } 127 }
128 128
129 static struct mu_cfg_param pop3d_cfg_param[] = { 129 static struct mu_cfg_param pop3d_cfg_param[] = {
130 { "undelete", mu_cfg_int, &undelete_on_startup, 0, NULL, 130 { "undelete", mu_cfg_bool, &undelete_on_startup, 0, NULL,
131 N_("On startup, clear deletion marks from all the messages.") }, 131 N_("On startup, clear deletion marks from all the messages.") },
132 { "expire", mu_cfg_uint, &expire, 0, NULL, 132 { "expire", mu_cfg_uint, &expire, 0, NULL,
133 N_("Automatically expire read messages after the given number of days."), 133 N_("Automatically expire read messages after the given number of days."),
134 N_("days") }, 134 N_("days") },
135 { "delete-expired", mu_cfg_int, &expire_on_exit, 0, NULL, 135 { "delete-expired", mu_cfg_bool, &expire_on_exit, 0, NULL,
136 N_("Delete expired messages upon closing the mailbox.") }, 136 N_("Delete expired messages upon closing the mailbox.") },
137 #ifdef WITH_TLS 137 #ifdef WITH_TLS
138 { "tls-required", mu_cfg_bool, &tls_required, 0, NULL, 138 { "tls-required", mu_cfg_bool, &tls_required, 0, NULL,
......
...@@ -294,7 +294,7 @@ cb_ticket (mu_debug_t debug, void *data, mu_config_value_t *val) ...@@ -294,7 +294,7 @@ cb_ticket (mu_debug_t debug, void *data, mu_config_value_t *val)
294 } 294 }
295 295
296 static struct mu_cfg_param sieve_cfg_param[] = { 296 static struct mu_cfg_param sieve_cfg_param[] = {
297 { "keep-going", mu_cfg_int, &keep_going, 0, NULL, 297 { "keep-going", mu_cfg_bool, &keep_going, 0, NULL,
298 N_("Do not abort if execution fails on a message.") }, 298 N_("Do not abort if execution fails on a message.") },
299 { "mbox-url", mu_cfg_string, &mbox_url, 0, NULL, 299 { "mbox-url", mu_cfg_string, &mbox_url, 0, NULL,
300 N_("Mailbox to sieve (defaults to user's mail spool)."), 300 N_("Mailbox to sieve (defaults to user's mail spool)."),
......