.\" Automatically generated by Pod::Man 4.10 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Mail::SpamAssassin::Message::Node 3pm" .TH Mail::SpamAssassin::Message::Node 3pm "2021-03-26" "perl v5.28.1" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" Mail::SpamAssassin::Message::Node \- decode, render, and make available MIME message parts .SH "DESCRIPTION" .IX Header "DESCRIPTION" This module will encapsulate an email message and allow access to the various \s-1MIME\s0 message parts. .SH "PUBLIC METHODS" .IX Header "PUBLIC METHODS" .IP "\fBnew()\fR" 4 .IX Item "new()" Generates an empty Node object and returns it. Typically only called by functions in Message. .IP "\fBfind_parts()\fR" 4 .IX Item "find_parts()" Used to search the tree for specific \s-1MIME\s0 parts. An array of matching Node objects (pointers into the tree) is returned. The parameters that can be passed in are (in order, all scalars): .Sp Regexp \- Used to match against each part's Content-Type header, specifically the type and not the rest of the header. ie: \*(L"Content-type: text/html; encoding=quoted\-printable\*(R" has a type of \*(L"text/html\*(R". If no regexp is specified, \fBfind_parts()\fR will return an empty array. .Sp Only_leaves \- By default, \fBfind_parts()\fR will return any part that matches the regexp, including multipart. If you only want to see leaves of the tree (ie: parts that aren't multipart), set this to true (1). .Sp Recursive \- By default, when \fBfind_parts()\fR finds a multipart which has parts underneath it, it will recurse through all sub-children. If set to 0, only look at the part and any direct children of the part. .IP "\fBheader()\fR" 4 .IX Item "header()" Stores and retrieves headers from a specific \s-1MIME\s0 part. The first parameter is the header name. If there is no other parameter, the header is retrieved. If there is a second parameter, the header is stored. .Sp Header names are case-insensitive and are stored in both raw and decoded form. Using \fBheader()\fR, only the decoded form is retrievable. .Sp For retrieval, if \fBheader()\fR is called in an array context, an array will be returned with each header entry in a different element. In a scalar context, the last specific header is returned. .Sp ie: If 'Subject' is specified as the header, and there are 2 Subject headers in a message, the last/bottom one in the message is returned in scalar context or both are returned in array context. .IP "\fBraw_header()\fR" 4 .IX Item "raw_header()" Retrieves the raw version of headers from a specific \s-1MIME\s0 part. The only parameter is the header name. Header names are case-insensitive. .Sp For retrieval, if \fBraw_header()\fR is called in an array context, an array will be returned with each header entry in a different element. In a scalar context, the last specific header is returned. .Sp ie: If 'Subject' is specified as the header, and there are 2 Subject headers in a message, the last/bottom one in the message is returned in scalar context or both are returned in array context. .IP "\fBadd_body_part()\fR" 4 .IX Item "add_body_part()" Adds a Node child object to the current node object. .IP "\fBis_leaf()\fR" 4 .IX Item "is_leaf()" Returns true if the tree node in question is a leaf of the tree (ie: has no children of its own). Note: This function may return odd results unless the message has been mime parsed via \fB_do_parse()\fR! .IP "\fBraw()\fR" 4 .IX Item "raw()" Return a reference to the the raw array. Treat this as \s-1READ ONLY.\s0 .IP "\fBdecode()\fR" 4 .IX Item "decode()" If necessary, decode the part text as base64 or quoted-printable. The decoded text will be returned as a scalar string. An optional length parameter can be passed in which limits how much decoded data is returned. If the scalar isn't needed, call with \*(L"0\*(R" as a parameter. .IP "\fBrendered()\fR" 4 .IX Item "rendered()" \&\fBrender_text()\fR takes the given text/* type \s-1MIME\s0 part, and attempts to render it into a text scalar. It will always render text/html, and will use a heuristic to determine if other text/* parts should be considered text/html. Two scalars are returned: the rendered type (either text/html or whatever the original type was), and the rendered text. .ie n .IP "set_rendered($text, $type)" 4 .el .IP "set_rendered($text, \f(CW$type\fR)" 4 .IX Item "set_rendered($text, $type)" Set the rendered text and type for the given part. If type is not specified, and text is a defined value, a default of 'text/plain' is used. This can be used, for instance, to render non-text parts using plugins. .IP "\fBvisible_rendered()\fR" 4 .IX Item "visible_rendered()" Render and return the visible text in this part. .IP "\fBinvisible_rendered()\fR" 4 .IX Item "invisible_rendered()" Render and return the invisible text in this part. .IP "\fBcontent_summary()\fR" 4 .IX Item "content_summary()" Returns an array of scalars describing the mime parts of the message. Note: This function requires that the message be parsed first! .IP "\fBdelete_header()\fR" 4 .IX Item "delete_header()" Delete the specified header (decoded and raw) from the Node information. .IP "\fBget_header()\fR" 4 .IX Item "get_header()" Retrieve a specific header. Will have a newline at the end and will be unfolded. The first parameter is the header name (case-insensitive), and the second parameter (optional) is whether or not to return the raw header. .Sp If \fBget_header()\fR is called in an array context, an array will be returned with each header entry in a different element. In a scalar context, the last specific header is returned. .Sp ie: If 'Subject' is specified as the header, and there are 2 Subject headers in a message, the last/bottom one in the message is returned in scalar context or both are returned in array context. .Sp Btw, returning the last header field (not the first) happens to be consistent with \s-1DKIM\s0 signatures, which search for and cover multiple header fields bottom-up according to the 'h' tag. Let's keep it this way. .IP "\fBget_all_headers()\fR" 4 .IX Item "get_all_headers()" Retrieve all headers. Each header will have a newline at the end and will be unfolded. The first parameter (optional) is whether or not to return the raw headers, and the second parameter (optional) is whether or not to include the mbox separator. .Sp If \fBget_all_header()\fR is called in an array context, an array will be returned with each header entry in a different element. In a scalar context, the headers are returned in a single scalar.