wibble.
[apps/madmutt.git] / BUGS
1 This document lists bug known to exist in mutt-ng which are more less
2 difficult to fix.
3
4 RfC 3676 defining format=flowed
5 ===============================
6
7 Muttng currently lacks correct dealing with quote prefixes in some
8 cases, i.e. when converting from format=fixed to format=flowed. One
9 problem is that $quote_regexp only specifies the complete quote sequence
10 instead of just one level. Second, quoting characters seen in the wild
11 like '|' or '#' are part of the default $quote_regexp but may also be
12 used to mark certain things like writing about examples or the like in
13 messages. Muttng does not do any guessing so that it's up to the user to
14 ensure correct quoting.
15
16 Altough the standard enforces space-stuffing as a MUST, muttng
17 currently violates it. Space-stuffing is done _once_ after initially
18 editing the message. The routine only handles '^From ' and '^ ' cases,
19 '^>' is ignored. (Once because an already space-stuffed line still has
20 a leading space so that it would get space-stuffed everytime the user
21 edits a message.)