]>
diplodocus.org Git - nmh/blob - uip/mhshow.c
3 * mhshow.c -- display the contents of MIME messages
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 MHSHOW_SWITCHES \
22 X("check", 0, CHECKSW) \
23 X("nocheck", 0, NCHECKSW) \
24 X("pause", 0, PAUSESW) \
25 X("nopause", 0, NPAUSESW) \
26 X("serialonly", 0, SERIALSW) \
27 X("noserialonly", 0, NSERIALSW) \
28 X("verbose", 0, VERBSW) \
29 X("noverbose", 0, NVERBSW) \
30 X("file file", 0, FILESW) \
31 X("form formfile", 0, FORMSW) \
32 X("part number", 0, PARTSW) \
33 X("type content", 0, TYPESW) \
34 X("rcache policy", 0, RCACHESW) \
35 X("wcache policy", 0, WCACHESW) \
36 X("version", 0, VERSIONSW) \
37 X("help", 0, HELPSW) \
39 * switches for moreproc/mhlproc \
41 X("moreproc program", -4, PROGSW) \
42 X("nomoreproc", -3, NPROGSW) \
43 X("length lines", -4, LENSW) \
44 X("width columns", -4, WIDTHSW) \
46 * switches for debugging \
48 X("debug", -5, DEBUGSW) \
50 #define X(sw, minchars, id) id,
51 DEFINE_SWITCH_ENUM(MHSHOW
);
54 #define X(sw, minchars, id) { sw, minchars, id },
55 DEFINE_SWITCH_ARRAY(MHSHOW
, switches
);
60 extern char *tmp
; /* directory to place temp files */
65 extern char *cache_public
;
66 extern char *cache_private
;
73 extern int nomore
; /* flags for moreproc/header display */
79 extern char *parts
[NPARTS
+ 1];
80 extern char *types
[NTYPES
+ 1];
86 #define quitser pipeser
89 CT
parse_mime (char *);
92 int part_ok (CT
, int);
93 int type_ok (CT
, int);
94 void flush_errors (void);
97 void show_all_messages (CT
*);
101 void freects_done (int) NORETURN
;
106 static void pipeser (int);
110 main (int argc
, char **argv
)
112 int msgnum
, *icachesw
;
113 char *cp
, *file
= NULL
, *folder
= NULL
;
114 char *maildir
, buf
[100], **argp
;
116 struct msgs_array msgs
= { 0, 0, NULL
};
117 struct msgs
*mp
= NULL
;
124 setlocale(LC_ALL
, "");
126 invo_name
= r1bindex (argv
[0], '/');
128 /* read user profile/context */
131 arguments
= getarguments (invo_name
, argc
, argv
, 1);
137 while ((cp
= *argp
++)) {
139 switch (smatch (++cp
, switches
)) {
141 ambigsw (cp
, switches
);
144 adios (NULL
, "-%s unknown", cp
);
147 snprintf (buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
149 print_help (buf
, switches
, 1);
152 print_version(invo_name
);
156 icachesw
= &rcachesw
;
159 icachesw
= &wcachesw
;
161 if (!(cp
= *argp
++) || *cp
== '-')
162 adios (NULL
, "missing argument to %s", argp
[-2]);
163 switch (*icachesw
= smatch (cp
, caches
)) {
165 ambigsw (cp
, caches
);
168 adios (NULL
, "%s unknown", cp
);
196 if (!(cp
= *argp
++) || *cp
== '-')
197 adios (NULL
, "missing argument to %s", argp
[-2]);
199 adios (NULL
, "too many parts (starting with %s), %d max",
205 if (!(cp
= *argp
++) || *cp
== '-')
206 adios (NULL
, "missing argument to %s", argp
[-2]);
208 adios (NULL
, "too many types (starting with %s), %d max",
214 if (!(cp
= *argp
++) || (*cp
== '-' && cp
[1]))
215 adios (NULL
, "missing argument to %s", argp
[-2]);
216 file
= *cp
== '-' ? cp
: path (cp
, TFILE
);
220 if (!(cp
= *argp
++) || *cp
== '-')
221 adios (NULL
, "missing argument to %s", argp
[-2]);
224 formsw
= getcpy (etcpath (cp
));
228 * Switches for moreproc/mhlproc
231 if (!(progsw
= *argp
++) || *progsw
== '-')
232 adios (NULL
, "missing argument to %s", argp
[-2]);
240 if (!(cp
= *argp
++) || *cp
== '-')
241 adios (NULL
, "missing argument to %s", argp
[-2]);
255 if (*cp
== '+' || *cp
== '@') {
257 adios (NULL
, "only one folder at a time!");
259 folder
= pluspath (cp
);
261 app_msgarg(&msgs
, cp
);
264 /* null terminate the list of acceptable parts/types */
269 * Check if we've specified an additional profile
271 if ((cp
= getenv ("MHSHOW"))) {
272 if ((fp
= fopen (cp
, "r"))) {
273 readconfig ((struct node
**) 0, fp
, cp
, 0);
276 admonish ("", "unable to read $MHSHOW profile (%s)", cp
);
281 * Read the standard profile setup
283 if ((fp
= fopen (cp
= etcpath ("mhn.defaults"), "r"))) {
284 readconfig ((struct node
**) 0, fp
, cp
, 0);
288 /* Check for public cache location */
289 if ((cache_public
= context_find (nmhcache
)) && *cache_public
!= '/')
292 /* Check for private cache location */
293 if (!(cache_private
= context_find (nmhprivcache
)))
294 cache_private
= ".cache";
295 cache_private
= getcpy (m_maildir (cache_private
));
298 * Check for storage directory. If specified,
299 * then store temporary files there. Else we
300 * store them in standard nmh directory.
302 if ((cp
= context_find (nmhstorage
)) && *cp
)
303 tmp
= concat (cp
, "/", invo_name
, NULL
);
305 tmp
= add (m_maildir (invo_name
), NULL
);
307 if (!context_find ("path"))
308 free (path ("./", TFOLDER
));
310 if (file
&& msgs
.size
)
311 adios (NULL
, "cannot specify msg and file at same time!");
314 * check if message is coming from file
317 if (!(cts
= (CT
*) calloc ((size_t) 2, sizeof(*cts
))))
318 adios (NULL
, "out of memory");
321 if ((ct
= parse_mime (file
)))
325 * message(s) are coming from a folder
328 app_msgarg(&msgs
, "cur");
330 folder
= getfolder (1);
331 maildir
= m_maildir (folder
);
333 if (chdir (maildir
) == NOTOK
)
334 adios (maildir
, "unable to change directory to");
336 /* read folder and create message structure */
337 if (!(mp
= folder_read (folder
, 1)))
338 adios (NULL
, "unable to read folder %s", folder
);
340 /* check for empty folder */
342 adios (NULL
, "no messages in %s", folder
);
344 /* parse all the message ranges/sequences and set SELECTED */
345 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
346 if (!m_convert (mp
, msgs
.msgs
[msgnum
]))
350 * Set the SELECT_UNSEEN bit for all the SELECTED messages,
351 * since we will use that as a tag to know which messages
352 * to remove from the "unseen" sequence.
354 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++)
355 if (is_selected(mp
, msgnum
))
356 set_unseen (mp
, msgnum
);
358 seq_setprev (mp
); /* set the Previous-Sequence */
359 seq_setunseen (mp
, 1); /* unset the Unseen-Sequence */
361 if (!(cts
= (CT
*) calloc ((size_t) (mp
->numsel
+ 1), sizeof(*cts
))))
362 adios (NULL
, "out of memory");
366 * Parse all the SELECTED messages.
368 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
369 if (is_selected(mp
, msgnum
)) {
372 msgnam
= m_name (msgnum
);
373 if ((ct
= parse_mime (msgnam
)))
383 SIGNAL (SIGQUIT
, quitser
);
384 SIGNAL (SIGPIPE
, pipeser
);
387 * Get the associated umask for the relevant contents.
389 for (ctp
= cts
; *ctp
; ctp
++) {
393 if (type_ok (ct
, 1) && !ct
->c_umask
) {
394 if (stat (ct
->c_file
, &st
) != NOTOK
)
395 ct
->c_umask
= ~(st
.st_mode
& 0777);
397 ct
->c_umask
= ~m_gmprot();
401 /* If reading from a folder, do some updating */
403 context_replace (pfolder
, folder
);/* update current folder */
404 seq_setcur (mp
, mp
->hghsel
); /* update current message */
405 seq_save (mp
); /* synchronize sequences */
406 context_save (); /* save the context file */
410 * Show the message content
412 show_all_messages (cts
);
414 /* Now free all the structures for the content */
415 for (ctp
= cts
; *ctp
; ctp
++)
431 fprintf (stderr
, "\n");