]> granicus.if.org Git - neomutt/log
neomutt
15 years agoGive $pager_context lines of context when searching page-based menus. Closes #976.
Rocco Rutte [Sun, 31 May 2009 10:40:37 +0000 (12:40 +0200)]
Give $pager_context lines of context when searching page-based menus. Closes #976.

15 years agof=f: Strip trailing spaces for interoperability. Closes #3001.
Rocco Rutte [Sun, 31 May 2009 09:32:06 +0000 (11:32 +0200)]
f=f: Strip trailing spaces for interoperability. Closes #3001.

If we make a fixed reply to a flowed message we remove trailing
spaces and can now safely allow $indent_string to be used which
is what users expect.

Second, if we make a flowed reply to a fixed message we also
strip trailing spaces since from format=fixed we assume all
lines are fixed (i.e. we don't want to errorneously make fixed
lines flowed).

15 years agoAdd $honor_disposition to not display attachments inline. Closes #3170.
Rocco Rutte [Sun, 31 May 2009 08:40:23 +0000 (10:40 +0200)]
Add $honor_disposition to not display attachments inline. Closes #3170.

Previously all MIME parts were displayed inline regardless of the
Content-Disposition header (if present). With $honor_disposition
set, only inline parts are displayed inline, attachments can only
be viewed from the attachments menu.

15 years agoDisables the insecure SSLv2 protocol. Closes #3192.
Dan Loewenherz [Sat, 25 Apr 2009 05:56:39 +0000 (01:56 -0400)]
Disables the insecure SSLv2 protocol. Closes #3192.

15 years agoKeep new mail flag for mbox/mmdf folders after closing. Closes #1362.
Rocco Rutte [Sat, 30 May 2009 17:37:33 +0000 (19:37 +0200)]
Keep new mail flag for mbox/mmdf folders after closing. Closes #1362.

15 years agoUpdated French translation.
Vincent Lefevre [Sat, 30 May 2009 17:23:27 +0000 (10:23 -0700)]
Updated French translation.

15 years agoFix logic in f260f5836284
Rocco Rutte [Fri, 29 May 2009 22:24:02 +0000 (00:24 +0200)]
Fix logic in f260f5836284

15 years agoDrop modified version of and use mutt_read_line() in pager, too
Rocco Rutte [Fri, 29 May 2009 19:33:45 +0000 (21:33 +0200)]
Drop modified version of and use mutt_read_line() in pager, too

15 years agoAdd flags to mutt_read_line() for EOL-stripping and continuation support
Rocco Rutte [Fri, 29 May 2009 19:24:29 +0000 (21:24 +0200)]
Add flags to mutt_read_line() for EOL-stripping and continuation support

We use these to stop supporting EOL-escaping with \ which was
wrong in most cases (e.g. $history_file), support is kept for
reading config and mailcap files.

Leaving CRLF in will be used for the pager.

15 years agoFall back to search if no query exists for search-(next|opposite)
Rocco Rutte [Fri, 29 May 2009 14:40:40 +0000 (16:40 +0200)]
Fall back to search if no query exists for search-(next|opposite)

The pager had the fall-through to search, so for
consistency do that in other menues as well.

15 years agoFix pager search prompt for reverse search
Rocco Rutte [Fri, 29 May 2009 14:21:15 +0000 (16:21 +0200)]
Fix pager search prompt for reverse search

When doing a reverse search for the first time after switching to the
pager, SearchBack is always 0 and thus gave the wrong prompt, change to
using op directly. While I'm at it, unify search prompts.

15 years agoManual: Fix markup of environment variables
Rocco Rutte [Fri, 29 May 2009 11:27:52 +0000 (13:27 +0200)]
Manual: Fix markup of environment variables

15 years agoSMTP: don't interactively authenticate without a password in batch/mailx mode
Rocco Rutte [Thu, 28 May 2009 14:37:44 +0000 (16:37 +0200)]
SMTP: don't interactively authenticate without a password in batch/mailx mode

Otherwise, if we don't have a password and curses is not running, the
SASL authentication callback will crash mutt. We now abort if the
password wasn't given in $smtp_url.

15 years agoManual: vertical-align table cells at the top
Rocco Rutte [Thu, 28 May 2009 13:20:46 +0000 (15:20 +0200)]
Manual: vertical-align table cells at the top

15 years agoManual: Wrap muttrc commands in <command/>
Rocco Rutte [Thu, 28 May 2009 13:19:14 +0000 (15:19 +0200)]
Manual: Wrap muttrc commands in <command/>

15 years agognutls: do not ignore certificate problems.
Brendan Cully [Thu, 28 May 2009 06:14:48 +0000 (23:14 -0700)]
gnutls: do not ignore certificate problems.
Specifically, do not allow revoked certificates or those signed by non-CAs
unless they have been explicitly stored in the trusted certificate file.
Thanks to Miroslav Lichvar.

15 years agoDon't prompt to save certificates that are already saved but invalid.
Miroslav Lichvar [Thu, 28 May 2009 05:55:26 +0000 (22:55 -0700)]
Don't prompt to save certificates that are already saved but invalid.

15 years agoDon't leak gnutls certs on preauth validation failure.
Brendan Cully [Thu, 28 May 2009 05:52:04 +0000 (22:52 -0700)]
Don't leak gnutls certs on preauth validation failure.
Thanks to Miroslav Lichvar.

15 years agoFix TLS certificate chain validation for openssl.
Brendan Cully [Thu, 28 May 2009 05:40:34 +0000 (22:40 -0700)]
Fix TLS certificate chain validation for openssl.

15 years agoFix a serious oversight validating TLS certificates.
Brendan Cully [Tue, 26 May 2009 00:31:27 +0000 (17:31 -0700)]
Fix a serious oversight validating TLS certificates.
If any certificate in a chain presented by a server was accepted, the
connection was allowed without verifying that the presented
certificate was actually signed by the certificate in the chain.

15 years agoUpdated Czech translation.
Petr Písař [Thu, 28 May 2009 05:13:27 +0000 (22:13 -0700)]
Updated Czech translation.

15 years agoDocument that -- is always mandatory after -a. Closes #3235.
Rocco Rutte [Wed, 27 May 2009 08:13:42 +0000 (10:13 +0200)]
Document that -- is always mandatory after -a. Closes #3235.

15 years agoMention account-hook in the docs for $tunnel. Closes #3237.
Rocco Rutte [Wed, 27 May 2009 07:48:00 +0000 (09:48 +0200)]
Mention account-hook in the docs for $tunnel. Closes #3237.

15 years agoUse charset parameter to view text attachments using <view-attach>. Closes #3234.
Rocco Rutte [Tue, 26 May 2009 15:57:16 +0000 (17:57 +0200)]
Use charset parameter to view text attachments using <view-attach>. Closes #3234.

15 years agopager: print progress percentage for attachments, too
Rocco Rutte [Mon, 25 May 2009 13:57:48 +0000 (15:57 +0200)]
pager: print progress percentage for attachments, too

15 years agoMark strings for translation
Rocco Rutte [Mon, 25 May 2009 13:25:42 +0000 (15:25 +0200)]
Mark strings for translation

15 years agoUpdated French translation.
Vincent Lefevre [Tue, 19 May 2009 03:48:57 +0000 (20:48 -0700)]
Updated French translation.

15 years agoPOP: Notify user when messages are lost. Closes #2226.
Takahashi Tamotsu [Fri, 15 May 2009 13:03:40 +0000 (15:03 +0200)]
POP: Notify user when messages are lost. Closes #2226.

15 years agoPOP: Ignore already-deleted messages while syncing. Closes #2225.
Takahashi Tamotsu [Fri, 15 May 2009 12:54:04 +0000 (14:54 +0200)]
POP: Ignore already-deleted messages while syncing. Closes #2225.

15 years agoMerge
Rocco Rutte [Fri, 15 May 2009 10:47:43 +0000 (12:47 +0200)]
Merge

15 years agoMake "uncolor" also work header and body objects. Closes #1046.
Seth Arnold [Fri, 15 May 2009 10:46:33 +0000 (12:46 +0200)]
Make "uncolor" also work header and body objects. Closes #1046.

15 years agoDon't loose error message when attachment saving fails. Closes #3156.
Rocco Rutte [Wed, 13 May 2009 16:03:34 +0000 (18:03 +0200)]
Don't loose error message when attachment saving fails. Closes #3156.

15 years agoDon't set 'replied' flag if user changes References/IRT. Closes #2044.
Rocco Rutte [Wed, 13 May 2009 12:20:45 +0000 (14:20 +0200)]
Don't set 'replied' flag if user changes References/IRT. Closes #2044.

15 years agoAdd mutt_find_list() to lookup data in lists
Rocco Rutte [Wed, 13 May 2009 12:19:26 +0000 (14:19 +0200)]
Add mutt_find_list() to lookup data in lists

15 years agoPrune empty address groups when preparing replies. Closes #2875.
Rocco Rutte [Wed, 13 May 2009 10:52:37 +0000 (12:52 +0200)]
Prune empty address groups when preparing replies. Closes #2875.

15 years agoActually reopen mbox/mmdf files in case we find modifications. Closes #2725.
Rocco Rutte [Wed, 13 May 2009 10:21:43 +0000 (12:21 +0200)]
Actually reopen mbox/mmdf files in case we find modifications. Closes #2725.

Since the file is changed while we have it open in ctx->fp, we likely
get wrong information when parsing the mailbox. Now we explicitely close
and (re)open it.

15 years agoBackout errorneously commited mbox atime fix
Rocco Rutte [Tue, 12 May 2009 14:26:00 +0000 (16:26 +0200)]
Backout errorneously commited mbox atime fix

15 years agoFix description for <save-message>
Rocco Rutte [Tue, 12 May 2009 13:21:16 +0000 (15:21 +0200)]
Fix description for <save-message>

15 years agoFix maildir times in mailboxes browser. Closes #626.
Rocco Rutte [Wed, 29 Apr 2009 12:49:09 +0000 (14:49 +0200)]
Fix maildir times in mailboxes browser. Closes #626.

Instead of using the (pointless) mtime of the top-level maildir folder,
use the latest mtime of the "new" and "cur" subdirectories. Maildir
folders in the mailboxes list can now be properly sorted by date. This
does not affect the directory browser. Also see #2421.

15 years agoMove Maildir/MH folder detection from mx.c to mh.c
Rocco Rutte [Wed, 29 Apr 2009 09:53:01 +0000 (11:53 +0200)]
Move Maildir/MH folder detection from mx.c to mh.c

15 years agoFold References: header so we never run into line length problems
Rocco Rutte [Tue, 28 Apr 2009 13:12:25 +0000 (15:12 +0200)]
Fold References: header so we never run into line length problems

15 years agoFix comment typo
Rocco Rutte [Tue, 28 Apr 2009 12:27:26 +0000 (14:27 +0200)]
Fix comment typo

15 years agoDrop References header if In-Reply-To is modified by user. Closes #3221.
Bertram Felgenhauer [Tue, 28 Apr 2009 12:18:33 +0000 (14:18 +0200)]
Drop References header if In-Reply-To is modified by user. Closes #3221.

15 years agoDon't generate References: for reply to multiple messages
Rocco Rutte [Tue, 28 Apr 2009 11:05:40 +0000 (13:05 +0200)]
Don't generate References: for reply to multiple messages

All parent Message-Ids are present in In-Reply-To already.
Also, RfC2822, section 3.6.4 discourages its generation.

15 years agoDon't trim In-Reply-To with $edit_headers set
Rocco Rutte [Tue, 28 Apr 2009 11:03:57 +0000 (13:03 +0200)]
Don't trim In-Reply-To with $edit_headers set

In case of a tagged reply to several messages, we
want In-Reply-To to contain all parent Message-Ids.

15 years agoOnly sync changed messages back to hcache on mailbox sync
Rocco Rutte [Tue, 28 Apr 2009 09:17:32 +0000 (11:17 +0200)]
Only sync changed messages back to hcache on mailbox sync

15 years agoFor spam detection, mention $imap_headers. Closes #3223.
Rocco Rutte [Tue, 28 Apr 2009 09:15:24 +0000 (11:15 +0200)]
For spam detection, mention $imap_headers. Closes #3223.

15 years agoManual: Fix typo and reword paragraph
Rocco Rutte [Tue, 28 Apr 2009 09:01:57 +0000 (11:01 +0200)]
Manual: Fix typo and reword paragraph

15 years agoPOP: Support hcache updating, too.
Rocco Rutte [Sun, 26 Apr 2009 19:09:53 +0000 (21:09 +0200)]
POP: Support hcache updating, too.

This also allows us to use hcache to manage
"flagged" and "replied" message flags.

15 years agoSync header to hcache when synching MH/Maildir/IMAP folders. Closes #2942.
Rocco Rutte [Sun, 26 Apr 2009 18:44:15 +0000 (20:44 +0200)]
Sync header to hcache when synching MH/Maildir/IMAP folders. Closes #2942.

