|
NAMEEmail::MIME::RFC2047::Decoder - Decoding of non-ASCII MIME headersVERSIONversion 0.97SYNOPSISuse Email::MIME::RFC2047::Decoder; my $decoder = Email::MIME::RFC2047::Decoder->new(); my $string = $decoder->decode_text($encoded_text); my $string = $decoder->decode_phrase($encoded_phrase); DESCRIPTIONThis module decodes parts of MIME email message headers containing non-ASCII text according to RFC 2047.CONSTRUCTORnewmy $decoder = Email::MIME::RFC2047::Decoder->new(); Creates a new decoder object. METHODSdecode_textmy $string = $decoder->decode_text($encoded_text); Decodes any MIME header field for which the field body is defined as "unstructured" (RFC 2822) or *text (RFC 822), for example, any Subject or Comments header field. $encoded_text can also be a reference to a scalar. In this case, the scalar is processed starting from the current search position. See "pos" in perlfunc. The resulting string is trimmed and any whitespace is collapsed. This means that lines separated by folding whitespace are unfolded. Folding whitespace is not checked for syntactical correctness. Newlines are treated like normal whitespace. decode_phrasemy $string = $decoder->decode_phrase($encoded_phrase); Decodes any "phrase" token (as defined by RFC 2822) in a MIME header field, for example, one that precedes an address in a From, To, or Cc header. This method works like decode_text but additionally unquotes any "quoted-string"s. It also stops at any special character as defined by RFC 2822, excluding the period character "." and the double quote '"'. If $encoded_phrase is a reference to a scalar, the current search position is set accordingly. This is helpful when parsing RFC 2822 address headers. AUTHORNick Wellnhofer <wellnhofer@aevum.de>COPYRIGHT AND LICENSEThis software is copyright (c) 2017 by Nick Wellnhofer.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |