X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=legacy%2FBUGS;fp=legacy%2FBUGS;h=be93cdc9c32d9e329a2c2c6f932fa6364c11a3ae;hb=3ad8157bbbc6b9fae1c3252aad1c07fcccd92004;hp=0000000000000000000000000000000000000000;hpb=2fea7732a573b94a4d5dcf7e641ef067472e9cab;p=apps%2Fmadmutt.git diff --git a/legacy/BUGS b/legacy/BUGS new file mode 100644 index 0000000..be93cdc --- /dev/null +++ b/legacy/BUGS @@ -0,0 +1,21 @@ +This document lists bug known to exist in mutt-ng which are more less +difficult to fix. + +RfC 3676 defining format=flowed +=============================== + +Muttng currently lacks correct dealing with quote prefixes in some +cases, i.e. when converting from format=fixed to format=flowed. One +problem is that $quote_regexp only specifies the complete quote sequence +instead of just one level. Second, quoting characters seen in the wild +like '|' or '#' are part of the default $quote_regexp but may also be +used to mark certain things like writing about examples or the like in +messages. Muttng does not do any guessing so that it's up to the user to +ensure correct quoting. + +Altough the standard enforces space-stuffing as a MUST, muttng +currently violates it. Space-stuffing is done _once_ after initially +editing the message. The routine only handles '^From ' and '^ ' cases, +'^>' is ignored. (Once because an already space-stuffed line still has +a leading space so that it would get space-stuffed everytime the user +edits a message.)