15 years agoUse dynamic buffer for displaying pager lines. Closes #3162.
Rocco Rutte [Sun, 26 Apr 2009 10:00:42 +0000 (12:00 +0200)]
Use dynamic buffer for displaying pager lines. Closes #3162.

With too small fixed-size buffers we can't color/find certain words
that span buffers. This needs to duplicate mutt_read_line with the
adjustment to leave line termination in and not support breaking
long lines using \ at EOL. Other callers may want to use this one
instead, too as we support \-escaping in too many places.

15 years agoDocument suffixes for %f in $folder_format
Rocco Rutte [Sun, 26 Apr 2009 07:52:56 +0000 (09:52 +0200)]
Document suffixes for %f in $folder_format

15 years agoFix memory leak in mutt_edit_headers(). Closes #3220.
Bertram Felgenhauer [Wed, 22 Apr 2009 21:29:23 +0000 (23:29 +0200)]
Fix memory leak in mutt_edit_headers(). Closes #3220.

15 years agoAdd mkdtemp() from xfce to unbreak gpgme build on Solaris. Closes #3217.
Thomas Wiegner [Sat, 25 Apr 2009 08:51:03 +0000 (10:51 +0200)]
Add mkdtemp() from xfce to unbreak gpgme build on Solaris. Closes #3217.

15 years agoAdd strcasestr() from uclibc to unbreak (Open)Solaris build. Closes #3222.
Rocco Rutte [Sat, 25 Apr 2009 08:35:42 +0000 (10:35 +0200)]
Add strcasestr() from uclibc to unbreak (Open)Solaris build. Closes #3222.

15 years agoEquivalent mutt_buffy, but readable code
Aron Griffis [Tue, 21 Apr 2009 19:10:28 +0000 (15:10 -0400)]
Equivalent mutt_buffy, but readable code

Signed-off-by: Aron Griffis <agriffis@n01se.net>
15 years agoCall mutt_expand_path() from mutt_buffy to fix imap separator.
Aron Griffis [Tue, 21 Apr 2009 19:06:59 +0000 (15:06 -0400)]
Call mutt_expand_path() from mutt_buffy to fix imap separator.
Closes #3208 and #3218

Signed-off-by: Aron Griffis <agriffis@n01se.net>
15 years agoUse slen instead of assuming _POSIX_PATH_MAX
Aron Griffis [Tue, 21 Apr 2009 18:09:55 +0000 (14:09 -0400)]
Use slen instead of assuming _POSIX_PATH_MAX

Signed-off-by: Aron Griffis <agriffis@n01se.net>
15 years agoUpdated French translation.
Vincent Lefevre [Thu, 23 Apr 2009 19:51:53 +0000 (12:51 -0700)]
Updated French translation.

15 years agoBetter document that some send-hooks can't work with $autoedit. Closes #1834.
Christoph Berg [Mon, 20 Apr 2009 16:36:36 +0000 (18:36 +0200)]
Better document that some send-hooks can't work with $autoedit. Closes #1834.

15 years agoFix typo for $imap_pass
Rocco Rutte [Mon, 20 Apr 2009 16:26:03 +0000 (18:26 +0200)]
Fix typo for $imap_pass

15 years agoSupport the Charset: armor header for inline PGP. Closes #3039.
Rocco Rutte [Fri, 17 Apr 2009 16:05:25 +0000 (18:05 +0200)]
Support the Charset: armor header for inline PGP. Closes #3039.

The header is defined as optional by RfC4880.

This is based on patch-1.5.9.tamo.pgp_charsetchack.1. We only support
reading this header and, if present, recode the PGP output from the
given charset to $charset if we find it valid; otherwise fall back to
UTF-8. Certain clients make use of the header when sending mail, so mutt
should respect it because some messages are otherwise unreadable.

The sending side is not touched, we unconditionally send UTF-8.

15 years agoMake sure Recent-From: consults $realname. Closes #1721.
Michael Elkins [Fri, 17 Apr 2009 13:45:23 +0000 (15:45 +0200)]
Make sure Recent-From: consults $realname. Closes #1721.

15 years agoMake <set-flag> and <clear-flag> work in the pager, too. Closes #3212.
Rocco Rutte [Fri, 17 Apr 2009 13:37:07 +0000 (15:37 +0200)]
Make <set-flag> and <clear-flag> work in the pager, too. Closes #3212.

