summaryrefslogtreecommitdiffstats
path: root/mx.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 /mx.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 'mx.c')
-rw-r--r--mx.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mx.c b/mx.c
index b1ed5c01..44698121 100644
--- a/mx.c
+++ b/mx.c
@@ -392,6 +392,8 @@ int mx_set_magic (const char *s)
DefaultMagic = M_MH;
else if (strcasecmp (s, "maildir") == 0)
DefaultMagic = M_MAILDIR;
+ else if (strcasecmp (s, "kendra") == 0)
+ DefaultMagic = M_KENDRA;
else
return (-1);