]>
diplodocus.org Git - nmh/blob - sbr/readconfig.c
1 /* readconfig.c -- base routine to read nmh configuration files
2 * -- such as nmh profile, context file, or mhn.defaults.
4 * This code is Copyright (c) 2002, by the authors of nmh. See the
5 * COPYRIGHT file in the root directory of the nmh distribution for
6 * complete copyright information.
13 #include "readconfig.h"
22 static struct procstr procs
[] = {
23 { "context", &context
},
24 { "mh-sequences", &mh_seq
},
25 { "buildmimeproc", &buildmimeproc
},
26 { "fileproc", &fileproc
},
27 { "formatproc", &formatproc
},
28 { "incproc", &incproc
},
30 { "mailproc", &mailproc
},
31 { "mhlproc", &mhlproc
},
32 { "moreproc", &moreproc
},
33 { "packproc", &packproc
},
34 { "postproc", &postproc
},
35 { "rmmproc", &rmmproc
},
36 { "sendproc", &sendproc
},
37 { "showmimeproc", &showmimeproc
},
38 { "showproc", &showproc
},
39 { "whatnowproc", &whatnowproc
},
40 { "whomproc", &whomproc
},
44 static struct node
**opp
= NULL
;
48 readconfig (struct node
**npp
, FILE *ib
, const char *file
, int ctx
)
52 char name
[NAMESZ
], field
[NMH_BUFSIZ
];
55 m_getfld_state_t gstate
;
57 if (npp
== NULL
&& (npp
= opp
) == NULL
) {
58 inform("bug: readconfig called but pump not primed, continuing...");
62 gstate
= m_getfld_state_init(ib
);
64 int fieldsz
= sizeof field
;
65 switch (state
= m_getfld2(&gstate
, name
, field
, &fieldsz
)) {
70 *(npp
= &np
->n_next
) = NULL
;
71 np
->n_name
= mh_xstrdup(name
);
72 if (state
== FLDPLUS
) {
73 cp
= mh_xstrdup(field
);
74 while (state
== FLDPLUS
) {
75 fieldsz
= sizeof field
;
76 state
= m_getfld2(&gstate
, name
, field
, &fieldsz
);
79 np
->n_field
= trimcpy (cp
);
82 np
->n_field
= trimcpy (field
);
87 * Now scan the list of `procs' and link in the
88 * field value to the global variable.
90 for (ps
= procs
; ps
->procname
; ps
++)
91 if (strcmp (np
->n_name
, ps
->procname
) == 0) {
92 *ps
->procnaddr
= np
->n_field
;
98 die("no blank lines are permitted in %s", file
);
104 die("%s is poorly formatted", file
);
108 m_getfld_state_destroy (&gstate
);
111 * Special handling for the pager processes: lproc and moreproc.
113 * If they are not set by the profile, use the callers $PAGER if
114 * available, otherwise set them to DEFAULT_PAGER.
117 lproc
= getenv("PAGER");
118 if (lproc
== NULL
|| lproc
[0] == '\0')
119 lproc
= DEFAULT_PAGER
;
121 if (moreproc
== NULL
) {
122 moreproc
= getenv("PAGER");
123 if (moreproc
== NULL
|| moreproc
[0] == '\0')
124 moreproc
= DEFAULT_PAGER
;
128 /* Check for duplicated non-null profile entries. Except
129 allow multiple profile entries named "#", because that's
130 what mh-profile(5) suggests using for comments.
132 Only do this check on the very first call from
133 context_read(), when opp is NULL. That way, entries in
134 mhn.defaults can be overridden without triggering
137 Note that mhn.defaults, $MHN, $MHBUILD, $MHSHOW, and
138 $MHSTORE all put their entries into just one list, m_defs,
139 the same list that the profile uses. */
142 for (np
= m_defs
; np
; np
= np
->n_next
) {
143 /* Yes, this is O(N^2). The profile should be small enough so
144 that's not a performance problem. */
145 if (*np
->n_name
&& strcmp("#", np
->n_name
)) {
147 for (np2
= np
->n_next
; np2
; np2
= np2
->n_next
) {
148 if (! strcasecmp (np
->n_name
, np2
->n_name
)) {
149 inform("multiple \"%s\" profile components in %s, "
150 "ignoring \"%s\", continuing...",
151 np
->n_name
, defpath
, np2
->n_field
);
163 add_profile_entry (const char *key
, const char *value
)
165 struct node
*newnode
;
167 /* This inserts the new node at the beginning of m_defs because
168 that doesn't require traversing it or checking to see if it's
171 newnode
->n_name
= getcpy (key
);
172 newnode
->n_field
= getcpy (value
);
173 newnode
->n_context
= 0;
174 newnode
->n_next
= m_defs
;