X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=doc%2Fmanual.sgml.head;h=2b5df61a29a21bd13337a03f4a10ad35b34eddd6;hp=c32036c8ec72ebe390621d42018c6556a709b2b6;hb=6b4750772eba54f979455376713b49900a4d5016;hpb=30a2346a5f3928412e47b0b7f80e987a0c20fddd diff --git a/doc/manual.sgml.head b/doc/manual.sgml.head index c32036c..2b5df61 100644 --- a/doc/manual.sgml.head +++ b/doc/manual.sgml.head @@ -13,7 +13,7 @@ Introduction

-Mutt Home Page -

- Mutt-ng Home Page

- + Mailing Lists

@@ -818,6 +814,36 @@ A \ at the end of a line can be used to split commands over multiple lines, provided that the split points don't appear in the middle of command names. +Please note that, unlike the various shells, mutt-ng interpretes a ``\'' +at the end of a line also in comments. This allows you to disable a command +split over multiple lines with only one ``#''. + + +# folder-hook . \ + set realname="Michael \"MuttDude\" Elkins" + + +When testing your config files, beware the following caveat. The backslash +at the end of the commented line extends the current line with the next line +- then referred to as a ``continuation line''. As the first line is +commented with a hash (#) all following continuation lines are also +part of a comment and therefore are ignored, too. So take care of comments +when continuation lines are involved within your setup files! + +Abstract example: + + +line1\ +line2a # line2b\ +line3\ +line4 +line5 + + +line1 ``continues'' until line4. however, the part after the # is a +comment which includes line3 and line4. line5 is a new line of its own and +thus is interpreted again. + It is also possible to substitute the output of a Unix command in an initialization file. This is accomplished by enclosing the command in backquotes (``). For example, @@ -1713,6 +1739,51 @@ If the filename ends with a vertical bar (|), then source ~/bin/myscript|). +Configuring features conditionaly

+Usage: +ifdef feature_imap 'source ~/.mutt-ng/imap_setup' +# or +# ifdef imap_user 'source ~/.mutt-ng/imap_setup' +# or +# ... + + +To exit mutt-ng directly if no NNTP support is compiled in: + +ifndef feature_nntp 'push q' +# or +# ifndef newsrc 'push q' +# or +# ... + + +To only set the when the system's SVN +is recent enough to have it: + +ifdef imap_mail_check 'set imap_mail_check=300' + + Removing hooks

Usage: