1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
|
##---------------------------------------------------------------------------##
## File:
## $Id: readmail.pl,v 2.38 2005/12/20 20:54:50 ehood Exp $
## Author:
## Earl Hood mhonarc AT mhonarc DOT org
## Description:
## Library defining routines to parse MIME e-mail messages. The
## library is designed so it may be reused for other e-mail
## filtering programs. The default behavior is for mail->html
## filtering, however, the defaults can be overridden to allow
## mail->whatever filtering.
##
## Public Functions:
## ----------------
## $data = MAILdecode_1522_str($str);
## ($data, @files) = MAILread_body($fields_hash_ref, $body_ref);
## $hash_ref = MAILread_file_header($handle);
## $hash_ref = MAILread_header($mesg_str_ref);
##
## ($disp, $file, $raw, $html_name) =
## MAILhead_get_disposition($fields_hash_ref, $do_html);
## $boolean = MAILis_excluded($content_type);
## $parm_hash_ref = MAILparse_parameter_str($header_field);
## $parm_hash_ref = MAILparse_parameter_str($header_field, 1);
##
##---------------------------------------------------------------------------##
## Copyright (C) 1996-2003 Earl Hood, mhonarc AT mhonarc DOT org
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
## 02111-1307, USA
##---------------------------------------------------------------------------##
package readmail;
###############################################################################
## Private Globals ##
###############################################################################
#my $Url = '(\w+://|\w+:)';
my @_MIMEAltPrefs = ();
my %_MIMEAltPrefs = ();
###############################################################################
## Public Globals ##
###############################################################################
##---------------------------------------------------------------------------##
## Constants
##
## String for matching the start of a URL: It seems unnecessary to
# try to recognize all valid schemes, so we use a simplier regex.
# Keep the old one around just in case we need to resurrect it.
#$UrlRxStr =
# '(?:(?:https?|ftp|afs|wais|telnet|ldap|gopher|z39\.50[rs]|vemmi|imap|'.
# 'nfs|acap|rtspu?|tip|pop|sip|(?:soap|xmlrpc)\.beeps?|go|ipp|'.
# 'tftp)://|'.
# 'news:(?://)?|'.
# '(?:nntp|mid|cid|mailto|prospero|data|service|tel|fax|modem|h\.323):)';
$UrlRxStr =
'(?:(?:https?|ftp|ldap|gopher)://|news:(?://)?|(?:nntp|mailto):)';
## Constants for use as second argument to MAILdecode_1522_str().
sub JUST_DECODE() { 1; }
sub DECODE_ALL() { 2; }
sub TEXT_ENCODE() { 3; }
##---------------------------------------------------------------------------##
##---------------------------------------------------------------------------##
## Scalar Variables
##
## Flag if message headers are decoded in the parse header routines:
## MAILread_header, MAILread_file_header. This only affects the
## values of the field hash created. The original header is still
## passed as the return value.
##
## The only 1522 data that will be decoded is data encoded with charsets
## set to "-decode-" in the %MIMECharSetConverters hash.
$DecodeHeader = 0;
##---------------------------------------------------------------------------##
## Variables for holding information related to the functions used
## for processing MIME data. Variables are defined in the scope
## of main.
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## %MIMEDecoders is the associative array for storing functions for
## decoding mime data.
##
## Keys => content-transfer-encoding (should be in lowercase)
## Values => function name.
##
## Function names should be qualified with package identifiers.
## Functions are called as follows:
##
## $decoded_data = &function($data);
##
## The value "as-is" may be used to allow the data to be passed without
## decoding to the registered filter, but the decoded flag will be
## set to true.
%MIMEDecoders = ()
unless defined(%MIMEDecoders);
%MIMEDecodersSrc = ()
unless defined(%MIMEDecodersSrc);
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## %MIMECharSetConverters is the associative array for storing functions
## for converting data in a particular charset to a destination format
## within the MAILdecode_1522_str() routine. Destination format is defined
## by the function.
##
## Keys => charset (should be in lowercase)
## Values => function name.
##
## Charset values take on a form like "iso-8859-1" or "us-ascii".
## NOTE: Values need to be in lower-case.
##
## The key "default" can be assigned to define the default function
## to call if no explicit charset function is defined.
##
## The key "plain" can be set to a function for decoded regular text not
## encoded in 1522 format.
##
## Function names are name of defined perl function and should be
## qualified with package identifiers. Functions are called as follows:
##
## $converted_data = &function($data, $charset);
##
## A function called "-decode-" implies that the data should be
## decoded, but no converter is to be invoked.
##
## A function called "-ignore-" implies that the data should
## not be decoded and converted. Ie. For the specified charset,
## the encoding will stay unprocessed and passed back in the return
## string.
%MIMECharSetConverters = ()
unless defined(%MIMECharSetConverters);
%MIMECharSetConvertersSrc = ()
unless defined(%MIMECharSetConvertersSrc);
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## %MIMEFilters is the associative array for storing functions that
## process various content-types in the MAILread_body routine.
##
## Keys => Content-type (should be in lowercase)
## Values => function name.
##
## Function names should be qualified with package identifiers.
## Functions are called as follows:
##
## $converted_data = &function($header, *parsed_header_assoc_array,
## *message_data, $decoded_flag,
## $optional_filter_arguments);
##
## Functions can be registered for base types. Example:
##
## $MIMEFilters{"image/*"} = "mypackage'function";
##
## IMPORTANT: If a function specified is not defined when MAILread_body
## tries to invoke it, MAILread_body will silently ignore. Make sure
## that all functions are defined before invoking MAILread_body.
%MIMEFilters = ()
unless defined(%MIMEFilters);
%MIMEFiltersSrc = ()
unless defined(%MIMEFiltersSrc);
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## %MIMEFiltersArgs is the associative array for storing any optional
## arguments to functions specified in MIMEFilters (the
## $optional_filter_arguments from above).
##
## Keys => Either one of the following: content-type, function name.
## Values => Argument string (format determined by filter function).
##
## Arguments listed for a content-type will be used over arguments
## listed for a function if both are applicable.
%MIMEFiltersArgs = ()
unless defined(%MIMEFiltersArgs);
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## %MIMEExcs is the associative array listing which data types
## should be auto-excluded during parsing:
##
## Keys => content-type, or base-type
## Values => <should evaluate to a true expression>
%MIMEExcs = ()
unless defined(%MIMEExcs);
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## %MIMEIncs is the associative array listing which data types
## should be auto-included during parsing:
##
## Keys => content-type, or base-type
## Values => <should evaluate to a true expression>
##
## If there are any keys defined in %MIMEIncs, then any content-type
## not in the hash is automatically excluded. I.e. %MIMEIncs can
## be used to only allow a well-defined set of content-types.
%MIMEIncs = ()
unless defined(%MIMEIncs);
## - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
## %MIMECharsetAliases is a mapping of charset names to charset names.
## The MAILset_charset_aliases() routine should be used to set the
## values of this hash.
##
## Keys => charset name
## Values => real charset name
##
%MIMECharsetAliases = ()
unless defined(%MIMECharsetAliases);
##---------------------------------------------------------------------------
## Text entity-related variables
##
## Default character set if none specified.
$TextDefCharset = 'us-ascii'
unless defined($TextDefCharset);
## Destination character encoding for text entities.
$TextEncode = undef
unless defined($TextEncode);
## Text encoding function.
$TextEncoderFunc = undef
unless defined($TextEncodingFunc);
## Text encoding function source file.
$TextEncoderSrc = undef
unless defined($TextEncodingSrc);
## Prefilter function
$TextPreFilter = undef
unless defined($TextPreFilter);
##---------------------------------------------------------------------------
## Variables holding functions for generating processed output
## for MAILread_body(). The default functions generate HTML.
## However, the variables can be set to functions that generate
## a different type of output.
##
## $FormatHeaderFunc has no default, and must be defined by
## the calling program.
##
## Function that returns a message when failing to process a part of a
## a multipart message. The content-type of the message is passed
## as an argument.
$CantProcessPartFunc = \&cantProcessPart
unless(defined($CantProcessPartFunc));
## Function that returns a message when a part is excluded via %MIMEExcs.
$ExcludedPartFunc = \&excludedPart
unless(defined($ExcludedPartFunc));
## Function that returns a message when a part is unrecognized in a
## multipart/alternative message. I.e. No part could be processed.
## No arguments are passed to function.
$UnrecognizedAltPartFunc = \&unrecognizedAltPart
unless(defined($UnrecognizedAltPartFunc));
## Function that returns a string to go before any data generated generating
## from processing an embedded message (message/rfc822 or message/news).
## No arguments are passed to function.
$BeginEmbeddedMesgFunc = \&beginEmbeddedMesg
unless(defined($BeginEmbeddedMesgFunc));
## Function that returns a string to go after any data generated generating
## from processing an embedded message (message/rfc822 or message/news).
## No arguments are passed to function.
$EndEmbeddedMesgFunc = \&endEmbeddedMesg
unless(defined($EndEmbeddedMesgFunc));
## Function to return a string that is a result of the functions
## processing of a message header. The function is called for
## embedded messages (message/rfc822 and message/news). The
## arguments to function are:
##
## 1. Pointer to associative array representing message header
## contents with the keys as field labels (in all lower-case)
## and the values as field values of the labels.
##
## 2. Pointer to associative array mapping lower-case keys of
## argument 1 to original case.
##
## Prototype: $return_data = &function(*fields, *lower2orig_fields);
$FormatHeaderFunc = undef
unless(defined($FormatHeaderFunc));
###############################################################################
## Public Routines ##
###############################################################################
##---------------------------------------------------------------------------##
## MAILdecode_1522_str() decodes a string encoded in a format
## specified by RFC 1522. The decoded string is the return value.
## If no MIMECharSetConverters is registered for a charset, then
## the decoded data is returned "as-is".
##
## Usage:
##
## $ret_data = &MAILdecode_1522_str($str, $dec_flag);
##
## If $dec_flag is JUST_DECODE, $str will be decoded for only
## the charsets specified as "-decode-". If it is equal to
## DECODE_ALL, all encoded data is decoded without any conversion.
## If $dec_flag is TEXT_ENCODE, then all data will be converted
## and encoded according to $readmail::TextEncode and
## $readmail::TextEncoderFunc.
##
sub MAILdecode_1522_str {
my $str = shift;
my $dec_flag = shift || 0;
my $ret = ('');
my($charset,
$encoding,
$pos,
$dec,
$charcnv,
$real_charset,
$plaincnv,
$plain_real_charset,
$strtxt,
$str_before);
# Get text encoder
my $encfunc = undef;
if ($dec_flag == TEXT_ENCODE) {
$encfunc = load_textencoder();
if (!defined($encfunc)) {
$encfunc = undef unless defined($encfunc);
$dec_flag = 0;
}
}
# Get plain converter
($plaincnv, $plain_real_charset) = MAILload_charset_converter('plain');
$plain_real_charset = 'us-ascii' if $plain_real_charset eq 'plain';
# Decode string
my $firsttime = 1;
while ($str =~ /(=\?([^?]+)\?(.)\?([^?]*)\?=)/g) {
# Grab components
$pos = pos($str);
($charset, $encoding, $strtxt) = (lc($2), lc($3), $4);
$str_before = substr($str, 0, $pos-length($1));
substr($str, 0, $pos) = '';
pos($str) = 0;
# Check encoding method and grab proper decoder
if ($encoding eq 'b') {
$dec = &load_decoder('base64');
} else {
$dec = &load_decoder('quoted-printable');
}
# Convert before (unencoded) text
if ($firsttime || $str_before =~ /\S/) {
if (defined($encfunc)) { # encoding
&$encfunc(\$str_before, $plain_real_charset, $TextEncode);
$ret .= $str_before;
} elsif ($dec_flag) { # ignore if just decode
$ret .= $str_before;
} elsif (defined(&$plaincnv)) { # decode and convert
$ret .= &$plaincnv($str_before, $plain_real_charset);
} else { # ignore
$ret .= $str_before;
}
}
$firsttime = 0;
# Encoding text
if (defined($encfunc)) {
$real_charset = $MIMECharsetAliases{$charset}
? $MIMECharsetAliases{$charset} : $charset;
$strtxt =~ s/_/ /g;
$strtxt = &$dec($strtxt);
&$encfunc(\$strtxt, $real_charset, $TextEncode);
$ret .= $strtxt;
# Regular conversion
} else {
if ($dec_flag == DECODE_ALL) {
$charcnv = '-decode-';
} else {
($charcnv, $real_charset) =
MAILload_charset_converter($charset);
}
# Decode only
if ($charcnv eq '-decode-') {
$strtxt =~ s/_/ /g;
$ret .= &$dec($strtxt);
# Ignore if just decoding
} elsif ($dec_flag) {
$ret .= "=?$charset?$encoding?$strtxt?=";
# Decode and convert
} elsif (defined(&$charcnv)) {
$strtxt =~ s/_/ /g;
$ret .= &$charcnv(&$dec($strtxt), $real_charset);
# Fallback is to ignore
} else {
$ret .= "=?$charset?$encoding?$strtxt?=";
}
}
}
# Convert left-over unencoded text
if (defined($encfunc)) { # encoding
&$encfunc(\$str, $plain_real_charset, $TextEncode);
$ret .= $str;
} elsif ($dec_flag) { # ignore if just decode
$ret .= $str;
} elsif (defined(&$plaincnv)) { # decode and convert
$ret .= &$plaincnv($str, $plain_real_charset);
} else { # ignore
$ret .= $str;
}
$ret;
}
##---------------------------------------------------------------------------##
## MAILread_body() parses a MIME message body.
## Usage:
## ($data, @files) =
## MAILread_body($fields_hash_ref, $body_date_ref);
##
## Parameters:
## $fields_hash_ref
## A reference to hash of message/part header
## fields. Keys are field names in lowercase
## and values are array references containing the
## field values. For example, to obtain the
## content-type, if defined, one would do:
##
## $fields_hash_ref->{'content-type'}[0]
##
## Values for a fields are stored in arrays since
## duplication of fields are possible. For example,
## the Received: header field is typically repeated
## multiple times. For fields that only occur once,
## then array for the field will only contain one
## item.
##
## $body_data_ref
## Reference to body data. It is okay for the
## filter to modify the text in-place.
##
## Return:
## The first item in the return list is the text that should
## printed to the message page. Any other items in the return
## list are derived filenames created.
##
## See Also:
## MAILread_header(), MAILread_file_header()
##
sub MAILread_body {
my($fields, # Parsed header hash
$body, # Reference to raw body text
$inaltArg) = @_; # Flag if in multipart/alternative
my($type, $subtype, $boundary, $content, $ctype, $pos,
$encoding, $decodefunc, $args, $part, $uribase);
my(@parts) = ();
my(@files) = ();
my(@array) = ();
my $ret = "";
## Get type/subtype
if (defined($fields->{'content-type'})) {
$content = $fields->{'content-type'}->[0];
}
$content = 'text/plain' unless $content;
($ctype) = $content =~ m%^\s*([\w\-\./]+)%; # Extract content-type
$ctype =~ tr/A-Z/a-z/; # Convert to lowercase
if ($ctype =~ m%/%) { # Extract base and sub types
($type,$subtype) = split(/\//, $ctype, 2);
} elsif ($ctype =~ /text/i) {
$ctype = 'text/plain';
$type = 'text'; $subtype = 'plain';
} else {
$type = $subtype = '';
}
$fields->{'x-mha-content-type'} = $ctype;
## Check if type is excluded
if (MAILis_excluded($ctype)) {
return (&$ExcludedPartFunc($ctype));
}
## Get entity URI base
if (defined($fields->{'content-base'}) &&
($uribase = $fields->{'content-base'}[0])) {
$uribase =~ s/['"\s]//g;
} elsif (defined($fields->{'content-location'}) &&
($uribase = $fields->{'content-location'}[0])) {
$uribase =~ s/['"\s]//g;
}
$uribase =~ s|(.*/).*|$1| if $uribase;
## Load content-type filter
if ( (!defined($filter = &load_filter($ctype)) || !defined(&$filter)) &&
(!defined($filter = &load_filter("$type/*")) || !defined(&$filter)) &&
(!$inaltArg &&
(!defined($filter = &load_filter('*/*')) || !defined(&$filter)) &&
$ctype !~ m^\bmessage/(?:rfc822|news)\b^i &&
$type !~ /\bmultipart\b/) ) {
warn qq|Warning: Unrecognized content-type, "$ctype", |,
qq|assuming "application/octet-stream"\n|;
$filter = &load_filter('application/octet-stream');
}
## Check for filter arguments
$args = get_filter_args($ctype, "$type/*", $filter);
## Check encoding
if (defined($fields->{'content-transfer-encoding'})) {
$encoding = lc $fields->{'content-transfer-encoding'}[0];
$encoding =~ s/\s//g;
$decodefunc = &load_decoder($encoding);
} else {
$encoding = undef;
$decodefunc = undef;
}
my $decoded = 0;
if (defined($decodefunc) && defined(&$decodefunc)) {
$$body = &$decodefunc($$body);
$decoded = 1;
} elsif ($decodefunc =~ /as-is/i) {
$decoded = 1;
}
## Convert text encoding
if ($type eq 'text') {
my $charset = extract_charset($content, $subtype, $body);
$fields->{'x-mha-charset'} = $charset;
my $textfunc = load_textencoder();
if (defined($textfunc)) {
$fields->{'x-mha-charset'} = $TextEncode
if defined(&$textfunc($body, $charset, $TextEncode));
}
if (defined($TextPreFilter) && defined(&$TextPreFilter)) {
&$TextPreFilter($fields, $body);
}
} else {
# define x-mha-charset in case text filter associated with
# a non-text type
$fields->{'x-mha-charset'} = $TextDefCharset;
}
## A filter is defined for given content-type
if ($filter && defined(&$filter)) {
@array = &$filter($fields, $body, $decoded, $args);
## Setup return variables
$ret = shift @array; # Return string
push(@files, @array); # Derived files
## No filter defined for given content-type
} else {
## If multipart, recursively process each part
if ($type =~ /\bmultipart\b/i) {
local(%Cid) = ( ) unless scalar(caller) eq 'readmail';
my($isalt) = $subtype =~ /\balternative\b/i;
## Get boundary
$boundary = "";
if ($content =~ m/\bboundary\s*=\s*"([^"]*)"/i) {
$boundary = $1;
} else {
($boundary) = $content =~ m/\bboundary\s*=\s*([^\s;]+)/i;
$boundary =~ s/;$//; # chop ';' if grabbed
}
## If boundary defined, split body into parts
if ($boundary =~ /\S/) {
my $found = 0;
my $have_end = 0;
my $start_pos = 0;
substr($$body, 0, 0) = "\n";
substr($boundary, 0, 0) = "\n--";
my $blen = length($boundary);
my $bchkstr;
while (($pos = index($$body, $boundary, $start_pos)) > -1) {
# have to check for case when boundary is a substring
# of another boundary, yuck!
$bchkstr = substr($$body, $pos+$blen, 2);
unless ($bchkstr =~ /\A\r?\n/ || $bchkstr =~ /\A--/) {
# incomplete match, continue search
$start_pos = $pos+$blen;
next;
}
$found = 1;
push(@parts, substr($$body, 0, $pos));
$parts[$#parts] =~ s/^\r//;
# prune out part data just grabbed
substr($$body, 0, $pos+$blen) = "";
# check if hit end
if ($$body =~ /\A--/) {
$have_end = 1;
last;
}
# remove EOL at the beginning
$$body =~ s/\A\r?\n//;
$start_pos = 0;
}
if ($found) {
if (!$have_end) {
warn qq/Warning: No end boundary delimiter found in /,
qq/message body\n/;
push(@parts, $$body);
$parts[$#parts] =~ s/^\r//;
$$body = "";
} else {
# discard front-matter
shift(@parts);
}
} else {
# no boundary separators in message!
warn qq/Warning: No boundary delimiters found in /,
qq/multipart body\n/;
if ($$body =~ m/\A\n[\w\-]+:\s/) {
# remove \n added above if part looks like it has
# headers. we keep if it does not to avoid body
# data being parsed as a header below.
substr($$body, 0, 1) = "";
}
push(@parts, $$body);
}
## Else treat body as one part
} else {
@parts = ($$body);
}
## Process parts
my(@entity) = ();
my($cid, $href, $pctype);
my %alt_exc = ( );
my $have_alt_prefs = $isalt && scalar(@_MIMEAltPrefs);
my $partno = 0;
@parts = \(@parts);
while (defined($part = shift(@parts))) {
$href = { };
$partfields = $href->{'fields'} = (MAILread_header($part))[0];
$href->{'body'} = $part;
$href->{'filtered'} = 0;
$partfields->{'x-mha-part-number'} = ++$partno;
$pctype = extract_ctype(
$partfields->{'content-type'}, $ctype);
## check alternative preferences
if ($have_alt_prefs) {
next if ($alt_exc{$pctype});
my $pos = $_MIMEAltPrefs{$pctype};
if (defined($pos)) {
for (++$pos; $pos <= $#_MIMEAltPrefs; ++$pos) {
$alt_exc{$_MIMEAltPrefs[$pos]} = 1;
}
}
}
## only add to %Cid if not excluded
if (!&MAILis_excluded($pctype)) {
if ($isalt) {
unshift(@entity, $href);
} else {
push(@entity, $href);
}
$cid = $partfields->{'content-id'}[0] ||
$partfields->{'message-id'}[0];
if (defined($cid)) {
$cid =~ s/[\s<>]//g;
$Cid{"cid:$cid"} = $href if $cid =~ /\S/;
}
$cid = undef;
if (defined($partfields->{'content-location'}) &&
($cid = $partfields->{'content-location'}[0])) {
my $partbase = $uribase;
$cid =~ s/['"\s]//g;
if (defined($partfields->{'content-base'})) {
$partbase = $partfields->{'content-base'}[0];
}
$cid = apply_base_url($partbase, $cid);
if ($cid =~ /\S/ && !$Cid{$cid}) {
$Cid{$cid} = $href;
}
}
if ($cid) {
$partfields->{'content-location'} = [ $cid ];
} elsif (!defined($partfields->{'content-base'})) {
$partfields->{'content-base'} = [ $uribase ];
}
$partfields->{'x-mha-parent-header'} = $fields;
}
}
my($entity);
ENTITY: foreach $entity (@entity) {
if ($entity->{'filtered'}) {
next ENTITY;
}
## If content-type not defined for part, then determine
## content-type based upon multipart subtype.
$partfields = $entity->{'fields'};
if (!defined($partfields->{'content-type'})) {
$partfields->{'content-type'} =
[ ($subtype =~ /digest/) ?
'message/rfc822' : 'text/plain' ];
}
## Process part
@array = MAILread_body(
$partfields,
$entity->{'body'},
$isalt);
## Only use last filterable part in alternate
if ($isalt) {
$ret = shift @array;
if ($ret) {
push(@files, @array);
$entity->{'filtered'} = 1;
last ENTITY;
}
} else {
if (!$array[0]) {
$array[0] = &$CantProcessPartFunc(
$partfields->{'content-type'}[0]);
}
$ret .= shift @array;
}
push(@files, @array);
$entity->{'filtered'} = 1;
}
## Check if multipart/alternative, and no success
if (!$ret && $isalt) {
warn qq|Warning: No recognized part in multipart/alternative; |,
qq|will try to decode last part\n|;
$entity = $entity[0];
@array = &MAILread_body(
$entity->{'fields'},
$entity->{'body'});
$ret = shift @array;
if ($ret) {
push(@files, @array);
} else {
$ret = &$UnrecognizedAltPartFunc();
}
}
## Aid garbage collection(?)
foreach $entity (@entity) {
delete $entity->{'fields'}{'x-mha-parent-header'};
}
## Else if message/rfc822 or message/news
} elsif ($ctype =~ m^\bmessage/(?:rfc822|news)\b^i) {
$partfields = (MAILread_header($body))[0];
# propogate parent and part no to message/* header
$partfields->{'x-mha-parent-header'} =
$fields->{'x-mha-parent-header'};
$partfields->{'x-mha-part-number'} =
$fields->{'x-mha-part-number'};
$ret = &$BeginEmbeddedMesgFunc();
if ($FormatHeaderFunc && defined(&$FormatHeaderFunc)) {
$ret .= &$FormatHeaderFunc($partfields);
} else {
warn "Warning: readmail: No message header formatting ",
"function defined\n";
}
@array = MAILread_body($partfields, $body);
$ret .= shift @array ||
&$CantProcessPartFunc(
$partfields->{'content-type'}[0] || 'text/plain');
$ret .= &$EndEmbeddedMesgFunc();
push(@files, @array);
delete $partfields->{'x-mha-parent-header'};
## Else cannot handle type
} else {
$ret = '';
}
}
($ret, @files);
}
##---------------------------------------------------------------------------##
## MAILread_header reads (and strips) a mail message header from the
## variable $mesg. $mesg is a reference to the mail message in
## a string.
##
## $fields is a reference to a hash to put field values indexed by
## field labels that have been converted to all lowercase.
## Field values are array references to the values
## for each field.
##
## ($fields_hash_ref, $header_txt) = MAILread_header($mesg_data);
##
sub MAILread_header {
my $mesg = shift;
my $fields = { };
my $label = '';
my $header = '';
my($value, $tmp, $pos);
my $encfunc = load_textencoder();
## Read a line at a time.
for ($pos=0; $pos >= 0; ) {
$pos = index($$mesg, "\n");
if ($pos >= 0) {
$tmp = substr($$mesg, 0, $pos+1);
substr($$mesg, 0, $pos+1) = "";
last if $tmp =~ /^\r?$/; # Done if blank line
$header .= $tmp;
chop $tmp; # Chop newline
$tmp =~ s/\r$//; # Delete <CR> characters
} else {
$tmp = $$mesg;
$header .= $tmp;
}
## Decode text if requested
if (defined($encfunc)) {
$tmp = &MAILdecode_1522_str($tmp,TEXT_ENCODE);
} elsif ($DecodeHeader) {
$tmp = &MAILdecode_1522_str($tmp,JUST_DECODE);
}
## Check for continuation of a field
if ($tmp =~ /^\s/) {
$fields->{$label}[-1] .= $tmp if $label;
next;
}
## Separate head from field text
if ($tmp =~ /^([^:\s]+):\s*([\s\S]*)$/) {
($label, $value) = (lc($1), $2);
if ($fields->{$label}) {
push(@{$fields->{$label}}, $value);
} else {
$fields->{$label} = [ $value ];
}
}
}
($fields, $header);
}
##---------------------------------------------------------------------------##
## MAILread_file_header reads (and strips) a mail message header
## from the filehandle $handle. The routine behaves in the
## same manner as MAILread_header;
##
## ($fields_hash, $header_text) = MAILread_file_header($filehandle);
##
sub MAILread_file_header {
my $handle = shift;
my $encode = shift;
my $encfunc = load_textencoder();
my $label = '';
my $header = '';
my $fields = { };
local $/ = "\n";
my($value, $tmp);
while (($tmp = <$handle>) !~ /^[\r]?$/) {
## Save raw text
$header .= $tmp;
## Delete eol characters
$tmp =~ s/[\r\n]//g;
## Decode text if requested
if (defined($encfunc)) {
$tmp = &MAILdecode_1522_str($tmp,TEXT_ENCODE);
} elsif ($DecodeHeader) {
$tmp = &MAILdecode_1522_str($tmp,JUST_DECODE);
}
## Check for continuation of a field
if ($tmp =~ /^\s/) {
$fields->{$label}[-1] .= $tmp if $label;
next;
}
## Separate head from field text
if ($tmp =~ /^([^:\s]+):\s*([\s\S]*)$/) {
($label, $value) = (lc($1), $2);
if (defined($fields->{$label})) {
push(@{$fields->{$label}}, $value);
} else {
$fields->{$label} = [ $value ];
}
}
}
($fields, $header);
}
##---------------------------------------------------------------------------##
## MAILis_excluded() checks if specified content-type has been
## specified to be excluded.
##
sub MAILis_excluded {
my $ctype = lc($_[0]) || 'text/plain';
my $btype = undef;
$ctype =~ s/\/x-/\//;
if ($ctype =~ m|([^/]+)/|) {
$btype = $1;
}
MIMEINCS: {
# Treat multipart special: It is always included unless present
# in MIMEExcs.
last MIMEINCS if ($ctype =~ /^multipart\b/);
if (%MIMEIncs) {
if ($MIMEIncs{$ctype} || (defined($btype) && $MIMEIncs{$btype})) {
last MIMEINCS;
} else {
return 1;
}
}
}
if ($MIMEExcs{$ctype} || (defined($btype) && $MIMEExcs{$btype})) {
return 1;
}
0;
}
##---------------------------------------------------------------------------##
## MAILhead_get_disposition gets the content disposition and
## filename from $hfields, $hfields is a hash produced by the
## MAILread_header and MAILread_file_header routines.
##
sub MAILhead_get_disposition {
my $hfields = shift;
my $do_html = shift;
my($disp, $filename, $raw) = ('', '', '');
my $html_name = undef;
local($_);
if (defined($hfields->{'content-disposition'}) &&
($_ = $hfields->{'content-disposition'}->[0])) {
($disp) = /^\s*([^\s;]+)/;
if (/filename="([^"]+)"/i) {
$raw = $1;
} elsif (/filename=(\S+)/i) {
($raw = $1) =~ s/;\s*$//g;
}
}
if (!$raw && defined($_ = $hfields->{'content-type'}[0])) {
if (/name="([^"]+)"/i) {
$raw = $1;
} elsif (/name=(\S+)/i) {
($raw = $1) =~ s/;\s*$//g;
}
}
$filename = MAILdecode_1522_str($raw, DECODE_ALL);
$filename =~ s%.*[/\\:]%%; # Remove any path component
$filename =~ s/^\s+//; # Remove leading whitespace
$filename =~ s/\s+$//; # Remove trailing whitespace
$filename =~ tr/\0-\40\t\n\r?:*"'<>|\177-\377/_/;
# Remove questionable/invalid characters
# Only provide HTML display version if requested
$html_name = MAILdecode_1522_str($raw) if $do_html;
($disp, $filename, $raw, $html_name);
}
##---------------------------------------------------------------------------##
## MAILparse_parameter_str(): parses a parameter/value string.
## Support for RFC 2184 extensions exists. The $hasmain flag tells
## the method if there is an intial main value for the sting. For
## example:
##
## text/plain; charset=us-ascii
## ----^^^^^^^^^^
##
## The "text/plain" part is not a parameter/value pair, but having
## an initial value is common among some header fields that can have
## parameter/value pairs (egs: Content-Type, Content-Disposition).
##
## Return Value:
## Reference to a hash. Each key is the attribute name.
## The special key, 'x-main', is the main value if the
## $hasmain flag is set.
##
## Each hash value is a hash reference with three keys:
## 'charset', 'lang', 'value'. 'charset' and 'lang' may be
## undef if character set or language information is not
## specified.
##
## Example Usage:
##
## $content_type_field = 'text/plain; charset=us-ascii';
## $parms = MAILparse_parameter_str($content_type_field, 1);
## $ctype = $parms->{'x-main'};
## $mesg_body_charset = $parms->{'charset'}{'value'};
##
sub MAILparse_parameter_str {
my $str = shift; # Input string
my $hasmain = shift; # Flag if there is a main value to extract
require MHonArc::RFC822;
my $parm = { };
my @toks = MHonArc::RFC822::uncomment($str);
my($tok, $name, $value, $charset, $lang, $part);
$parm->{'x-main'} = shift @toks if $hasmain;
## Loop thru token list
while ($tok = shift @toks) {
next if $tok eq ";";
($name, $value) = split(/=/, $tok, 2);
## Check if charset/lang specified
if ($name =~ s/\*$//) {
if ($value =~ s/^([^']*)'([^']*)'//) {
($charset, $lang) = ($1, $2);
} else {
($charset, $lang) = (undef, undef);
}
}
## Check if parameter is only part
if ($name =~ s/\*(\d+)$//) {
$part = $1 - 1; # we start at 0 internally
} else {
$part = 0;
}
## Set values for parameter
$name = lc $name;
$parm->{$name} = {
'charset' => $charset,
'lang' => $lang,
};
## Check if value is next token
if ($value eq "") {
## If value next token, than it must be quoted
$value = shift @toks;
$value =~ s/^"//; $value =~ s/"$//; $value =~ s/\\//g;
}
$parm->{$name}{'vlist'}[$part] = $value;
}
## Now we loop thru each parameter and define the final values from
## the parts
foreach $name (keys %$parm) {
next if $name eq 'x-main';
$parm->{$name}{'value'} = join("", @{$parm->{$name}{'vlist'}});
}
$parm;
}
##---------------------------------------------------------------------------##
## MAILset_alternative_prefs() is used to set content-type
## preferences for multipart/alternative entities. The list
## specified will supercede the prefered format as denoted by
## the ording of parts in the entity.
##
## A content-type listed earlier in the array will be prefered
## over one later. For example:
##
## MAILset_alternative_prefs('text/plain', 'text/html');
##
## States that if a multipart/alternative entity contains a
## text/plain part and a text/html part, the text/plain part will
## be prefered over the text/html part.
##
sub MAILset_alternative_prefs {
@_MIMEAltPrefs = map { lc } @_;
%_MIMEAltPrefs = ();
my $i = 0;
my $ctype;
foreach $ctype (@_MIMEAltPrefs) {
$_MIMEAltPrefs{$ctype} = $i++;
}
}
##---------------------------------------------------------------------------##
## MAILset_charset_aliases() is used to define name aliases for
## charset names.
##
## Example usage:
## MAILset_charset_aliases( {
## 'iso-8859-1' => [ 'latin1', 'iso_8859_1', '8859-1' ],
## 'iso-8859-15' => [ 'latin9', 'iso_8859_15', '8859-15' ],
## }, $override );
##
sub MAILset_charset_aliases {
my $map = shift;
my $override = shift;
%MIMECharsetAliases = () if $override;
my($charset, $aliases, $alias);
while (($charset, $aliases) = each(%$map)) {
$charset = lc $charset;
foreach $alias (@$aliases) {
$MIMECharsetAliases{lc $alias} = $charset;
}
}
}
##---------------------------------------------------------------------------##
## MAILload_charset_converter() loads the charset converter function
## associated with given charset name.
##
## Example usage:
## ($func, $real_charset) = MAILload_charset_converter($charset);
##
## $func is the reference to the converter function, which may be
## undef. $real_charset is the real charset name that should be
## used when invoking the function.
##
sub MAILload_charset_converter {
my $charset = lc shift;
$charset = $MIMECharsetAliases{$charset} if $MIMECharsetAliases{$charset};
my $func = load_charset($charset);
if (!defined($func) || !defined(&$func)) {
$func = load_charset('default');
}
($func, $charset);
}
###############################################################################
## Private Routines
###############################################################################
##---------------------------------------------------------------------------##
## Default function for unable to process a part of a multipart
## message.
##
sub cantProcessPart {
my($ctype) = $_[0];
warn "Warning: Could not process part with given Content-Type: ",
"$ctype\n";
"<br><tt><<< $ctype: Unrecognized >>></tt><br>\n";
}
##---------------------------------------------------------------------------##
## Default function returning message for content-types excluded.
##
sub excludedPart {
my($ctype) = $_[0];
"<br><tt><<< $ctype: EXCLUDED >>></tt><br>\n";
}
##---------------------------------------------------------------------------##
## Default function for unrecognizeable part in multipart/alternative.
##
sub unrecognizedAltPart {
warn "Warning: No recognizable part in multipart/alternative\n";
"<br><tt><<< multipart/alternative: ".
"No recognizable part >>></tt><br>\n";
}
##---------------------------------------------------------------------------##
## Default function for beggining of embedded message
## (ie message/rfc822 or message/news).
##
sub beginEmbeddedMesg {
qq|<blockquote><small>--- <i>Begin Message</i> ---</small>\n|;
}
##---------------------------------------------------------------------------##
## Default function for end of embedded message
## (ie message/rfc822 or message/news).
##
sub endEmbeddedMesg {
qq|<br><small>--- <i>End Message</i> ---</small></blockquote>\n|;
}
##---------------------------------------------------------------------------##
sub load_charset {
require $MIMECharSetConvertersSrc{$_[0]}
if defined($MIMECharSetConvertersSrc{$_[0]}) &&
$MIMECharSetConvertersSrc{$_[0]};
$MIMECharSetConverters{$_[0]};
}
sub load_decoder {
my $enc = lc shift; $enc =~ s/\s//;
require $MIMEDecodersSrc{$enc}
if defined($MIMEDecodersSrc{$enc}) &&
$MIMEDecodersSrc{$enc};
$MIMEDecoders{$enc};
}
sub load_filter {
require $MIMEFiltersSrc{$_[0]}
if defined($MIMEFiltersSrc{$_[0]}) &&
$MIMEFiltersSrc{$_[0]};
$MIMEFilters{$_[0]};
}
sub get_filter_args {
my $args = '';
my $s;
foreach $s (@_) {
next unless defined $s;
$args = $MIMEFiltersArgs{$s};
last if defined($args) && ($args ne '');
}
$args;
}
sub load_textencoder {
return undef unless $TextEncode;
TRY: {
if (!defined($TextEncoderFunc)) {
last TRY;
}
if (defined(&$TextEncoderFunc)) {
return $TextEncoderFunc;
}
if (!defined($TextEncoderSrc)) {
last TRY;
}
require $TextEncoderSrc;
if (defined(&$TextEncoderFunc)) {
return $TextEncoderFunc;
}
}
warn qq/Warning: Unable to load text encode for "$TextEncode"\n/;
$TextEncode = undef;
$TextEncoderFunc = undef;
$TextEncoderSrc = undef;
}
##---------------------------------------------------------------------------##
## extract_ctype() extracts the content-type specification from
## the beginning of given string.
##
sub extract_ctype {
if (!defined($_[0]) ||
(ref($_[0]) && ($_[0][0] !~ /\S/)) ||
($_[0] !~ /\S/)) {
return 'message/rfc822'
if (defined($_[1]) && ($_[1] eq 'multipart/digest'));
return 'text/plain';
}
if (ref($_[0])) {
$_[0][0] =~ m|^\s*([\w\-\./]+)|;
return lc($1);
}
$_[0] =~ m|^\s*([\w\-\./]+)|;
lc($1);
}
##---------------------------------------------------------------------------##
## apply_base_url(): Convert a relative URL to a full URL with
## specific base;
##
sub apply_base_url {
my $b = shift; # Base URL
my $u = shift; # URL to apply base to
## If no base, nothing to do
return $u if !defined($b) || $b !~ /\S/;
## If absolute URL or scroll link; do nothing
$u =~ s/^\s+//;
if ($u =~ /^$UrlRxStr/o || $u =~ m/^#/) {
return $u;
}
## Check if base URL allows relative resolution
my($host_part, $scheme);
if ($b =~ s{^((https?|ftp|file|nfs|acap|tftp)://[\w\-:\d.\@\%=~&]+)/?}{}) {
$host_part = $1;
$scheme = lc $2;
} else {
warn qq/Warning: Invalid base url, "$b" to apply to "$u"\n/;
return $u;
}
## If "/---", just use hostname:port of base.
if ($u =~ /^\//) {
return $host_part . $u;
}
## Clean up base URL
SCHEME: {
if ($scheme eq 'http' || $scheme eq 'https' || $scheme eq 'acap') {
$b =~ s/\?.*$//;
last SCHEME;
}
if ($scheme eq 'ftp') {
$b =~ s/;type=.$//;
last SCHEME;
}
if ($scheme eq 'tftp') {
$b =~ s/;mode=\w+$//;
last SCHEME;
}
}
$b =~ s/\/$//; # strip any trailing '/' (we add it back later)
## "./---" or "../---": Need to remove and adjust base accordingly.
my $cnt = 0;
while ( $u =~ s|^(\.{1,2})/|| ) { ++$cnt if length($1) == 2; }
if ($b eq '') {
# base is just host
return join('/', $host_part, $u);
}
if ($cnt > 0) {
# trim path
my @a = split(/\//, $b);
if ($cnt <= scalar(@a)) {
splice(@a, -$cnt);
return join('/', $host_part, @a, $u);
}
# invalid relative path, tries to go past root
return join('/', $host_part, $u);
}
return join('/', $host_part, $b, $u);
}
##---------------------------------------------------------------------------##
sub extract_charset {
my $content = shift; # Content-type string of entity
my $subtype = shift; # Text sub-type
my $body = shift; # Reference to entity text
my $charset = $TextDefCharset;
if ($content =~ /\bcharset\s*=\s*([^\s;]+)/i) {
$charset = lc $1;
$charset =~ s/['";\s]//g;
}
# If HTML, check <meta http-equiv=content-type> tag since it
# can be different than what is specified in the entity header.
if (($subtype eq 'html' || $subtype eq 'x-html') &&
($$body =~ m/(<meta\s+http-equiv\s*=\s*['"]?
content-type\b[^>]*>)/xi)) {
my $meta = $1;
if ($meta =~ m/\bcharset\s*=\s*['"]?([\w\.\-]+)/i) {
$charset = lc $1;
}
}
$charset = $MIMECharsetAliases{$charset}
if $MIMECharsetAliases{$charset};
# If us-ascii, but 8-bit chars in body, we change to iso-8859-1
if ($charset eq 'us-ascii') {
$charset = 'iso-8859-1' if $$body =~ /[\x80-\xFF]/;
}
$charset;
}
##---------------------------------------------------------------------------##
## gen_full_part_number creates a full part number of an entity
## from the given entity header.
##
sub gen_full_part_number {
my $fields = shift;
my @number = ( );
while (defined($fields->{'x-mha-parent-header'})) {
unshift(@number, ($fields->{'x-mha-part-number'} || '1'));
$fields = $fields->{'x-mha-parent-header'};
}
if (!scalar(@number)) {
return $fields->{'x-mha-part-number'} || '1';
}
join('.', @number);
}
##---------------------------------------------------------------------------##
sub dump_header {
my $fh = shift;
my $fields = shift;
my($key, $a, $value);
foreach $key (sort keys %$fields) {
$a = $fields->{$key};
if (ref($a)) {
foreach $value (@$a) {
print $fh "$key: $value\n";
}
} else {
print $fh "$key: $a\n";
}
}
}
##---------------------------------------------------------------------------##
1; # for require
|