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 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712
|
;;; vm-reply.el --- Mailing, forwarding, and replying commands
;;
;; Copyright (C) 1989-2001 Kyle E. Jones
;; Copyright (C) 2003-2006 Robert Widhopf-Fenk
;;
;; 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.,
;; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
;;; Code:
(defun vm-add-reply-subject-prefix (message &optional start)
(when (not start)
(goto-char (point-min))
(re-search-forward (regexp-quote mail-header-separator) (point-max))
(forward-char 1)
(setq start (point)))
(goto-char start)
(if (and message vm-included-text-attribution-format)
(let ((vm-summary-uninteresting-senders nil))
(insert (vm-summary-sprintf
vm-included-text-attribution-format
message))))
(while (re-search-forward "^" (point-max) t)
(insert vm-included-text-prefix)))
;;;###autoload
(defun vm-do-reply (to-all include-text count)
(let ((mlist (vm-select-marked-or-prefixed-messages count))
(dir default-directory)
(message-pointer vm-message-pointer)
(case-fold-search t)
to cc subject in-reply-to references
mp tmp tmp2 newsgroups)
(setq mp mlist)
(while mp
(cond ((add-to-list 'to
(let ((reply-to
(vm-get-header-contents (car mp) "Reply-To:"
", ")))
(if (vm-ignored-reply-to reply-to)
nil
reply-to ))))
((add-to-list 'to (vm-get-header-contents (car mp) "From:"
", ")))
;; bad, but better than nothing for some
((add-to-list 'to (vm-grok-From_-author (car mp))))
(t (error "No From: or Reply-To: header in message")))
(let ((this-subject (vm-get-header-contents (car mp) "Subject:"))
(this-reply-to (and vm-in-reply-to-format
(let ((vm-summary-uninteresting-senders nil))
(vm-summary-sprintf vm-in-reply-to-format
(car mp))))))
(if (and this-subject vm-reply-subject-prefix
(not (string-match vm-reply-subject-prefix this-subject)))
(setq this-subject (concat vm-reply-subject-prefix
this-subject)))
(unless subject
(setq subject (concat this-subject
(if (cdr mlist)
(format " [and %d more messages]"
(length (cdr mlist)))))))
(setq in-reply-to (if in-reply-to
(concat in-reply-to ",\n\t" this-reply-to)
this-reply-to)))
(cond ((setq tmp (vm-get-header-contents (car mp) "Reply-To:" ", "))
(if (not (vm-ignored-reply-to tmp))
(add-to-list 'to tmp)))
((setq tmp (vm-get-header-contents (car mp) "From:" ", "))
(add-to-list 'to tmp))
;; bad, but better than nothing for some
((setq tmp (vm-grok-From_-author (car mp)))
(add-to-list 'to tmp))
(t (error "No From: or Reply-To: header in message")))
(if to-all
(progn
(setq tmp (vm-get-header-contents (car mp) "To:" ", "))
(setq tmp2 (vm-get-header-contents (car mp) "Cc:" ", "))
(if tmp
(if cc
(setq cc (concat cc "," tmp))
(setq cc tmp)))
(if tmp2
(if cc
(setq cc (concat cc "," tmp2))
(setq cc tmp2)))))
(setq references
(cons (or (vm-get-header-contents (car mp) "References:" " ")
(vm-get-header-contents (car mp) "In-reply-to:" " "))
(cons (vm-get-header-contents (car mp) "Message-ID:" " ")
references)))
(setq newsgroups
(cons (or (and to-all
(vm-get-header-contents (car mp)
"Followup-To:" ","))
(vm-get-header-contents (car mp) "Newsgroups:" ","))
newsgroups))
(setq mp (cdr mp)))
(if (null to) nil
(setq tmp (car to))
(setq to (cdr to))
(while to
(setq tmp (concat tmp ", " (car to)))
(setq to (cdr to)))
(setq to tmp))
(if vm-strip-reply-headers
(let ((mail-use-rfc822 t))
(and to (setq to (mail-strip-quoted-names to)))
(and cc (setq cc (mail-strip-quoted-names cc)))))
(setq to (vm-parse-addresses to)
cc (vm-parse-addresses cc))
(if vm-reply-ignored-addresses
(setq to (vm-strip-ignored-addresses to)
cc (vm-strip-ignored-addresses cc)))
(setq to (vm-delete-duplicates to nil t))
(setq cc (vm-delete-duplicates
(append (vm-delete-duplicates cc nil t)
to (copy-sequence to))
t t))
(and to (setq to (mapconcat 'identity to ",\n ")))
(and cc (setq cc (mapconcat 'identity cc ",\n ")))
(and (null to) (setq to cc cc nil))
(setq references (delq nil references)
references (mapconcat 'identity references " ")
references (vm-parse references "[^<]*\\(<[^>]+>\\)")
references (vm-delete-duplicates references)
references (if references (mapconcat 'identity references "\n\t")))
(setq newsgroups (delq nil newsgroups)
newsgroups (mapconcat 'identity newsgroups ",")
newsgroups (vm-parse newsgroups "[ \t\f\r\n,]*\\([^ \t\f\r\n,]+\\)")
newsgroups (vm-delete-duplicates newsgroups)
newsgroups (if newsgroups (mapconcat 'identity newsgroups ",")))
(vm-mail-internal
(format "reply to %s%s" (vm-su-full-name (car mlist))
(if (cdr mlist) ", ..." ""))
to subject in-reply-to cc references newsgroups)
(make-local-variable 'vm-reply-list)
(setq vm-system-state 'replying
vm-reply-list mlist
default-directory dir)
(if include-text
(save-excursion
(goto-char (point-min))
(let ((case-fold-search nil))
(re-search-forward
(concat "^" (regexp-quote mail-header-separator) "$") nil 0))
(forward-char 1)
(while mlist
(save-restriction
(narrow-to-region (point) (point))
(vm-yank-message (car mlist))
(goto-char (point-max)))
(setq mlist (cdr mlist)))))
(run-hooks 'vm-reply-hook)
(run-hooks 'vm-mail-mode-hook)))
(defun vm-strip-ignored-addresses (addresses)
(setq addresses (copy-sequence addresses))
(let (re-list list addr-list)
(setq re-list vm-reply-ignored-addresses)
(while re-list
(setq addr-list addresses)
(while addr-list
(if (string-match (car re-list) (car addr-list))
(setq addresses (delq (car addr-list) addresses)))
(setq addr-list (cdr addr-list)))
(setq re-list (cdr re-list))))
addresses )
(defun vm-ignored-reply-to (reply-to)
(if (and reply-to (not (string= reply-to "")))
(let (re-list result)
(setq re-list vm-reply-ignored-reply-tos)
(while re-list
(if (string-match (car re-list) reply-to)
(setq result t re-list nil)
(setq re-list (cdr re-list))))
result)))
;;;###autoload
(defun vm-mail-yank-default (&optional message)
(save-excursion
(vm-reorder-message-headers nil vm-included-text-headers
vm-included-text-discard-header-regexp)
;; if all the headers are gone, delete the trailing blank line, too.
(if (eq (following-char) ?\n)
(delete-char 1))
(if (and message vm-included-text-attribution-format)
(let ((vm-summary-uninteresting-senders nil))
(insert (vm-summary-sprintf vm-included-text-attribution-format
message))))
; turn off zmacs-regions for Lucid Emacs 19
; and get around transient-mark-mode in FSF Emacs 19
; all this so that (mark) does what it did in v18, sheesh.
(let* ((zmacs-regions nil)
(mark-even-if-inactive t)
(end (mark-marker)))
(while (< (point) end)
(insert vm-included-text-prefix)
(forward-line 1)))))
;;;###autoload
(defun vm-yank-message-other-folder (folder)
"Like vm-yank-message except the message is yanked from a folder other
than the one that spawned the current Mail mode buffer. The name of the
folder is read from the minibuffer.
Don't call this function from a program."
(interactive
(list
(let ((dir (if vm-folder-directory
(expand-file-name vm-folder-directory)
default-directory))
(last-command last-command)
(this-command this-command))
(read-file-name "Yank from folder: " dir nil t))))
(let ((b (current-buffer)) newbuf sumbuf default result prompt mp)
(set-buffer (or (vm-get-file-buffer folder) (find-file-noselect folder)))
(setq newbuf (current-buffer))
(if (not (eq major-mode 'vm-mode))
(vm-mode))
(if vm-presentation-buffer-handle
(vm-bury-buffer vm-presentation-buffer-handle))
(if (null vm-message-pointer)
(error "No messages in folder %s" folder))
(setq default (vm-number-of (car vm-message-pointer)))
(save-excursion
(save-window-excursion
(save-window-excursion
(vm-summarize))
(vm-display vm-summary-buffer t '(vm-yank-message-other-folder)
'(vm-yank-message-other-folder composing-message))
(setq sumbuf (current-buffer))
(setq prompt (format "Yank message number: (default %s) " default)
result 0)
(while (zerop result)
(setq result (read-string prompt))
(and (string= result "") default (setq result default))
(setq result (string-to-number result)))
(if (null (setq mp (nthcdr (1- result) vm-message-list)))
(error "No such message."))))
(set-buffer b)
(unwind-protect
(let ((vm-mail-buffer newbuf))
(vm-yank-message (car mp)))
(vm-bury-buffer newbuf)
(vm-bury-buffer sumbuf))))
;;;###autoload
(defun vm-yank-message (message)
"Yank message number N into the current buffer at point.
When called interactively N is always read from the minibuffer. When
called non-interactively the first argument is expected to be a
message struct.
This command is meant to be used in VM created Mail mode buffers; the
yanked message comes from the mail buffer containing the message you
are replying to, forwarding, or invoked VM's mail command from.
All message headers are yanked along with the text. Point is
left before the inserted text, the mark after. Any hook
functions bound to `mail-citation-hook' are run, after inserting
the text and setting point and mark. For backward compatibility,
if mail-citation-hook is set to nil, `mail-yank-hooks' is run
instead.
If mail-citation-hook and mail-yank-hooks are both nil, this
default action is taken: the yanked headers are trimmed as
specified by `vm-included-text-headers' and
`vm-included-text-discard-header-regexp', and the value of
`vm-included-text-prefix' is prepended to every yanked line."
(interactive
(list
;; What we really want for the first argument is a message struct,
;; but if called interactively, we let the user type in a message
;; number instead.
(let (mp default
(result 0)
prompt
(last-command last-command)
(this-command this-command))
(save-excursion
(vm-select-folder-buffer)
(setq default (and vm-message-pointer
(vm-number-of (car vm-message-pointer)))
prompt (if default
(format "Yank message number: (default %s) "
default)
"Yank message number: "))
(while (zerop result)
(setq result (read-string prompt))
(and (string= result "") default (setq result default))
(setq result (string-to-number result)))
(if (null (setq mp (nthcdr (1- result) vm-message-list)))
(error "No such message.")))
(car mp))))
(if (not (bufferp vm-mail-buffer))
(error "This is not a VM Mail mode buffer."))
(if (null (buffer-name vm-mail-buffer))
(error "The folder buffer containing message %d has been killed."
(vm-number-of message)))
(vm-display nil nil '(vm-yank-message) '(vm-yank-message composing-message))
(setq message (vm-real-message-of message))
(let ((b (current-buffer)) (start (point)) end insert-start)
(save-restriction
(widen)
(save-excursion
(if vm-reply-include-presentation
(let ((text
(save-excursion
(vm-select-folder-buffer)
;; ensure the current message is presented
(vm-show-current-message)
(vm-select-folder-buffer)
(if vm-presentation-buffer
(set-buffer vm-presentation-buffer))
(vm-buffer-substring-no-properties (point-min) (point-max)))))
(insert text)
(setq end (point-marker)))
(if (vectorp (vm-mm-layout message))
(let* ((o (vm-mm-layout message))
layout new-layout
(type (car (vm-mm-layout-type o)))
(alternatives 0)
(parts (list o)))
(vm-insert-region-from-buffer (vm-buffer-of message)
(vm-headers-of message)
(vm-text-of message))
(while parts
(setq layout (car parts))
(cond ((vm-mime-text-type-layout-p layout)
(if (cond ((vm-mime-types-match
"text/enriched"
(car (vm-mm-layout-type layout)))
(vm-mime-display-internal-text/enriched
layout))
((vm-mime-types-match
"message/rfc822"
(car (vm-mm-layout-type layout)))
(vm-mime-display-internal-message/rfc822
layout))
;; no text/html for now
;; ((vm-mime-types-match
;; "text/html"
;; (car (vm-mm-layout-type layout)))
;; (vm-mime-display-internal-text/html
;; layout))
((member (downcase (car (vm-mm-layout-type
layout)))
vm-included-mime-types-list)
(vm-mime-display-internal-text/plain
layout t))
;; convert the layout if possible
((and (not (vm-mm-layout-is-converted layout))
(vm-mime-can-convert (car (vm-mm-layout-type
layout)))
(setq new-layout
(vm-mime-convert-undisplayable-layout
layout)))
(vm-decode-mime-layout new-layout)))
;; we have found a part to insert, thus skip the
;; remaining alternatives
(while (> alternatives 1)
(setq parts (cdr parts)
alternatives (1- alternatives)))
(if (not (member (downcase (car (vm-mm-layout-type
layout)))
vm-included-mime-types-list))
nil
;; charset problems probably
;; just dump the raw bits
(setq insert-start (point))
(vm-mime-insert-mime-body layout)
(vm-mime-transfer-decode-region layout
insert-start
(point))))
(setq alternatives (1- alternatives))
(setq parts (cdr parts)))
;; burst composite types
((vm-mime-composite-type-p
(car (vm-mm-layout-type layout)))
(setq alternatives (length (vm-mm-layout-parts (car parts))))
(setq parts (nconc (copy-sequence
(vm-mm-layout-parts
(car parts)))
(cdr parts))))
;; skip non-text parts
(t
(setq alternatives (1- alternatives))
(setq parts (cdr parts)))))
(setq end (point-marker)))
(set-buffer (vm-buffer-of message))
(save-restriction
(widen)
;; decode MIME encoded words so supercite and other
;; mail-citation-hook denizens won't have to eat 'em.
(append-to-buffer b (vm-headers-of message)
(vm-text-end-of message))
(set-buffer b)
(setq end (point-marker))
(if vm-display-using-mime
(progn
(narrow-to-region start end)
(vm-decode-mime-encoded-words)))))))
;; get rid of read-only text properties on the text, as
;; they will only cause trouble.
(let ((inhibit-read-only t))
(remove-text-properties (point-min) (point-max)
'(read-only nil invisible nil)
(current-buffer)))
;; decode MIME encoded words so supercite and other
;; mail-citation-hook denizens won't have to eat 'em.
(if vm-display-using-mime
(save-restriction
(narrow-to-region start end)
(vm-decode-mime-encoded-words))))
(push-mark end)
(cond (mail-citation-hook (run-hooks 'mail-citation-hook))
(mail-yank-hooks (run-hooks 'mail-yank-hooks))
(t (vm-mail-yank-default message)))))
;;;###autoload
(defun vm-mail-send-and-exit (&rest ignored)
"Send message and maybe delete the composition buffer.
The value of `vm-keep-sent-mesages' determines whether the composition buffer
is deleted. If the composition is a reply to a message in a currently visited
folder, that message is marked as having been replied to."
(interactive "P")
(vm-check-for-killed-folder)
(if (and (boundp 'mail-alias-file)
mail-alias-file
(not (eq (user-uid) 0)))
(error "Must be superuser to use mail-alias-file. Please set mail-alias-file to nil."))
(let ((b (current-buffer)))
(vm-mail-send)
(cond ((null (buffer-name b)) ;; dead buffer
;; This improves window configuration behavior in
;; XEmacs. It avoids taking the folder buffer from
;; one frame and attaching it to the selected frame.
(set-buffer (window-buffer (selected-window)))
(vm-display nil nil '(vm-mail-send-and-exit)
'(vm-mail-send-and-exit
reading-message
startup)))
(t
(vm-display b nil '(vm-mail-send-and-exit)
'(vm-mail-send-and-exit reading-message startup))
(vm-bury-buffer b)))))
(defun vm-keep-mail-buffer (buffer)
(vm-keep-some-buffers buffer 'vm-kept-mail-buffers vm-keep-sent-messages))
(defun vm-help-tale ()
(save-excursion
(goto-char (point-min))
(while (vm-match-header)
(if (not (vm-match-header "To:\\|Resent-To:\\|Cc:\\|Resent-Cc:"))
(goto-char (vm-matched-header-end))
(goto-char (vm-matched-header-contents-start))
(if (re-search-forward "[^, \t][ \t]*\n[ \t\n]+[^ \t\n]"
(vm-matched-header-contents-end)
t)
(error "tale is an idiot, and so are you. :-)"))
(goto-char (vm-matched-header-end))))))
(defun vm-mail-mode-insert-message-id-maybe ()
(if (not vm-mail-header-insert-message-id)
nil
(save-restriction
(save-excursion
(let ((resent nil))
(if (or (vm-mail-mode-get-header-contents "Resent-To:")
(vm-mail-mode-get-header-contents "Resent-Cc:")
(vm-mail-mode-get-header-contents "Resent-Bcc:"))
(progn
(vm-mail-mode-remove-header "Resent-Message-ID:")
(setq resent t))
(vm-mail-mode-remove-header "Message-ID:"))
(widen)
(goto-char (point-min))
(insert (format "%sMessage-ID: %s\n"
(if resent "Resent-" "")
(vm-make-message-id))))))))
(defun vm-mail-mode-insert-date-maybe ()
(if (not vm-mail-header-insert-date)
nil
(save-restriction
(save-excursion
(let* ((timezone (car (current-time-zone)))
(hour (/ timezone 3600))
(min (/ (- timezone (* hour 3600)) 60))
(time (current-time))
(resent nil))
(if (or (vm-mail-mode-get-header-contents "Resent-To:")
(vm-mail-mode-get-header-contents "Resent-Cc:")
(vm-mail-mode-get-header-contents "Resent-Bcc:"))
(progn
(vm-mail-mode-remove-header "Resent-Date:")
(setq resent t))
(vm-mail-mode-remove-header "Date:"))
(widen)
(goto-char (point-min))
(insert (format "%sDate: " (if resent "Resent-" ""))
(capitalize
(car (nth (string-to-number (format-time-string "%w" time))
vm-weekday-alist)))
", "
;; %e generated " 2". Go from string to int
;; to string to get rid of the blank.
(int-to-string
(string-to-number
(format-time-string "%e" time)))
" "
(capitalize
(car (nth
(1- (string-to-number (format-time-string "%m" time)))
vm-month-alist)))
(format-time-string " %Y %H:%M:%S" time)
(format " %s%02d%02d"
(if (< timezone 0) "-" "+")
(abs hour)
(abs min))
;; localization in Europe and elsewhere can cause %Z to return
;; 8-bit chars, which are forbidden in headers.
;; (format-time-string " (%Z)" time)
"\n"))))))
(defun vm-mail-mode-remove-message-id-maybe ()
(if vm-mail-header-insert-message-id
(let ((resent nil))
(if (or (vm-mail-mode-get-header-contents "Resent-To:")
(vm-mail-mode-get-header-contents "Resent-Cc:")
(vm-mail-mode-get-header-contents "Resent-Bcc:"))
(progn
(vm-mail-mode-remove-header "Resent-Message-ID:")
(setq resent t))
(vm-mail-mode-remove-header "Message-ID:")))))
(defun vm-mail-mode-remove-date-maybe ()
(if vm-mail-header-insert-date
(let ((resent nil))
(if (or (vm-mail-mode-get-header-contents "Resent-To:")
(vm-mail-mode-get-header-contents "Resent-Cc:")
(vm-mail-mode-get-header-contents "Resent-Bcc:"))
(progn
(vm-mail-mode-remove-header "Resent-Date:")
(setq resent t))
(vm-mail-mode-remove-header "Date:")))))
(defvar vm-dont-ask-coding-system-question nil)
(cond ((and vm-fsfemacs-mule-p
(fboundp 'select-message-coding-system)
(not (fboundp 'vm-old-select-message-coding-system)))
(fset 'vm-old-select-message-coding-system
(symbol-function 'select-message-coding-system))
(defun select-message-coding-system (&rest ignored)
(if vm-dont-ask-coding-system-question
nil
(apply 'vm-old-select-message-coding-system ignored)))))
(defvar select-safe-coding-system-function)
(defvar coding-system-for-write)
;;;###autoload
(defun vm-mail-send ()
"Just like mail-send except that VM flags the appropriate message(s)
as replied to, forwarded, etc, if appropriate."
(interactive)
(if vm-tale-is-an-idiot
(vm-help-tale))
;; protect value of this-command from minibuffer read
(let ((this-command this-command))
(if (and vm-confirm-mail-send
(not (y-or-n-p "Send the message? ")))
(error "Message not sent.")))
(save-excursion (run-hooks 'vm-mail-send-hook))
(vm-mail-mode-insert-date-maybe)
(vm-mail-mode-insert-message-id-maybe)
;; send mail using MIME if user requests it and if the buffer
;; has not already been MIME encoded.
(if (and vm-send-using-mime
(null (vm-mail-mode-get-header-contents "MIME-Version:")))
(vm-mime-encode-composition))
;; this to prevent Emacs 19 from asking whether a message that
;; has already been sent should be sent again. VM renames mail
;; buffers after the message has been sent, so the user should
;; already know that the message has been sent.
(set-buffer-modified-p t)
(let ((composition-buffer (current-buffer))
;; preserve these in case the composition buffer gets
;; killed.
(vm-reply-list vm-reply-list)
(vm-forward-list vm-forward-list)
(vm-redistribute-list vm-redistribute-list))
;; fragment message using message/partial if it is too big.
(if (and vm-send-using-mime
(integerp vm-mime-max-message-size)
(> (buffer-size) vm-mime-max-message-size))
(let (list)
(setq list (vm-mime-fragment-composition vm-mime-max-message-size))
(while list
(save-excursion
(set-buffer (car list))
(vm-mail-send)
(kill-buffer (car list)))
(setq list (cdr list)))
;; what mail-send would have done
(set-buffer-modified-p nil))
;; don't want a buffer change to occur here
;; save-excursion to be sure.
;;
;; also protect value of this-command from minibuffer reads
(let ((this-command this-command)
;; set up coding-system-for-write so that FCC uses
;; the correct coding system to save the message into
;; a folder.
(coding-system-for-write
(if (stringp mail-archive-file-name)
(vm-get-file-line-ending-coding-system
mail-archive-file-name)
(and (boundp 'coding-system-for-write)
coding-system-for-write)))
;; For Emacs 21.
(mail-send-nonascii t)
(sendmail-coding-system (vm-binary-coding-system))
(vm-dont-ask-coding-system-question t)
(select-safe-coding-system-function nil))
(save-excursion
(mail-send))))
;; be careful, something could have killed the composition
;; buffer inside mail-send.
(if (eq (current-buffer) composition-buffer)
(progn
(cond ((eq vm-system-state 'replying)
(vm-mail-mark-replied))
((eq vm-system-state 'forwarding)
(vm-mail-mark-forwarded))
((eq vm-system-state 'redistributing)
(vm-mail-mark-redistributed)))
(vm-rename-current-mail-buffer)
(vm-keep-mail-buffer (current-buffer))))
(vm-display nil nil '(vm-mail-send) '(vm-mail-send))))
;;;###autoload
(defun vm-mail-mode-get-header-contents (header-name-regexp)
(let (regexp)
(setq regexp (concat "^\\(" header-name-regexp "\\)\\|\\(^"
(regexp-quote mail-header-separator) "$\\)"))
(save-excursion
(save-restriction
(widen)
(goto-char (point-min))
(let ((case-fold-search t))
(if (and (re-search-forward regexp nil t)
(match-beginning 1)
(progn (goto-char (match-beginning 0))
(vm-match-header)))
(vm-matched-header-contents)
nil ))))))
;;;###autoload
(defun vm-mail-mode-remove-header (header-name-regexp)
(let (regexp)
(setq regexp (concat "^\\(" header-name-regexp "\\)\\|\\(^"
(regexp-quote mail-header-separator) "$\\)"))
(save-excursion
(save-restriction
(widen)
(goto-char (point-min))
(let ((case-fold-search t))
(if (and (re-search-forward regexp nil t)
(match-beginning 1)
(progn (goto-char (match-beginning 0))
(vm-match-header)))
(delete-region (vm-matched-header-start) (vm-matched-header-end))
nil ))))))
(defun vm-rename-current-mail-buffer ()
(if vm-rename-current-buffer-function
(funcall vm-rename-current-buffer-function)
(let ((case-fold-search nil))
(if (not (string-match "^sent " (buffer-name)))
(let (prefix name n)
(if (not (string-match "^mail to \\?" (buffer-name)))
(setq prefix (format "sent %s" (buffer-name)))
(let (recipients)
(cond ((not (zerop (length (setq recipients
(mail-fetch-field "To"))))))
((not (zerop (length (setq recipients
(mail-fetch-field "Cc"))))))
((not (zerop (length (setq recipients
(mail-fetch-field "Bcc"))))))
; can't happen?!?
(t (setq recipients "the horse with no name")))
(setq prefix (format "sent mail to %s" recipients))))
(if (> (length prefix) 44)
(setq prefix (concat (substring prefix 0 40) " ...")))
(setq name prefix n 2)
(while (get-buffer name)
(setq name (format "%s<%d>" prefix n))
(vm-increment n))
(rename-buffer name))))))
(defun vm-mail-mark-replied ()
(save-excursion
(let ((mp vm-reply-list))
(while mp
(if (null (buffer-name (vm-buffer-of (car mp))))
()
(set-buffer (vm-buffer-of (car mp)))
(cond ((and (memq (car mp) vm-message-list)
(null (vm-replied-flag (car mp))))
(vm-set-replied-flag (car mp) t))))
(setq mp (cdr mp)))
(vm-update-summary-and-mode-line))))
(defun vm-mail-mark-forwarded ()
(save-excursion
(let ((mp vm-forward-list))
(while mp
(if (null (buffer-name (vm-buffer-of (car mp))))
()
(set-buffer (vm-buffer-of (car mp)))
(cond ((and (memq (car mp) vm-message-list)
(null (vm-forwarded-flag (car mp))))
(vm-set-forwarded-flag (car mp) t))))
(setq mp (cdr mp)))
(vm-update-summary-and-mode-line))))
(defun vm-mail-mark-redistributed ()
(save-excursion
(let ((mp vm-redistribute-list))
(while mp
(if (null (buffer-name (vm-buffer-of (car mp))))
()
(set-buffer (vm-buffer-of (car mp)))
(cond ((and (memq (car mp) vm-message-list)
(null (vm-redistributed-flag (car mp))))
(vm-set-redistributed-flag (car mp) t))))
(setq mp (cdr mp)))
(vm-update-summary-and-mode-line))))
;;;###autoload
(defun vm-reply (count)
"Reply to the sender of the current message.
Numeric prefix argument N means to reply to the current message plus the
next N-1 messages. A negative N means reply to the current message and
the previous N-1 messages.
If invoked on marked messages (via vm-next-command-uses-marks),
all marked messages will be replied to.
You will be placed into a standard Emacs Mail mode buffer to compose and
send your message. See the documentation for the function `mail' for
more info.
Note that the normal binding of C-c C-y in the reply buffer is
automatically changed to vm-yank-message during a reply. This
allows you to yank any message from the current folder into a
reply.
Normal VM commands may be accessed in the reply buffer by prefixing them
with C-c C-v."
(interactive "p")
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(vm-do-reply nil nil count))
;;;###autoload
(defun vm-reply-include-text (count)
"Reply to the sender (only) of the current message and include text
from the message. See the documentation for function vm-reply for details."
(interactive "p")
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(vm-do-reply nil t count))
;;;###autoload
(defun vm-followup (count)
"Reply to all recipients of the current message.
See the documentation for the function vm-reply for details."
(interactive "p")
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(vm-do-reply t nil count))
;;;###autoload
(defun vm-followup-include-text (count)
"Reply to all recipients of the current message and include text from
the message. See the documentation for the function vm-reply for details."
(interactive "p")
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(vm-do-reply t t count))
;;;###autoload
(defun vm-forward-message-all-headers ()
"Like vm-forward-message but always forwards all the headers."
(interactive)
(let ((vm-forwarded-headers nil)
(vm-unforwarded-header-regexp "only-drop-this-header")
;; set these because vm-forward-message calls vm-send-digest
;; if there is more than one message to be forwarded.
(vm-rfc934-digest-headers nil)
(vm-rfc934-digest-discard-header-regexp "only-drop-this-header")
(vm-rfc1153-digest-headers nil)
(vm-rfc1153-digest-discard-header-regexp "only-drop-this-header")
(vm-mime-digest-headers nil)
(vm-mime-digest-discard-header-regexp "only-drop-this-header"))
(vm-forward-message)))
;;;###autoload
(defun vm-forward-message ()
"Forward the current message to one or more recipients.
You will be placed in a Mail mode buffer as you would with a
reply, but you must fill in the To: header and perhaps the
Subject: header manually."
(interactive)
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(if (and (eq last-command 'vm-next-command-uses-marks)
(cdr (vm-select-marked-or-prefixed-messages 0)))
(let ((vm-digest-send-type vm-forwarding-digest-type))
(setq this-command 'vm-next-command-uses-marks)
(command-execute 'vm-send-digest))
(let ((dir default-directory)
(miming (and vm-send-using-mime
(equal vm-forwarding-digest-type "mime")))
mail-buffer
header-end
(mp (vm-select-marked-or-prefixed-messages 1)))
(save-restriction
(widen)
(vm-mail-internal
(format "forward of %s's note re: %s"
(vm-su-full-name (car vm-message-pointer))
(vm-su-subject (car vm-message-pointer)))
nil
(and vm-forwarding-subject-format
(let ((vm-summary-uninteresting-senders nil))
(vm-summary-sprintf vm-forwarding-subject-format
(car mp)))))
(make-local-variable 'vm-forward-list)
(setq vm-system-state 'forwarding
vm-forward-list (list (car mp))
default-directory dir)
(if miming
(progn
(setq mail-buffer (current-buffer))
(set-buffer (vm-make-work-buffer "*vm-forward-buffer*"))
(setq header-end (point))
(insert "\n"))
(goto-char (point-min))
(re-search-forward (concat "^" (regexp-quote mail-header-separator)
"\n"))
(goto-char (match-end 0))
(setq header-end (match-beginning 0)))
(cond ((equal vm-forwarding-digest-type "mime")
(vm-mime-encapsulate-messages (list (car mp))
vm-forwarded-headers
vm-unforwarded-header-regexp
nil)
(goto-char header-end)
(insert "MIME-Version: 1.0\n")
(insert "Content-Type: message/rfc822\n")
(insert "Content-Transfer-Encoding: "
(vm-determine-proper-content-transfer-encoding
(point)
(point-max))
"\n")
(insert "Content-Description: forwarded message\n")
;; eight bit chars will get \201 prepended if we
;; don't do this.
(if vm-fsfemacs-mule-p
(set-buffer-multibyte t)))
((equal vm-forwarding-digest-type "rfc934")
(vm-rfc934-encapsulate-messages
vm-forward-list vm-forwarded-headers
vm-unforwarded-header-regexp))
((equal vm-forwarding-digest-type "rfc1153")
(vm-rfc1153-encapsulate-messages
vm-forward-list vm-forwarded-headers
vm-unforwarded-header-regexp))
((equal vm-forwarding-digest-type nil)
(vm-no-frills-encapsulate-message
(car vm-forward-list) vm-forwarded-headers
vm-unforwarded-header-regexp)))
(if miming
(let ((b (current-buffer)))
(set-buffer mail-buffer)
(mail-text)
(vm-mime-attach-object b "message/rfc822" nil
"forwarded message" t)
(add-hook 'kill-buffer-hook
(list 'lambda ()
(list 'if (list 'eq mail-buffer '(current-buffer))
(list 'kill-buffer b))))))
(mail-position-on-field "To"))
(run-hooks 'vm-forward-message-hook)
(run-hooks 'vm-mail-mode-hook))))
;;;###autoload
(defun vm-resend-bounced-message ()
"Extract the original text from a bounced message and resend it.
You will be placed in a Mail mode buffer with the extracted message and
you can change the recipient address before resending the message."
(interactive)
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(let ((b (current-buffer)) start
(dir default-directory)
(layout (vm-mm-layout (car vm-message-pointer)))
(lim (vm-text-end-of (car vm-message-pointer))))
(save-restriction
(widen)
(if (or (not (vectorp layout))
(not (setq layout (vm-mime-layout-contains-type
layout "message/rfc822"))))
(save-excursion
(goto-char (vm-text-of (car vm-message-pointer)))
(let ((case-fold-search t))
;; What a wonderful world it would be if mailers
;; used a single message encapsulation standard
;; instead of all the weird variants. It is
;; useless to try to cover them all. This simple
;; rule should cover the sanest of the formats
(if (not (re-search-forward "^Received:" lim t))
(error "This doesn't look like a bounced message."))
(beginning-of-line)
(setq start (point)))))
;; briefly nullify vm-mail-header-from to keep vm-mail-internal
;; from inserting another From header.
(let ((vm-mail-header-from nil))
(vm-mail-internal
(format "retry of bounce from %s"
(vm-su-from (car vm-message-pointer)))))
(goto-char (point-min))
(if (vectorp layout)
(progn
(setq start (point))
(vm-mime-insert-mime-body layout)
(vm-mime-transfer-decode-region layout start (point)))
(insert-buffer-substring b start lim))
(delete-region (point) (point-max))
(goto-char (point-min))
;; delete all but pertinent headers
(vm-reorder-message-headers nil nil "\\(X-VM-\\|Status:\\|Sender:\\)")
(vm-reorder-message-headers nil vm-resend-bounced-headers
vm-resend-bounced-discard-header-regexp)
(if (search-forward "\n\n" nil t)
(replace-match "")
(goto-char (point-max)))
(insert ?\n mail-header-separator ?\n)
(goto-char (point-min))
(if vm-mail-header-from
(insert "Resent-From: " vm-mail-header-from ?\n))
(if (vm-mail-mode-get-header-contents "Resent-To:")
(mail-position-on-field "Resent-To")
(insert "Resent-To: \n")
(forward-char -1))
(setq default-directory dir)))
(run-hooks 'vm-resend-bounced-message-hook)
(run-hooks 'vm-mail-mode-hook))
;;;###autoload
(defun vm-resend-message ()
"Resend the current message to someone else.
The current message will be copied to a Mail mode buffer and you
can edit the message and send it as usual.
NOTE: since you are doing a resend, a Resent-To header is provided
for you to fill in the new recipient list. If you don't fill in
this header, what happens when you send the message is undefined.
You may also create a Resent-Cc header."
(interactive)
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(save-restriction
(widen)
(let ((b (current-buffer))
(dir default-directory)
(vmp vm-message-pointer)
(start (vm-headers-of (car vm-message-pointer)))
(lim (vm-text-end-of (car vm-message-pointer))))
;; briefly nullify vm-mail-header-from to keep vm-mail-internal
;; from inserting another From header.
(let ((vm-mail-header-from nil))
(vm-mail-internal
(format "resend of %s's note re: %s"
(vm-su-full-name (car vm-message-pointer))
(vm-su-subject (car vm-message-pointer)))))
(goto-char (point-min))
(insert-buffer-substring b start lim)
(delete-region (point) (point-max))
(goto-char (point-min))
(if vm-mail-header-from
(insert "Resent-From: " vm-mail-header-from ?\n))
(insert "Resent-To: \n")
(if mail-self-blind
(insert "Bcc: "
(cond ((and vm-xemacs-p (fboundp 'user-mail-address))
(user-mail-address))
((and (boundp 'user-mail-address)
(stringp user-mail-address))
user-mail-address)
(t (user-login-name)))
?\n))
(if mail-archive-file-name
(insert "FCC: " mail-archive-file-name ?\n))
;; delete all but pertinent headers
(vm-reorder-message-headers nil nil "\\(X-VM-\\|Status:\\|Sender:\\)")
(vm-reorder-message-headers nil vm-resend-headers
vm-resend-discard-header-regexp)
(if (search-forward "\n\n" nil t)
(replace-match ""))
(insert ?\n mail-header-separator ?\n)
(goto-char (point-min))
(mail-position-on-field "Resent-To")
(make-local-variable 'vm-redistribute-list)
(setq vm-system-state 'redistributing
vm-redistribute-list (list (car vmp))
default-directory dir)
(run-hooks 'vm-resend-message-hook)
(run-hooks 'vm-mail-mode-hook))))
;;;###autoload
(defun vm-send-digest (&optional prefix)
"Send a digest of all messages in the current folder to recipients.
The type of the digest is specified by the variable vm-digest-send-type.
You will be placed in a Mail mode buffer as is usual with replies, but you
must fill in the To: and Subject: headers manually.
Prefix arg means to insert a list of preamble lines at the beginning of
the digest. One line is generated for each message being digestified.
The variable vm-digest-preamble-format determines the format of the
preamble lines.
If invoked on marked messages (via vm-next-command-uses-marks),
only marked messages will be put into the digest."
(interactive "P")
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(let ((dir default-directory)
(miming (and vm-send-using-mime (equal vm-digest-send-type "mime")))
mp mail-buffer b
;; prefix arg doesn't have "normal" meaning here, so only call
;; vm-select-marked-or-prefixed-messages if we're using marks.
(mlist (if (eq last-command 'vm-next-command-uses-marks)
(vm-select-marked-or-prefixed-messages 0)
vm-message-list))
start header-end boundary)
(save-restriction
(widen)
(vm-mail-internal
(format "digest from %s" (buffer-name))
nil
(and vm-forwarding-subject-format
(let ((vm-summary-uninteresting-senders nil))
(concat (vm-summary-sprintf vm-forwarding-subject-format (car mlist))
(if (cdr mlist)
(format " [and %d more messages]"
(length (cdr mlist))))))))
(make-local-variable 'vm-forward-list)
(setq vm-system-state 'forwarding
vm-forward-list mlist
default-directory dir)
(if miming
(progn
(setq mail-buffer (current-buffer))
(set-buffer (vm-make-work-buffer "*vm-digest-buffer*"))
(setq header-end (point))
(insert "\n")
(setq start (point-marker)))
(goto-char (point-min))
(re-search-forward (concat "^" (regexp-quote mail-header-separator)
"\n"))
(goto-char (match-end 0))
(setq start (point-marker)
header-end (match-beginning 0)))
(message "Building %s digest..." vm-digest-send-type)
(cond ((equal vm-digest-send-type "mime")
(setq boundary (vm-mime-encapsulate-messages
mlist vm-mime-digest-headers
vm-mime-digest-discard-header-regexp
t))
(goto-char header-end)
(insert "MIME-Version: 1.0\n")
(insert (if vm-mime-avoid-folding-content-type
"Content-Type: multipart/digest; boundary=\""
"Content-Type: multipart/digest;\n\tboundary=\"")
boundary "\"\n")
(insert "Content-Transfer-Encoding: "
(vm-determine-proper-content-transfer-encoding
(point)
(point-max))
"\n"))
((equal vm-digest-send-type "rfc934")
(vm-rfc934-encapsulate-messages
mlist vm-rfc934-digest-headers
vm-rfc934-digest-discard-header-regexp))
((equal vm-digest-send-type "rfc1153")
(vm-rfc1153-encapsulate-messages
mlist vm-rfc1153-digest-headers
vm-rfc1153-digest-discard-header-regexp))
((equal vm-digest-send-type nil)
(while mlist
(vm-no-frills-encapsulate-message
(car mlist) vm-forwarded-headers
vm-unforwarded-header-regexp)
(setq mlist (cdr mlist)))))
(goto-char start)
(setq mp mlist)
(if miming
(let ((b (current-buffer)))
(set-buffer mail-buffer)
(mail-text)
(vm-mime-attach-object b "multipart/digest"
(list (concat "boundary=\""
boundary "\"")) nil t)
(add-hook 'kill-buffer-hook
(list 'lambda ()
(list 'if (list 'eq mail-buffer '(current-buffer))
(list 'kill-buffer b))))))
(if prefix
(save-excursion
(message "Building digest preamble...")
(if miming
(progn
(set-buffer mail-buffer)
(mail-text)))
(while mp
(let ((vm-summary-uninteresting-senders nil))
(insert (vm-summary-sprintf vm-digest-preamble-format
(car mp)) "\n"))
(if vm-digest-center-preamble
(progn
(forward-char -1)
(center-line)
(forward-char 1)))
(setq mp (cdr mp)))))
(mail-position-on-field "To")
(message "Building %s digest... done" vm-digest-send-type)))
(run-hooks 'vm-send-digest-hook)
(run-hooks 'vm-mail-mode-hook))
;;;###autoload
(defun vm-send-rfc934-digest (&optional preamble)
"Like vm-send-digest but always sends an RFC 934 digest."
(interactive "P")
(let ((vm-digest-send-type "rfc934"))
(vm-send-digest preamble)))
;;;###autoload
(defun vm-send-rfc1153-digest (&optional preamble)
"Like vm-send-digest but always sends an RFC 1153 digest."
(interactive "P")
(let ((vm-digest-send-type "rfc1153"))
(vm-send-digest preamble)))
;;;###autoload
(defun vm-send-mime-digest (&optional preamble)
"Like vm-send-digest but always sends an MIME (multipart/digest) digest."
(interactive "P")
(let ((vm-digest-send-type "mime"))
(vm-send-digest preamble)))
;;;###autoload
(defun vm-continue-composing-message (&optional not-picky)
"Find and select the most recently used mail composition buffer.
If the selected buffer is already a Mail mode buffer then it is
buried before beginning the search. Non Mail mode buffers and
unmodified Mail buffers are skipped. Prefix arg means unmodified
Mail mode buffers are not skipped. If no suitable buffer is
found, the current buffer remains selected."
(interactive "P")
(if (eq major-mode 'mail-mode)
(vm-bury-buffer (current-buffer)))
(let ((b (vm-find-composition-buffer not-picky)))
(if (not (or (null b) (eq b (current-buffer))))
(progn
;; avoid having the window configuration code choose a
;; different composition buffer.
(vm-unbury-buffer b)
(set-buffer b)
(if (and vm-mutable-frames vm-frame-per-composition
(vm-multiple-frames-possible-p)
;; only pop up a frame if there's an undisplay
;; hook in place to make the frame go away.
vm-undisplay-buffer-hook)
(let ((w (vm-get-buffer-window b)))
(if (null w)
(vm-goto-new-frame 'composition)
(select-window w)
(and vm-warp-mouse-to-new-frame
(vm-warp-mouse-to-frame-maybe (vm-window-frame w))))
;; need to do this here too, since XEmacs has per
;; frame buffer lists.
(vm-unbury-buffer b)
(vm-set-hooks-for-frame-deletion)))
(vm-display b t '(vm-continue-composing-message)
'(vm-continue-composing-message composing-message)))
(message "No composition buffers found"))))
;;;###autoload
(defun vm-mail-to-mailto-url (url)
(vm-session-initialization)
(vm-check-for-killed-folder)
(vm-select-folder-buffer-if-possible)
(vm-check-for-killed-summary)
(let ((list (vm-parse url "^mailto:\\([^?]+\\)\\??\\|\\([^&]+\\)&?"
'(1 2)))
to subject in-reply-to cc references newsgroups body
tem header value header-list)
(setq to (car list)
to (vm-url-decode-string to)
list (cdr list))
(while list
(setq tem (vm-parse (car list) "\\([^=]+\\)=?"))
(if (null (nth 1 tem))
nil
(setq header (downcase (vm-url-decode-string (car tem)))
value (vm-url-decode-string (nth 1 tem)))
(if (member header '("subject" "in-reply-to" "cc"
"references" "newsgroups" "body"))
;; set the variable let-bound above
(set (intern header) value)
;; we'll insert the header later
(setq header-list (cons header (cons value header-list)))))
(setq list (cdr list)))
(vm-mail-internal nil to subject in-reply-to cc references newsgroups)
(save-excursion
(goto-char (point-min))
(while header-list
(insert (car header-list) ": ")
(capitalize-region (point) (save-excursion (beginning-of-line) (point)))
(insert (nth 1 header-list) "\n")
(setq header-list (nthcdr 2 header-list)))
(if (null body)
nil
(mail-text)
(save-excursion (insert (vm-url-decode-string body) "\n"))
;; CRLF to LF for line breaks in the body
(while (search-forward "\r\n" nil t)
(replace-match "\n"))))
(run-hooks 'vm-mail-hook)
(run-hooks 'vm-mail-mode-hook)))
;; to quiet the v19 byte compiler
(defvar mail-mode-map)
(defvar mail-aliases)
(defvar mail-default-reply-to)
(defvar mail-signature-file)
(defvar mail-personal-alias-file)
(defun vm-drop-buffer-name-chars (buffer-name)
"Replace chars matching `vm-drop-buffer-name-chars' by an \"_\"."
(let ((r vm-drop-buffer-name-chars))
(if (eq r t) (setq r "[^\x0-\x80]"))
(if (and buffer-name r)
(vm-replace-in-string buffer-name r "_" t)
buffer-name)))
;;;###autoload
(defun vm-mail-internal
(&optional buffer-name to subject in-reply-to cc references newsgroups)
"Create a message buffer and set it up according to args.
Fills in the headers as given by the arguments.
Binds the `vm-mail-mode-map' and hooks"
(let ((folder-buffer nil))
(if (memq major-mode '(vm-mode vm-virtual-mode))
(setq folder-buffer (current-buffer)))
(setq buffer-name (if buffer-name
(vm-decode-mime-encoded-words-in-string buffer-name)
"mail to ?"))
(setq buffer-name (vm-drop-buffer-name-chars buffer-name))
(set-buffer (generate-new-buffer buffer-name))
;; FSF Emacs: try to prevent write-region (called to handle FCC) from
;; asking the user to choose a safe coding system.
(if (and vm-fsfemacs-mule-p (fboundp 'set-buffer-file-coding-system))
(set-buffer-file-coding-system 'raw-text))
;; avoid trying to write auto-save files in potentially
;; unwritable directories.
(setq default-directory (or vm-folder-directory (expand-file-name "~/")))
(auto-save-mode (if auto-save-default 1 -1))
(mail-mode)
;; TM infests mail mode, uninfest it if VM's MIME stuff is in
;; use.
(if vm-send-using-mime
(vm-mail-mode-remove-tm-hooks))
(use-local-map vm-mail-mode-map)
;; make mail-mode-map the parent of this vm-mail-mode-map, if we can.
;; do it only once.
(if (not vm-mail-mode-map-parented)
(cond ((fboundp 'set-keymap-parents)
(set-keymap-parents vm-mail-mode-map (list mail-mode-map))
(setq vm-mail-mode-map-parented t))
((consp mail-mode-map)
(nconc vm-mail-mode-map mail-mode-map)
(setq vm-mail-mode-map-parented t))))
(setq vm-mail-buffer folder-buffer
mode-popup-menu (and vm-use-menus
(vm-menu-support-possible-p)
(vm-menu-mode-menu)))
(and vm-use-menus (vm-menu-support-possible-p)
(vm-menu-install-mail-mode-menu))
(if (fboundp 'mail-aliases-setup) ; use mail-abbrevs.el if present
(mail-aliases-setup)
(if (eq mail-aliases t)
(progn
(setq mail-aliases nil)
(if (file-exists-p (or mail-personal-alias-file "~/.mailrc"))
(build-mail-aliases)))))
(if (stringp vm-mail-header-from)
(insert "From: " vm-mail-header-from "\n"))
(setq to (if to (vm-decode-mime-encoded-words-in-string to))
subject (if subject (vm-decode-mime-encoded-words-in-string subject))
cc (if cc (vm-decode-mime-encoded-words-in-string cc)))
(insert "To: " (or to "") "\n")
(and cc (insert "Cc: " cc "\n"))
(insert "Subject: " (or subject "") "\n")
(and newsgroups (insert "Newsgroups: " newsgroups "\n"))
(and in-reply-to (insert "In-Reply-To: " in-reply-to "\n"))
(and references (insert "References: " references "\n"))
(insert "X-Mailer: VM " (vm-version) " under ")
(cond ((boundp 'emacs-version)
(insert emacs-version))
(t
(insert "Unknown Emacs")))
(if (functionp 'emacsw32-version)
(insert " [" (emacsw32-version) "]"))
(if (boundp 'system-configuration)
(insert " (" system-configuration ")"))
(insert "\n")
;; REPLYTO environmental variable support
;; note that in FSF Emacs v19.29 we would initialize if the
;; value was t. nil is the trigger value used now.
(and (eq mail-default-reply-to nil)
(setq mail-default-reply-to (getenv "REPLYTO")))
(if mail-default-reply-to
(insert "Reply-To: " mail-default-reply-to "\n"))
(if mail-self-blind
(insert "Bcc: "
(cond ((and vm-xemacs-p (fboundp 'user-mail-address))
(user-mail-address))
((and (boundp 'user-mail-address)
(stringp user-mail-address))
user-mail-address)
(t (user-login-name)))
?\n))
(if mail-archive-file-name
(insert "FCC: " mail-archive-file-name "\n"))
(if mail-default-headers
(insert mail-default-headers))
(if (not (= (preceding-char) ?\n))
(insert ?\n))
(insert mail-header-separator "\n")
(if mail-signature
(save-excursion
(save-restriction
(narrow-to-region (point) (point))
(cond ((stringp mail-signature)
(insert mail-signature))
((eq mail-signature t)
(insert-file-contents (or (and (boundp 'mail-signature-file)
(stringp mail-signature-file)
mail-signature-file)
"~/.signature")))
(t
(let ((str (eval mail-signature)))
(if (stringp str)
(insert str)))))
(goto-char (point-min))
(if (looking-at "\n*-- \n")
nil
(insert "\n-- \n"))
(goto-char (point-max)))))
;; move this buffer to the head of the buffer list so window
;; config stuff will select it as the composition buffer.
(vm-unbury-buffer (current-buffer))
;; make a new frame if the user wants it.
(if (and vm-mutable-frames vm-frame-per-composition
(vm-multiple-frames-possible-p))
(progn
(vm-goto-new-frame 'composition)
(vm-set-hooks-for-frame-deletion)))
;; now do window configuration
(vm-display (current-buffer) t
'(vm-mail
vm-mail-other-frame
vm-mail-other-window
vm-reply
vm-reply-other-frame
vm-reply-include-text
vm-reply-include-text-other-frame
vm-followup
vm-followup-other-frame
vm-followup-include-text
vm-followup-include-text-other-frame
vm-send-digest
vm-send-digest-other-frame
vm-send-rfc934-digest
vm-send-rfc934-digest-other-frame
vm-send-rfc1153-digest
vm-send-rfc1153-digest-other-frame
vm-send-mime-digest
vm-send-mime-digest-other-frame
vm-forward-message
vm-forward-message-other-frame
vm-forward-message-all-headers
vm-forward-message-all-headers-other-frame
vm-resend-message
vm-resend-message-other-frame
vm-resend-bounced-message
vm-resend-bounced-message-other-frame)
(list this-command 'composing-message))
(if (null to)
(mail-position-on-field "To"))
(cond ((and vm-xemacs-p
(fboundp 'start-itimer)
(null (get-itimer "vm-rename-mail"))
(start-itimer "vm-rename-mail"
'vm-update-composition-buffer-name
1.5 1.5 t)))
((and (fboundp 'run-with-idle-timer)
(null vm-update-composition-buffer-name-timer))
(setq vm-update-composition-buffer-name-timer
(run-with-idle-timer 1.5 t 'vm-update-composition-buffer-name))))
(run-hooks 'mail-setup-hook)))
;;;###autoload
(defun vm-reply-other-frame (count)
"Like vm-reply, but run in a newly created frame."
(interactive "p")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-reply count))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-reply-include-text-other-frame (count)
"Like vm-reply-include-text, but run in a newly created frame."
(interactive "p")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-reply-include-text count))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-followup-other-frame (count)
"Like vm-followup, but run in a newly created frame."
(interactive "p")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-followup count))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-followup-include-text-other-frame (count)
"Like vm-followup-include-text, but run in a newly created frame."
(interactive "p")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-followup-include-text count))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-forward-message-all-headers-other-frame ()
"Like vm-forward-message-all-headers, but run in a newly created frame."
(interactive)
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-forward-message-all-headers))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-forward-message-other-frame ()
"Like vm-forward-message, but run in a newly created frame."
(interactive)
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-forward-message))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-resend-message-other-frame ()
"Like vm-resend-message, but run in a newly created frame."
(interactive)
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-resend-message))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-resend-bounced-message-other-frame ()
"Like vm-resend-bounced-message, but run in a newly created frame."
(interactive)
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-resend-bounced-message))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-send-digest-other-frame (&optional prefix)
"Like vm-send-digest, but run in a newly created frame."
(interactive "P")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-send-digest prefix))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-send-rfc934-digest-other-frame (&optional prefix)
"Like vm-send-rfc934-digest, but run in a newly created frame."
(interactive "P")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-send-rfc934-digest prefix))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-send-rfc1153-digest-other-frame (&optional prefix)
"Like vm-send-rfc1153-digest, but run in a newly created frame."
(interactive "P")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-send-rfc1153-digest prefix))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-send-mime-digest-other-frame (&optional prefix)
"Like vm-send-mime-digest, but run in a newly created frame."
(interactive "P")
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-send-mime-digest prefix))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
(defvar enriched-mode)
;;;###autoload
(defun vm-preview-composition ()
"Show how the current composition buffer might be displayed
in a MIME-aware mail reader. VM copies and encodes the current
mail composition buffer and displays it as a mail folder.
Type `q' to quit this temp folder and return to composing your
message."
(interactive)
(if (not (eq major-mode 'mail-mode))
(error "Command must be used in a VM Mail mode buffer."))
(let ((temp-buffer nil)
(mail-buffer (current-buffer))
(enriched (and (boundp 'enriched-mode) enriched-mode))
e-list)
(unwind-protect
(progn
(setq temp-buffer (generate-new-buffer "composition preview"))
(set-buffer temp-buffer)
;; so vm-mime-xxxx-encode-composition won't complain
(setq major-mode 'mail-mode)
(set (make-local-variable 'enriched-mode) enriched)
(vm-insert-region-from-buffer mail-buffer)
(goto-char (point-min))
(or (vm-mail-mode-get-header-contents "From")
(insert "From: " (user-login-name) "\n"))
(or (vm-mail-mode-get-header-contents "Message-ID")
(insert (format "Message-ID: <fake.%d.%d@fake.fake>\n"
(random 1000000) (random 1000000))))
(or (vm-mail-mode-get-header-contents "Date")
(insert "Date: "
(format-time-string "%a, %d %b %Y %H%M%S %Z"
(current-time))
"\n"))
(and vm-send-using-mime
(null (vm-mail-mode-get-header-contents "MIME-Version:"))
(vm-mime-encode-composition))
(vm-remove-mail-mode-header-separator)
(vm-munge-message-separators 'mmdf (point-min) (point-max))
(goto-char (point-min))
(insert (vm-leading-message-separator 'mmdf))
(goto-char (point-max))
(if (not (eq (preceding-char) ?\n))
(insert ?\n))
(insert (vm-trailing-message-separator 'mmdf))
(set-buffer-modified-p nil)
;; point of no return, don't kill it if the user quits
(setq temp-buffer nil)
(let ((vm-auto-decode-mime-messages t)
(vm-auto-displayed-mime-content-types t))
(vm-save-buffer-excursion
(vm-goto-new-folder-frame-maybe 'folder)
(vm-mode)))
(message
(substitute-command-keys
"Type \\[vm-quit] to continue composing your message"))
;; temp buffer, don't offer to save it.
(setq buffer-offer-save nil)
(vm-display (or vm-presentation-buffer (current-buffer)) t
(list this-command) '(vm-mode startup)))
(and temp-buffer (kill-buffer temp-buffer)))))
(defun vm-update-composition-buffer-name ()
(if (and (eq major-mode 'mail-mode)
(save-match-data (string-match "^\\(mail\\|reply\\) to "
(buffer-name))))
(let ((to (mail-fetch-field "To"))
(cc (mail-fetch-field "Cc"))
(curbufname (buffer-name))
(deactivate-mark)
fmt newbufname
(ellipsis ""))
(cond (vm-reply-list (setq fmt "reply to %s%s"))
(t (setq fmt "mail to %s%s")))
(setq to (vm-parse-addresses to)
cc (vm-parse-addresses cc))
(if (or (cdr to)
(and (car to) (car cc)))
(setq ellipsis ", ..."))
(setq newbufname (or (car to) (car cc) "foo (?)")
newbufname (funcall vm-chop-full-name-function newbufname)
newbufname (or (car newbufname) (car (cdr newbufname)))
newbufname (format fmt newbufname ellipsis))
(if (equal newbufname curbufname)
nil
(setq newbufname (vm-drop-buffer-name-chars newbufname))
(rename-buffer newbufname t)))))
;;;###autoload
(defun vm-mail-mode-remove-tm-hooks ()
(remove-hook 'mail-setup-hook 'turn-on-mime-edit)
(remove-hook 'mail-setup-hook 'mime/decode-message-header)
(remove-hook 'mail-setup-hook 'mime/editor-mode)
(remove-hook 'mail-send-hook 'mime-edit-maybe-translate)
(remove-hook 'mail-send-hook 'mime-editor/maybe-translate))
(provide 'vm-reply)
;;; vm-reply.el ends here
|