]>
diplodocus.org Git - nmh/blob - uip/mhbuild.c
3 * mhbuild.c -- expand/translate MIME composition files
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
12 #include <h/signals.h>
17 #include <h/mhparse.h>
18 #include <h/mhcachesbr.h>
21 #define MHBUILD_SWITCHES \
22 X("auto", 0, AUTOSW) \
23 X("noauto", 0, NAUTOSW) \
24 X("check", 0, CHECKSW) \
25 X("nocheck", 0, NCHECKSW) \
26 X("directives", 0, DIRECTIVES) \
27 X("nodirectives", 0, NDIRECTIVES) \
28 X("headers", 0, HEADSW) \
29 X("noheaders", 0, NHEADSW) \
30 X("list", 0, LISTSW) \
31 X("nolist", 0, NLISTSW) \
32 X("realsize", 0, SIZESW) \
33 X("norealsize", 0, NSIZESW) \
34 X("rfc934mode", 0, RFC934SW) \
35 X("norfc934mode", 0, NRFC934SW) \
36 X("verbose", 0, VERBSW) \
37 X("noverbose", 0, NVERBSW) \
38 X("disposition", 0, DISPOSW) \
39 X("nodisposition", 0, NDISPOSW) \
40 X("rcache policy", 0, RCACHESW) \
41 X("wcache policy", 0, WCACHESW) \
42 X("contentid", 0, CONTENTIDSW) \
43 X("nocontentid", 0, NCONTENTIDSW) \
44 X("headerencoding encoding-algorithm", 0, HEADERENCSW) \
45 X("autoheaderencoding", 0, AUTOHEADERENCSW) \
46 X("maxunencoded", 0, MAXUNENCSW) \
47 X("version", 0, VERSIONSW) \
48 X("help", 0, HELPSW) \
49 X("debug", -5, DEBUGSW) \
50 X("dist", -4, DISTSW) \
52 #define X(sw, minchars, id) id,
53 DEFINE_SWITCH_ENUM(MHBUILD
);
56 #define X(sw, minchars, id) { sw, minchars, id },
57 DEFINE_SWITCH_ARRAY(MHBUILD
, switches
);
60 #define MIMEENCODING_SWITCHES \
61 X("base64", 0, BASE64SW) \
62 X("quoted-printable", 0, QUOTEDPRINTSW) \
64 #define X(sw, minchars, id) id,
65 DEFINE_SWITCH_ENUM(MIMEENCODING
);
68 #define X(sw, minchars, id) { sw, minchars, id },
69 DEFINE_SWITCH_ARRAY(MIMEENCODING
, encodingswitches
);
75 extern char *cache_public
;
76 extern char *cache_private
;
87 static char infile
[BUFSIZ
];
88 static int unlink_infile
= 0;
90 static char outfile
[BUFSIZ
];
91 static int unlink_outfile
= 0;
93 static void unlink_done (int) NORETURN
;
96 int output_message (CT
, char *);
97 int output_message_fp (CT
, FILE *, char*);
101 main (int argc
, char **argv
)
103 int sizesw
= 1, headsw
= 1, directives
= 1, autobuild
= 0, dist
= 0;
104 int verbosw
= 0, dispo
= 0;
105 size_t maxunencoded
= MAXTEXTPERLN
;
107 char *cp
, buf
[BUFSIZ
];
108 char buffer
[BUFSIZ
], *compfile
= NULL
;
109 char **argp
, **arguments
;
113 int header_encoding
= CE_UNKNOWN
;
115 if (nmh_init(argv
[0], 1)) { return 1; }
119 arguments
= getarguments (invo_name
, argc
, argv
, 1);
122 while ((cp
= *argp
++)) {
123 if (cp
[0] == '-' && cp
[1] == '\0') {
125 adios (NULL
, "cannot specify both standard input and a file");
128 listsw
= 0; /* turn off -list if using standard in/out */
129 verbosw
= 0; /* turn off -verbose listings */
133 switch (smatch (++cp
, switches
)) {
135 ambigsw (cp
, switches
);
138 adios (NULL
, "-%s unknown", cp
);
141 snprintf (buf
, sizeof(buf
), "%s [switches] file", invo_name
);
142 print_help (buf
, switches
, 1);
145 print_version(invo_name
);
149 /* -auto implies -nodirectives */
155 * We're turning directives back on since this is likely here
156 * to override a profile entry
163 icachesw
= &rcachesw
;
166 icachesw
= &wcachesw
;
168 if (!(cp
= *argp
++) || *cp
== '-')
169 adios (NULL
, "missing argument to %s", argp
[-2]);
170 switch (*icachesw
= smatch (cp
, caches
)) {
172 ambigsw (cp
, caches
);
175 adios (NULL
, "%s unknown", cp
);
233 if (!(cp
= *argp
++) || *cp
== '-')
234 adios (NULL
, "missing argument to %s", argp
[-2]);
235 switch (encoding
= smatch (cp
, encodingswitches
)) {
237 ambigsw (cp
, encodingswitches
);
240 adios (NULL
, "%s unknown encoding algorithm", cp
);
242 header_encoding
= CE_BASE64
;
245 header_encoding
= CE_QUOTED
;
248 adios (NULL
, "Internal error: algorithm %s", cp
);
253 case AUTOHEADERENCSW
:
254 header_encoding
= CE_UNKNOWN
;
258 if (!(cp
= *argp
++) || *cp
== '-')
259 adios (NULL
, "missing argument to %s", argp
[-2]);
260 if ((maxunencoded
= atoi(cp
)) < 1)
261 adios (NULL
, "Invalid argument for %s: %s", argp
[-2], cp
);
262 if (maxunencoded
> 998)
263 adios (NULL
, "limit of -maxunencoded is 998");
287 adios (NULL
, "only one composition file allowed");
293 * Check if we've specified an additional profile
295 if ((cp
= getenv ("MHBUILD"))) {
296 if ((fp
= fopen (cp
, "r"))) {
297 readconfig ((struct node
**) 0, fp
, cp
, 0);
300 admonish ("", "unable to read $MHBUILD profile (%s)", cp
);
305 * Read the standard profile setup
307 if ((fp
= fopen (cp
= etcpath ("mhn.defaults"), "r"))) {
308 readconfig ((struct node
**) 0, fp
, cp
, 0);
312 /* Check for public cache location */
313 if ((cache_public
= context_find (nmhcache
)) && *cache_public
!= '/')
316 /* Check for private cache location */
317 if (!(cache_private
= context_find (nmhprivcache
)))
318 cache_private
= ".cache";
319 cache_private
= getcpy (m_maildir (cache_private
));
321 if (!context_find ("path"))
322 free (path ("./", TFOLDER
));
324 /* Check if we have a file to process */
326 adios (NULL
, "need to specify a %s composition file", invo_name
);
329 * Process the composition file from standard input.
331 if (compfile
[0] == '-' && compfile
[1] == '\0') {
332 if ((cp
= m_mktemp2(NULL
, invo_name
, NULL
, &fp
)) == NULL
) {
333 adios(NULL
, "unable to create temporary file in %s",
337 /* copy standard input to temporary file */
338 strncpy (infile
, cp
, sizeof(infile
));
339 while (fgets (buffer
, BUFSIZ
, stdin
))
344 /* build the content structures for MIME message */
345 ct
= build_mime (infile
, autobuild
, dist
, directives
, header_encoding
,
346 maxunencoded
, verbosw
);
349 * If ct == NULL, that means that -auto was set and a MIME version
350 * header was already seen. Just use the input file as the output
354 if (! (fp
= fopen(infile
, "r"))) {
355 adios(NULL
, "Unable to open %s for reading", infile
);
357 while (fgets(buffer
, BUFSIZ
, fp
))
358 fputs(buffer
, stdout
);
360 /* output the message */
361 output_message_fp (ct
, stdout
, NULL
);
365 (void) m_unlink (infile
);
372 * Process the composition file from a file.
375 /* build the content structures for MIME message */
376 ct
= build_mime (compfile
, autobuild
, dist
, directives
, header_encoding
,
377 maxunencoded
, verbosw
);
380 * If ct == NULL, that means -auto was set and we found a MIME version
381 * header. Simply exit and do nothing.
390 /* output MIME message to this temporary file */
391 if ((cp
= m_mktemp2(compfile
, invo_name
, NULL
, &fp_out
)) == NULL
) {
392 adios(NULL
, "unable to create temporary file in %s", get_temp_dir());
394 strncpy(outfile
, cp
, sizeof(outfile
));
397 /* output the message */
398 output_message_fp (ct
, fp_out
, outfile
);
402 * List the message info
405 list_all_messages (cts
, headsw
, sizesw
, verbosw
, debugsw
, dispo
);
407 /* Rename composition draft */
408 snprintf (buffer
, sizeof(buffer
), "%s.orig", m_backup (compfile
));
409 if (rename (compfile
, buffer
) == NOTOK
) {
410 adios (compfile
, "unable to rename comp draft %s to", buffer
);
413 /* Rename output file to take its place */
414 if (rename (outfile
, compfile
) == NOTOK
) {
415 advise (outfile
, "unable to rename output %s to", compfile
);
416 rename (buffer
, compfile
);
428 unlink_done (int status
)
431 * Check if we need to remove stray
435 (void) m_unlink (infile
);
437 (void) m_unlink (outfile
);