X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Freadconfig.c;h=cc8be82b3483c51624a1c2bdbb94039bcb27fb44;hp=46644ebbdb835f9da055faabaa09ce139dfceaa3;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=a485ed478abbd599d8c9aab48934e7a26733ecb1 diff --git a/sbr/readconfig.c b/sbr/readconfig.c index 46644eb..cc8be82 100644 --- a/sbr/readconfig.c +++ b/sbr/readconfig.c @@ -1,11 +1,11 @@ /* - * readconfig.c -- base routine to read nmh configuration files - * -- such as nmh profile, context file, or mhn.defaults. - * - * This code is Copyright (c) 2002, by the authors of nmh. See the - * COPYRIGHT file in the root directory of the nmh distribution for - * complete copyright information. - */ +** readconfig.c -- base routine to read nmh configuration files +** -- such as nmh profile, context file, or mhn.defaults. +** +** This code is Copyright (c) 2002, by the authors of nmh. See the +** COPYRIGHT file in the root directory of the nmh distribution for +** complete copyright information. +*/ #include #include @@ -19,6 +19,7 @@ static struct procstr procs[] = { { "context", &context }, { "mh-sequences", &mh_seq }, { "backup-prefix", &backup_prefix }, + { "draft-folder", &draftfolder }, { "altmsg-link", &altmsglink }, { "buildmimeproc", &buildmimeproc }, { "faceproc", &faceproc }, @@ -38,7 +39,6 @@ static struct procstr procs[] = { { "showmimeproc", &showmimeproc }, { "showproc", &showproc }, { "whatnowproc", &whatnowproc }, - { "whomproc", &whomproc }, { NULL, NULL } }; @@ -82,9 +82,9 @@ 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) { *ps->procnaddr = np->n_field;