X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=mimedecode.docbook;h=897f0bc43dee32d3279e4275f3b2e8b949e2a60e;hb=aad73ab7b281381e464446e16bd9c88344f89d11;hp=0a690213af43010f8db11d01742d939ebd922938;hpb=16d98dbe4bd8cb9cda80da5d1e881aecc872e486;p=mimedecode.git diff --git a/mimedecode.docbook b/mimedecode.docbook index 0a69021..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 @@ -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). +