X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=mimedecode.docbook;h=897f0bc43dee32d3279e4275f3b2e8b949e2a60e;hb=6f1f365730f3a886ce31abe39cc4cc0f992206f0;hp=555c5f2525be9d84e7dcf442bfce9cf585bfe835;hpb=1f2c7c40dca5b1937436c71d529d0b1f733302ce;p=mimedecode.git diff --git a/mimedecode.docbook b/mimedecode.docbook index 555c5f2..897f0bc 100644 --- a/mimedecode.docbook +++ b/mimedecode.docbook @@ -92,6 +92,9 @@ + + + @@ -440,6 +443,26 @@ + + --save-headers mask + + + + --save-body mask + + + + --save-message mask + + + Append mask to a list of content types to save to a file; + --save-headers saves only decoded headers of the message (or + subpart); --save-body saves only decoded body; --save-message saves + the entire message (or subpart). + + + + -O dest_dir @@ -454,8 +477,8 @@ -o output_file - Set the output file. Uses destination directory from option -O. - Also useful in case of redirected stdin: + Save output to the file related to the destination directory from + option -O. Also useful in case of redirected stdin: mimedecode.py -o output_file < input_file cat input_file | mimedecode.py -o output_file @@ -494,6 +517,19 @@ cat input_file | mimedecode.py -o output_file Initially all 4 lists are empty, so without any additional parameters the program always uses the default decoding. + + + The 3 save list options (--save-headers/body/message) are similar. They make + the program to save every non-multipart subpart (only headers, or body, or + the entire subpart) that corresponds to the given mask to a file. Before + saving the message (or the subpart) is decoded according to all other options + and placed to the output stream as usual. Filename for the file is created + using "filename" parameter from the Content-Disposition header, or "name" + parameter from the Content-Type header if one of those exist; a serial + counter is prepended to the filename to avoid collisions; if there are no + name/filename parameters, the filename is just the serial counter. The file + is saved in the directory set with -O (default is the current directory). +