Commit 5a915574 5a915574850895a1a84f3fa61c7339b19afeaced by Sergey Poznyakoff

Documented :sieve option group

1 parent 9a98cb34
...@@ -202,6 +202,7 @@ or single quotes). ...@@ -202,6 +202,7 @@ or single quotes).
202 * daemon:: Options common for daemon programs. 202 * daemon:: Options common for daemon programs.
203 * auth:: Authentication-specific options. 203 * auth:: Authentication-specific options.
204 * logging:: Logging control options. 204 * logging:: Logging control options.
205 * sieve:sieve group. Sieve specific options
205 * config sample:: A sample configuration file. 206 * config sample:: A sample configuration file.
206 @end menu 207 @end menu
207 208
...@@ -388,13 +389,31 @@ Port to use ...@@ -388,13 +389,31 @@ Port to use
388 @cindex :logging 389 @cindex :logging
389 390
390 @table @option 391 @table @option
391 @item log-facility @var{facility} 392 @item --log-facility @var{facility}
392 Output logs to the specified @command{syslog} facility. The following 393 Output logs to the specified @command{syslog} facility. The following
393 facility names are recognized: @samp{user}, @samp{daemon}, @samp{mail}, 394 facility names are recognized: @samp{user}, @samp{daemon}, @samp{mail},
394 @samp{auth} and @samp{local0} through @samp{local7}. These names are 395 @samp{auth} and @samp{local0} through @samp{local7}. These names are
395 case-insensitive. 396 case-insensitive.
396 @end table 397 @end table
397 398
399 @node sieve group
400 @subsection Sieve specific options
401 @cindex :sieve
402
403 The following options comprise this group:
404
405 @table @option
406 @item -I @var{dir}
407 @itemx --includedir=@var{dir}
408 Append directory @var{dir} to the list of directories searched for
409 include files.
410
411 @item -L @var{dir}
412 @itemx --libdir=@var{dir}
413 Append directory @var{dir} to the list of directories searched for
414 library files.
415 @end table
416
398 @node config sample 417 @node config sample
399 @subsection A sample configuration file. 418 @subsection A sample configuration file.
400 @cindex mailutils.rc, an example 419 @cindex mailutils.rc, an example
...@@ -1934,7 +1953,7 @@ and appends the received data to the local mailboxes. ...@@ -1934,7 +1953,7 @@ and appends the received data to the local mailboxes.
1934 @subsection Invoking mail.local 1953 @subsection Invoking mail.local
1935 1954
1936 The program uses following option groups: @xref{mailbox}, @xref{auth}, 1955 The program uses following option groups: @xref{mailbox}, @xref{auth},
1937 @xref{logging}. 1956 @xref{logging}, @xref{sieve}.
1938 1957
1939 @table @option 1958 @table @option
1940 @item -f @var{addr} 1959 @item -f @var{addr}
...@@ -2198,7 +2217,6 @@ of actions and tests described in RFC 3028. ...@@ -2198,7 +2217,6 @@ of actions and tests described in RFC 3028.
2198 @menu 2217 @menu
2199 * Invoking Sieve:: 2218 * Invoking Sieve::
2200 * Logging and Debugging:: 2219 * Logging and Debugging::
2201 * Input Language::
2202 * Extending Sieve:: 2220 * Extending Sieve::
2203 @end menu 2221 @end menu
2204 2222
...@@ -2268,7 +2286,8 @@ Log all actions executed. ...@@ -2268,7 +2286,8 @@ Log all actions executed.
2268 @end table 2286 @end table
2269 2287
2270 Apart from these, @command{sieve} understands the options from the 2288 Apart from these, @command{sieve} understands the options from the
2271 following groups: @code{mailbox}, @code{mailer}, @code{logging}. 2289 following groups: @code{sieve}, @code{mailbox}, @code{mailer},
2290 @code{logging}.
2272 2291
2273 @node Logging and Debugging 2292 @node Logging and Debugging
2274 @subsubsection Logging and debugging 2293 @subsubsection Logging and debugging
...@@ -2323,9 +2342,6 @@ logs on standard output. This behaviour is changed when ...@@ -2323,9 +2342,6 @@ logs on standard output. This behaviour is changed when
2323 This option causes @command{sieve} to output its diagnostics to 2342 This option causes @command{sieve} to output its diagnostics to
2324 the given syslog facility. 2343 the given syslog facility.
2325 2344
2326 @node Input Language
2327 @subsubsection Input Language
2328
2329 @node Extending Sieve 2345 @node Extending Sieve
2330 @subsubsection Extending Sieve 2346 @subsubsection Extending Sieve
2331 The basic set of sieve actions, tests and comparators may be extended 2347 The basic set of sieve actions, tests and comparators may be extended
......