summaryrefslogtreecommitdiffstats
path: root/sendlib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-11-10 21:02:18 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-11-10 21:02:18 +0000
commit86f376dc60577f3100d489a16a5a0bc79e34d5b4 (patch)
treef26335d5bba3912a11ae0fd67e113a66488300df /sendlib.c
parentf4df535a2bd2af54fd5691754b82e3528f054356 (diff)
Experimental support for the so-called "kendra" mail folder format.
This seems to be used on OS/2 and is, actually, a slibhtly modified version of the MMDF format.
Diffstat (limited to 'sendlib.c')
-rw-r--r--sendlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sendlib.c b/sendlib.c
index 4f7a1dd5..11170c3e 100644
--- a/sendlib.c
+++ b/sendlib.c
@@ -1911,7 +1911,7 @@ int mutt_write_fcc (const char *path, HEADER *hdr, const char *msgid, int post,
/* We need to add a Content-Length field to avoid problems where a line in
* the message body begins with "From "
*/
- if (f.magic == M_MMDF || f.magic == M_MBOX)
+ if (f.magic == M_MMDF || f.magic == M_MBOX || f.magic == M_KENDRA)
{
mutt_mktemp (tempfile);
if ((tempfp = safe_fopen (tempfile, "w+")) == NULL)