1MIMEEXPLODE(1) User Contributed Perl Documentation MIMEEXPLODE(1)
2
3
4
6 mimeexplode - explode one or more MIME messages
7
9 mimeexplode <mime-msg-file> <mime-msg-file> ...
10
11 someprocess | mimeexplode -
12
14 Takes one or more files from the command line that contain MIME
15 messages, and explodes their contents out into subdirectories of the
16 current working directory. The subdirectories are just called "msg0",
17 "msg1", "msg2", etc. Existing directories are skipped over.
18
19 The message information is output to the stdout, like this:
20
21 Message: msg3 (inputfile1.msg)
22 Part: msg3/filename-1.dat (text/plain)
23 Part: msg3/filename-2.dat (text/plain)
24 Message: msg5 (input-file2.msg)
25 Part: msg5/dir.gif (image/gif)
26 Part: msg5/face.jpg (image/jpeg)
27 Message: msg6 (infile3)
28 Part: msg6/filename-1.dat (text/plain)
29
30 This was written as an example of the MIME:: modules in the MIME-parser
31 package I wrote. It may prove useful as a quick-and-dirty way of
32 splitting a MIME message if you need to decode something, and you don't
33 have a MIME mail reader on hand.
34
36 None yet.
37
39 Eryq "eryq@zeegee.com", in a big hurry...
40
41
42
43perl v5.38.0 2023-07-20 MIMEEXPLODE(1)