15 years agoDon't consider \n part of a line for body coloring. Closes #2363.
Rocco Rutte [Fri, 17 Apr 2009 11:20:04 +0000 (13:20 +0200)]
Don't consider \n part of a line for body coloring. Closes #2363.

15 years agoEnlarge buffer size for parsing mailcap files
Rocco Rutte [Fri, 17 Apr 2009 10:47:41 +0000 (12:47 +0200)]
Enlarge buffer size for parsing mailcap files

We really need code for dynamic buffers which would solve a few other
bugs, too. Closes #2205.

15 years agoPOP: Default to using getservbyname() as we do for IMAP and SMTP
Rocco Rutte [Thu, 16 Apr 2009 17:23:32 +0000 (19:23 +0200)]
POP: Default to using getservbyname() as we do for IMAP and SMTP

15 years agoManual: Improve docs on URL syntax, add examples
Rocco Rutte [Thu, 16 Apr 2009 17:14:58 +0000 (19:14 +0200)]
Manual: Improve docs on URL syntax, add examples

15 years agoManual: Add user-defined variables to variable types
Rocco Rutte [Thu, 16 Apr 2009 14:17:26 +0000 (16:17 +0200)]
Manual: Add user-defined variables to variable types

15 years agoDon't raise new mail flag on mbox/mmdf Fcc mailboxes. Closes #1896.
Rocco Rutte [Sat, 11 Apr 2009 08:35:52 +0000 (10:35 +0200)]
Don't raise new mail flag on mbox/mmdf Fcc mailboxes. Closes #1896.

15 years agoFor %F, display Bcc recipient if no other recipients found. Closes #3157.
Rocco Rutte [Wed, 8 Apr 2009 14:25:38 +0000 (16:25 +0200)]
For %F, display Bcc recipient if no other recipients found. Closes #3157.

15 years agoMake ~x match In-Reply-To, too. Closes #771.
Rocco Rutte [Wed, 8 Apr 2009 13:46:06 +0000 (15:46 +0200)]
Make ~x match In-Reply-To, too. Closes #771.

15 years agoFix b5cbd0dab863, closes #3215.
Rocco Rutte [Tue, 7 Apr 2009 17:57:30 +0000 (19:57 +0200)]
Fix b5cbd0dab863, closes #3215.

Still valgrind reports 'fromcode' as leaking.

15 years agoTry to correct usage of tempfile and *tempfile
Erik Hovland [Tue, 7 Apr 2009 09:32:20 +0000 (11:32 +0200)]
Try to correct usage of tempfile and *tempfile

Since tempfile is a double pointer checking for tempfile and then
dereferencing with *tempfile is not correct.

15 years agoManual: Fix typo
Rocco Rutte [Mon, 6 Apr 2009 20:05:25 +0000 (22:05 +0200)]
Manual: Fix typo

15 years agomutt_message_to_7bit(): Only close file pointer if we opened it
Erik Hovland [Mon, 6 Apr 2009 17:10:35 +0000 (19:10 +0200)]
mutt_message_to_7bit(): Only close file pointer if we opened it

The pointer is to be managed outside the function and provided.
Only close it we opened it ourself using fopen().

15 years agoPlug memory leaks in sendlib.c
Erik Hovland [Mon, 6 Apr 2009 17:07:53 +0000 (19:07 +0200)]
Plug memory leaks in sendlib.c

15 years agoMerge backout
Rocco Rutte [Sun, 5 Apr 2009 11:42:43 +0000 (13:42 +0200)]
Merge backout

15 years agoBacked out changeset 23c7b469ff20
Rocco Rutte [Sun, 5 Apr 2009 11:41:15 +0000 (13:41 +0200)]
Backed out changeset 23c7b469ff20

This requires more thought: if the user has -- in $sendmail,
we need to add our arguments for 8BITMIME/DSN/etc. before it
and not after. See #3168.

15 years agoq is never used
Erik Hovland [Sun, 5 Apr 2009 11:16:47 +0000 (13:16 +0200)]
q is never used

15 years agoOnly append -- to $sendmail if not present. Closes #3168.
Steve Kemp [Thu, 2 Apr 2009 11:11:58 +0000 (13:11 +0200)]
Only append -- to $sendmail if not present. Closes #3168.

This allows users to add custom recipients via $sendmail.

15 years agoClarify what $attach_charset does, closes #3165.
Rocco Rutte [Thu, 2 Apr 2009 10:57:50 +0000 (12:57 +0200)]
Clarify what $attach_charset does, closes #3165.

