]>
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
;
72 extern int nomore
; /* flags for moreproc/header display */
78 extern char *parts
[NPARTS
+ 1];
79 extern char *types
[NTYPES
+ 1];
85 #define quitser pipeser
88 CT
parse_mime (char *);
91 int part_ok (CT
, int);
92 int type_ok (CT
, int);
93 void flush_errors (void);
96 void show_all_messages (CT
*);
100 void freects_done (int) NORETURN
;
105 static void pipeser (int);
109 main (int argc
, char **argv
)
111 int msgnum
, *icachesw
;
112 char *cp
, *file
= NULL
, *folder
= NULL
;
113 char *maildir
, buf
[100], **argp
;
115 struct msgs_array msgs
= { 0, 0, NULL
};
116 struct msgs
*mp
= NULL
;
123 setlocale(LC_ALL
, "");
125 invo_name
= r1bindex (argv
[0], '/');
127 /* read user profile/context */
130 arguments
= getarguments (invo_name
, argc
, argv
, 1);
136 while ((cp
= *argp
++)) {
138 switch (smatch (++cp
, switches
)) {
140 ambigsw (cp
, switches
);
143 adios (NULL
, "-%s unknown", cp
);
146 snprintf (buf
, sizeof(buf
), "%s [+folder] [msgs] [switches]",
148 print_help (buf
, switches
, 1);
151 print_version(invo_name
);
155 icachesw
= &rcachesw
;
158 icachesw
= &wcachesw
;
160 if (!(cp
= *argp
++) || *cp
== '-')
161 adios (NULL
, "missing argument to %s", argp
[-2]);
162 switch (*icachesw
= smatch (cp
, caches
)) {
164 ambigsw (cp
, caches
);
167 adios (NULL
, "%s unknown", cp
);
195 if (!(cp
= *argp
++) || *cp
== '-')
196 adios (NULL
, "missing argument to %s", argp
[-2]);
198 adios (NULL
, "too many parts (starting with %s), %d max",
204 if (!(cp
= *argp
++) || *cp
== '-')
205 adios (NULL
, "missing argument to %s", argp
[-2]);
207 adios (NULL
, "too many types (starting with %s), %d max",
213 if (!(cp
= *argp
++) || (*cp
== '-' && cp
[1]))
214 adios (NULL
, "missing argument to %s", argp
[-2]);
215 file
= *cp
== '-' ? cp
: path (cp
, TFILE
);
219 if (!(cp
= *argp
++) || *cp
== '-')
220 adios (NULL
, "missing argument to %s", argp
[-2]);
223 formsw
= getcpy (etcpath (cp
));
227 * Switches for moreproc/mhlproc
230 if (!(progsw
= *argp
++) || *progsw
== '-')
231 adios (NULL
, "missing argument to %s", argp
[-2]);
239 if (!(cp
= *argp
++) || *cp
== '-')
240 adios (NULL
, "missing argument to %s", argp
[-2]);
254 if (*cp
== '+' || *cp
== '@') {
256 adios (NULL
, "only one folder at a time!");
258 folder
= pluspath (cp
);
260 app_msgarg(&msgs
, cp
);
263 /* null terminate the list of acceptable parts/types */
268 * Check if we've specified an additional profile
270 if ((cp
= getenv ("MHSHOW"))) {
271 if ((fp
= fopen (cp
, "r"))) {
272 readconfig ((struct node
**) 0, fp
, cp
, 0);
275 admonish ("", "unable to read $MHSHOW profile (%s)", cp
);
280 * Read the standard profile setup
282 if ((fp
= fopen (cp
= etcpath ("mhn.defaults"), "r"))) {
283 readconfig ((struct node
**) 0, fp
, cp
, 0);
287 /* Check for public cache location */
288 if ((cache_public
= context_find (nmhcache
)) && *cache_public
!= '/')
291 /* Check for private cache location */
292 if (!(cache_private
= context_find (nmhprivcache
)))
293 cache_private
= ".cache";
294 cache_private
= getcpy (m_maildir (cache_private
));
297 * Check for storage directory. If specified,
298 * then store temporary files there. Else we
299 * store them in standard nmh directory.
301 if ((cp
= context_find (nmhstorage
)) && *cp
)
302 tmp
= concat (cp
, "/", invo_name
, NULL
);
304 tmp
= add (m_maildir (invo_name
), NULL
);
306 if (!context_find ("path"))
307 free (path ("./", TFOLDER
));
309 if (file
&& msgs
.size
)
310 adios (NULL
, "cannot specify msg and file at same time!");
313 * check if message is coming from file
316 if (!(cts
= (CT
*) calloc ((size_t) 2, sizeof(*cts
))))
317 adios (NULL
, "out of memory");
320 if ((ct
= parse_mime (file
)))
324 * message(s) are coming from a folder
327 app_msgarg(&msgs
, "cur");
329 folder
= getfolder (1);
330 maildir
= m_maildir (folder
);
332 if (chdir (maildir
) == NOTOK
)
333 adios (maildir
, "unable to change directory to");
335 /* read folder and create message structure */
336 if (!(mp
= folder_read (folder
, 1)))
337 adios (NULL
, "unable to read folder %s", folder
);
339 /* check for empty folder */
341 adios (NULL
, "no messages in %s", folder
);
343 /* parse all the message ranges/sequences and set SELECTED */
344 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
345 if (!m_convert (mp
, msgs
.msgs
[msgnum
]))
349 * Set the SELECT_UNSEEN bit for all the SELECTED messages,
350 * since we will use that as a tag to know which messages
351 * to remove from the "unseen" sequence.
353 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++)
354 if (is_selected(mp
, msgnum
))
355 set_unseen (mp
, msgnum
);
357 seq_setprev (mp
); /* set the Previous-Sequence */
358 seq_setunseen (mp
, 1); /* unset the Unseen-Sequence */
360 if (!(cts
= (CT
*) calloc ((size_t) (mp
->numsel
+ 1), sizeof(*cts
))))
361 adios (NULL
, "out of memory");
365 * Parse all the SELECTED messages.
367 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
368 if (is_selected(mp
, msgnum
)) {
371 msgnam
= m_name (msgnum
);
372 if ((ct
= parse_mime (msgnam
)))
382 SIGNAL (SIGQUIT
, quitser
);
383 SIGNAL (SIGPIPE
, pipeser
);
386 * Get the associated umask for the relevant contents.
388 for (ctp
= cts
; *ctp
; ctp
++) {
392 if (type_ok (ct
, 1) && !ct
->c_umask
) {
393 if (stat (ct
->c_file
, &st
) != NOTOK
)
394 ct
->c_umask
= ~(st
.st_mode
& 0777);
396 ct
->c_umask
= ~m_gmprot();
400 /* If reading from a folder, do some updating */
402 context_replace (pfolder
, folder
);/* update current folder */
403 seq_setcur (mp
, mp
->hghsel
); /* update current message */
404 seq_save (mp
); /* synchronize sequences */
405 context_save (); /* save the context file */
409 * Show the message content
411 show_all_messages (cts
);
413 /* Now free all the structures for the content */
414 for (ctp
= cts
; *ctp
; ctp
++)
430 fprintf (stderr
, "\n");