Removed ``Face'' support in mhl.
[mmh] / sbr / readconfig.c
index ef43bde..7212303 100644 (file)
@@ -22,17 +22,13 @@ static struct procstr procs[] = {
        { "draft-folder",  &draftfolder },
        { "altmsg-link",   &altmsglink },
        { "buildmimeproc", &buildmimeproc },
-       { "faceproc",      &faceproc },
        { "fileproc",      &fileproc },
        { "incproc",       &incproc },
-       { "installproc",   &installproc },
        { "lproc",         &lproc },
        { "mailproc",      &mailproc },
        { "mhlproc",       &mhlproc },
        { "moreproc",      &moreproc },
-       { "packproc",      &packproc },
        { "postproc",      &postproc },
-       { "rmfproc",       &rmfproc },
        { "rmmproc",       &rmmproc },
        { "sendmail",      &sendmail },
        { "sendproc",      &sendproc },
@@ -82,11 +78,12 @@ readconfig(struct node **npp, FILE *ib, char *file, int ctx)
                                np->n_context = ctx;
 
                                /*
-                               ** Now scan the list of `procs' and link in the
-                               ** field value to the global variable.
+                               ** Now scan the list of `procs' and link in
+                               ** the field value to the global variable.
                                */
                                for (ps = procs; ps->procname; ps++)
-                                       if (strcmp(np->n_name, ps->procname) == 0) {
+                                       if (mh_strcasecmp(np->n_name,
+                                                       ps->procname) == 0) {
                                                *ps->procnaddr = np->n_field;
                                                break;
                                        }