15 years agoAdd 'sortcheck' target to doc/Makefile.am
Rocco Rutte [Thu, 2 Apr 2009 09:49:47 +0000 (11:49 +0200)]
Add 'sortcheck' target to doc/Makefile.am

This should be used from time to time to check if vars are sorted.

Closes #3191.

15 years agoSort $pgp_* and $crypt_* vars, see #3191.
Rocco Rutte [Thu, 2 Apr 2009 09:47:27 +0000 (11:47 +0200)]
Sort $pgp_* and $crypt_* vars, see #3191.

15 years agoSort $smime_* vars, see #3191.
Rocco Rutte [Thu, 2 Apr 2009 09:25:56 +0000 (11:25 +0200)]
Sort $smime_* vars, see #3191.

15 years agoUse PATH_MAX for buffers passed to realpath(3) as we're supposed to
Miroslav Lichvar [Wed, 1 Apr 2009 12:33:35 +0000 (14:33 +0200)]
Use PATH_MAX for buffers passed to realpath(3) as we're supposed to

15 years agoManual: Fix openjade warnings
Rocco Rutte [Wed, 1 Apr 2009 11:16:35 +0000 (13:16 +0200)]
Manual: Fix openjade warnings

15 years agomakedoc: Render description lists as <informaltable/>
Rocco Rutte [Wed, 1 Apr 2009 09:39:26 +0000 (11:39 +0200)]
makedoc: Render description lists as <informaltable/>

This looks better and is more compact
(except missing column headers.)

15 years agoManual: Add an example of how to manage multiple accounts using folder-hook
Rocco Rutte [Tue, 31 Mar 2009 14:03:12 +0000 (16:03 +0200)]
Manual: Add an example of how to manage multiple accounts using folder-hook

15 years agoPerform case insensitive string search if pattern is lower case
Rocco Rutte [Tue, 31 Mar 2009 12:50:05 +0000 (14:50 +0200)]
Perform case insensitive string search if pattern is lower case

...since we do that for regex patterns already.
It doesn't work for IMAP server-side searches.

15 years agoManual: Fix markup of ".muttrc"
Rocco Rutte [Tue, 31 Mar 2009 11:19:56 +0000 (13:19 +0200)]
Manual: Fix markup of ".muttrc"

15 years agoManual: Always spell mutt as "Mutt"
Rocco Rutte [Tue, 31 Mar 2009 11:11:58 +0000 (13:11 +0200)]
Manual: Always spell mutt as "Mutt"

15 years agoManual: Replace netscape with firefox
Rocco Rutte [Tue, 31 Mar 2009 11:04:50 +0000 (13:04 +0200)]
Manual: Replace netscape with firefox

15 years agoManual: use <quote/> instead of " quotes
Rocco Rutte [Tue, 31 Mar 2009 11:01:22 +0000 (13:01 +0200)]
Manual: use <quote/> instead of " quotes

15 years agoManual: Lots of minor improvements (markup consistency, wording)
Rocco Rutte [Tue, 31 Mar 2009 10:58:15 +0000 (12:58 +0200)]
Manual: Lots of minor improvements (markup consistency, wording)

15 years agoFor mailbox formats, add some more verbose pros and cons
Rocco Rutte [Mon, 30 Mar 2009 12:58:29 +0000 (14:58 +0200)]
For mailbox formats, add some more verbose pros and cons

15 years agoManual: Add section about zeroprinting format strings to format string section
Rocco Rutte [Mon, 30 Mar 2009 11:18:26 +0000 (13:18 +0200)]
Manual: Add section about zeroprinting format strings to format string section

15 years agoMake IDNA code more readable
Thomas Roessler [Sat, 28 Mar 2009 21:37:22 +0000 (22:37 +0100)]
Make IDNA code more readable

15 years agoManual: Add section roughly explaining config option types
Rocco Rutte [Sat, 28 Mar 2009 15:11:56 +0000 (16:11 +0100)]
Manual: Add section roughly explaining config option types

15 years agomakedoc: make output slightly more readable
Rocco Rutte [Sat, 28 Mar 2009 15:01:40 +0000 (16:01 +0100)]
makedoc: make output slightly more readable

Add <?dhtml... processing instructions to render <variablelist/>
using HTML <table/> which save lots of vertical space. Also, drop
the newline before </screen> to save some space.