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 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
|
;;; vm-rfaddons.el --- a collections of various useful VM helper functions
;;
;; This file is an add-on for VM
;;
;; Copyright (C) 1999-2006 Robert Widhopf-Fenk
;;
;; Author: Robert Widhopf-Fenk
;; Status: Integrated into View Mail (aka VM), 8.0.x
;; Keywords: VM helpers
;; X-URL: http://bazaar.launchpad.net/viewmail
;;
;; This code 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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
;;; Commentary:
;; Some of the functions should be unbundled into separate packages,
;; but well I'm a lazy guy. And some of them are not tested well.
;;
;; In order to use this package add the following lines to the _end_ of your
;; .vm file. It should be the _end_ in order to ensure that variable you had
;; been setting are honored!
;;
;; (require 'vm-rfaddons)
;; (vm-rfaddons-infect-vm)
;;
;; If you want to use only a subset of the functions you should have a
;; look at the documentation of `vm-rfaddons-infect-vm' and modify
;; its call as desired.
;;
;; Additional packages you may need are:
;;
;; * Package: Personality Crisis for VM
;; is a really cool package if you want to do automatic header rewriting,
;; e.g. if you have various mail accounts and always want to use the right
;; from header, then check it out!
;;
;; * Package: BBDB
;; Homepage: http://bbdb.sourceforge.net
;;
;; All other packages should be included within standard (X)Emacs
;; distributions.
;;
;; As I am no active GNU Emacs user, I would be thankful for any patches to
;; make things work with GNU Emacs!
;;
;;; Code:
(provide 'vm-rfaddons)
(eval-when-compile
(require 'vm-misc)
(require 'vm-folder)
(require 'vm-summary)
(require 'vm-window)
(require 'vm-minibuf)
(require 'vm-menu)
(require 'vm-toolbar)
(require 'vm-mouse)
(require 'vm-page)
(require 'vm-motion)
(require 'vm-undo)
(require 'vm-delete)
(require 'vm-crypto)
(require 'vm-mime)
(require 'vm-edit)
(require 'vm-virtual)
(require 'vm-pop)
(require 'vm-imap)
(require 'vm-sort)
(require 'vm-reply)
(require 'vm-pine)
(require 'wid-edit)
(require 'vm)
)
(declare-function bbdb-record-raw-notes "ext:bbdb" (record))
(declare-function bbdb-record-net "ext:bbdb " (record))
(declare-function bbdb-split "ext:bbdb" (string separators))
(declare-function bbdb-records "ext:bbdb"
(&optional dont-check-disk already-in-db-buffer))
(declare-function smtpmail-via-smtp-server "ext:smtpmail" ())
(declare-function esmtpmail-send-it "ext:esmtpmail" ())
(declare-function esmtpmail-via-smtp-server "ext:esmtpmail" ())
(declare-function vm-folder-buffers "ext:vm" (&optional non-virtual))
(eval-when-compile
(require 'cl)
(require 'advice)
(vm-load-features '(regexp-opt bbdb bbdb-vm))
;; gnus-group removed from features because it gives errors. USR, 2011-01-26
)
(require 'sendmail)
(vm-load-features '(bbdb))
(if vm-xemacs-p (require 'overlay))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defgroup vm-rfaddons nil
"Customize vm-rfaddons.el"
:group 'vm-ext)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defmacro vm-rfaddons-check-option (option option-list &rest body)
"Evaluate body if option is in OPTION-LIST or OPTION-LIST is nil."
(list 'if (list 'member option option-list)
(cons 'progn
(cons (list 'setq option-list (list 'delq option option-list))
(cons (list 'message "Adding vm-rfaddons-option `%s'."
option)
body)))))
;;;###autoload
(defun vm-rfaddons-infect-vm (&optional sit-for
option-list exclude-option-list)
"This function will setup the key bindings, advices and hooks
necessary to use all the function of vm-rfaddons.el.
SIT-FOR specifies the number of seconds to display the infection message.
The OPTION-LIST can be use to select individual option.
The EXCLUDE-OPTION-LIST can be use to exclude individual option.
The following options are possible.
`general' options:
- rf-faces: change some faces
`vm-mail-mode' options:
- attach-save-files: bind [C-c C-a] to `vm-attach-files-in-directory'
- check-recipients: add `vm-mail-check-recipients' to `mail-send-hook' in
order to check if the recipients headers are correct.
- encode-headers: add `vm-mime-encode-headers' to `mail-send-hook' in
order to encode the headers before sending.
- fake-date: if enabled allows you to fake the date of an outgoing message.
`vm-mode' options:
- shrunken-headers: enable shrunken-headers by advising several functions
Other EXPERIMENTAL options:
- auto-save-all-attachments: add `vm-mime-auto-save-all-attachments' to
`vm-select-new-message-hook' for automatic saving of attachments and define
an advice for `vm-set-deleted-flag-of' in order to automatically delete
the files corresponding to MIME objects of type message/external-body when
deleting the message.
- return-receipt-to
If you want to use only a subset of the options then call
`vm-rfaddons-infect-vm' like this:
(vm-rfaddons-infect-vm 2 '(general vm-mail-mode shrunken-headers)
'(fake-date))
This will enable all `general' and `vm-mail-mode' options plus the
`shrunken-headers' option, but it will exclude the `fake-date' option of the
`vm-mail-mode' options.
or do the binding and advising on your own."
(interactive "")
(if (eq option-list 'all)
(setq option-list (list 'general 'vm-mail-mode 'vm-mode
'auto-save-all-attachments
'auto-delete-message-external-body))
(if (eq option-list t)
(setq option-list (list 'vm-mail-mode 'vm-mode))))
(when (member 'general option-list)
(setq option-list (append '(rf-faces)
option-list))
(setq option-list (delq 'general option-list)))
(when (member 'vm-mail-mode option-list)
(setq option-list (append '(attach-save-files
check-recipients
check-for-empty-subject
encode-headers
clean-subject
fake-date
open-line)
option-list))
(setq option-list (delq 'vm-mail-mode option-list)))
(when (member 'vm-mode option-list)
(setq option-list (append '(
;; save-all-attachments
shrunken-headers
take-action-on-attachment
)
option-list))
(setq option-list (delq 'vm-mode option-list)))
(while exclude-option-list
(if (member (car exclude-option-list) option-list)
(setq option-list (delq (car exclude-option-list) option-list))
(message "VM-RFADDONS: The option `%s' was not excluded, maybe it is unknown!"
(car exclude-option-list))
(ding)
(sit-for 3))
(setq exclude-option-list (cdr exclude-option-list)))
;; general ----------------------------------------------------------------
;; install my choice of faces
(vm-rfaddons-check-option
'rf-faces option-list
(vm-install-rf-faces))
;; vm-mail-mode -----------------------------------------------------------
(vm-rfaddons-check-option
'attach-save-files option-list
;; this binding overrides the VM binding of C-c C-a to `vm-attach-file'
(define-key vm-mail-mode-map "\C-c\C-a" 'vm-attach-files-in-directory))
;; check recipients headers for errors before sending
(vm-rfaddons-check-option
'check-recipients option-list
(add-hook 'mail-send-hook 'vm-mail-check-recipients))
;; check if the subjectline is empty
(vm-rfaddons-check-option
'check-for-empty-subject option-list
(add-hook 'vm-mail-send-hook 'vm-mail-check-for-empty-subject))
;; encode headers before sending
(vm-rfaddons-check-option
'encode-headers option-list
(add-hook 'mail-send-hook 'vm-mime-encode-headers))
;; This allows us to fake a date by advising vm-mail-mode-insert-date-maybe
(vm-rfaddons-check-option
'fake-date option-list
(defadvice vm-mail-mode-insert-date-maybe (around vm-fake-date activate)
"Do not change an existing date if `vm-mail-mode-fake-date-p' is t."
(if (not (and vm-mail-mode-fake-date-p
(vm-mail-mode-get-header-contents "Date:")))
ad-do-it)))
(vm-rfaddons-check-option
'open-line option-list
(add-hook 'vm-mail-mode-hook 'vm-mail-mode-install-open-line))
(vm-rfaddons-check-option
'clean-subject option-list
(add-hook 'vm-mail-mode-hook 'vm-mail-subject-cleanup))
;; vm-mode -----------------------------------------------------------
;; Shrunken header handlers
(vm-rfaddons-check-option
'shrunken-headers option-list
(if (not (boundp 'vm-always-use-presentation))
(message "Shrunken-headers do NOT work in standard VM!")
;; We would corrupt the folder buffer for messages which are
;; not displayed by a presentation buffer, thus we must ensure
;; that a presentation buffer is used. The visibility-widget
;; would cause "*"s to be inserted into the folder buffer.
(setq vm-always-use-presentation t)
(defadvice vm-present-current-message
(after vm-shrunken-headers-pcm activate)
"Shrink headers when previewing a message."
(vm-shrunken-headers))
(defadvice vm-expose-hidden-headers
(after vm-shrunken-headers-ehh activate)
"Shrink headers when viewing hidden headers."
(vm-shrunken-headers))
;; this overrides the VM binding of "T" to `vm-toggle-thread'
(define-key vm-mode-map "T" 'vm-shrunken-headers-toggle)))
;; This is not needed any more because VM has $ commands to take
;; action on attachments. But we keep it for compatibility.
;; take action on attachment binding
(vm-rfaddons-check-option
'take-action-on-attachment option-list
;; this overrides the VM binding of "." to `vm-mark-message-as-read'
(define-key vm-mode-map "." 'vm-mime-take-action-on-attachment))
;; This is not needed any more becaue it is in the core
;; (vm-rfaddons-check-option
;; 'save-all-attachments option-list
;; (define-key vm-mode-map "\C-c\C-s" 'vm-save-all-attachments))
;; other experimental options ---------------------------------------------
;; Now take care of automatic saving of attachments
(vm-rfaddons-check-option
'auto-save-all-attachments option-list
;; In order to reflect MIME type changes when `vm-mime-delete-after-saving'
;; is t we preview the message again.
(defadvice vm-mime-send-body-to-file
(after vm-do-preview-again activate)
(if vm-mime-delete-after-saving
(vm-present-current-message)))
(add-hook 'vm-select-new-message-hook 'vm-mime-auto-save-all-attachments))
(vm-rfaddons-check-option
'auto-delete-message-external-body option-list
;; and their deletion when deleting a unfiled message,
;; this is probably a problem, since actually we should delete it
;; only if there remains no reference to it!!!!
(defadvice vm-set-deleted-flag-of
(before vm-mime-auto-save-all-attachments activate)
(if (and (eq (ad-get-arg 1) 'expunged)
(not (vm-filed-flag (ad-get-arg 0))))
(vm-mime-auto-save-all-attachments-delete-external (ad-get-arg 0)))))
(vm-rfaddons-check-option
'return-receipt-to option-list
(add-hook 'vm-select-message-hook 'vm-handle-return-receipt))
(when option-list
(message "VM-RFADDONS: The following options are unknown: %s" option-list)
(ding)
(sit-for 3))
(message "VM-RFADDONS: Options loaded.")
(vm-sit-for (or sit-for 2)))
(defun rf-vm-su-labels (m)
"This version does some sanity checking."
(let ((labels (vm-label-string-of m)))
(if (and labels (stringp labels))
labels
(setq labels (vm-labels-of m))
(if (and labels (listp labels))
(vm-set-label-string-of
m
(setq labels (mapconcat 'identity labels ",")))
(vm-set-label-string-of m "")
(setq labels "")))
labels))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This add-on is now obsolete because
;; vm-include-text-from-presentation in core VM enables the same
;; functionality. USR, 2011-03-30
(defcustom vm-reply-include-presentation nil
"*If true a reply will include the presentation of a message.
This might give better results when using filling or MIME encoded messages,
e.g. HTML message.
(This variable is part of vm-rfaddons.el.)"
:group 'vm-rfaddons
:type 'boolean)
;;;###autoload
(defun vm-followup-include-presentation (count)
"Include presentation instead of text.
This does not work when replying to multiple messages."
(interactive "p")
(vm-reply-include-presentation count t))
(make-obsolete 'vm-followup-include-presentation
'vm-include-text-from-presentation "8.2.0")
;;;###autoload
(defun vm-reply-include-presentation (count &optional to-all)
"Include presentation instead of text.
This does only work with my modified VM, i.e. a hacked `vm-yank-message'."
(interactive "p")
(vm-follow-summary-cursor)
(vm-select-folder-buffer-and-validate 1 (vm-interactive-p))
(if (null vm-presentation-buffer)
(if to-all
(vm-followup-include-text count)
(vm-reply-include-text count))
(let ((vm-include-text-from-presentation t)
(vm-reply-include-presentation t) ; is this variable necessary?
(vm-enable-thread-operations nil))
(vm-do-reply to-all t count))))
(make-obsolete 'vm-reply-include-presentation
'vm-include-text-from-presentation "8.2.0")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This add-on is disabled becaust it has been integrated into the
;; core. USR, 2010-05-01
;; (defadvice vm-mime-encode-composition
;; (before do-fcc-before-mime-encode activate)
;; "FCC before encoding attachments if `vm-do-fcc-before-mime-encode' is t."
;; (if vm-do-fcc-before-mime-encode
;; (vm-do-fcc-before-mime-encode)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This has been moved to the VM core. USR, 2010-03-11
;;;;;###autoload
;; (defun vm-fill-paragraphs-by-longlines (width start end)
;; "Uses longlines.el for filling.
;; To use it, advice `vm-fill-paragraphs-containing-long-lines' and call this
;; function instead."
;; (if (eq width 'window-width)
;; (setq width (- (window-width (get-buffer-window (current-buffer))) 1)))
;; ;; prepare for longlines.el in XEmacs
;; (require 'overlay)
;; (require 'longlines)
;; (defvar fill-nobreak-predicate nil)
;; (defvar undo-in-progress nil)
;; (defvar longlines-mode-hook nil)
;; (defvar longlines-mode-on-hook nil)
;; (defvar longlines-mode-off-hook nil)
;; (unless (functionp 'replace-regexp-in-string)
;; (defun replace-regexp-in-string (regexp rep string
;; &optional fixedcase literal)
;; (vm-replace-in-string string regexp rep literal)))
;; (unless (functionp 'line-end-position)
;; (defun line-end-position ()
;; (save-excursion (end-of-line) (point))))
;; (unless (functionp 'line-beginning-position)
;; (defun line-beginning-position (&optional n)
;; (save-excursion
;; (if n (forward-line n))
;; (beginning-of-line)
;; (point)))
;; (unless (functionp 'replace-regexp-in-string)
;; (defun replace-regexp-in-string (regexp rep string
;; &optional fixedcase literal)
;; (vm-replace-in-string string regexp rep literal))))
;; ;; now do the filling
;; (let ((buffer-read-only nil)
;; (fill-column width))
;; (save-excursion
;; (vm-save-restriction
;; ;; longlines-wrap-region contains a (forward-line -1) which is causing
;; ;; wrapping of headers which is wrong, so we restrict it here!
;; (narrow-to-region start end)
;; (longlines-decode-region start end) ; make linebreaks hard
;; (longlines-wrap-region start end) ; wrap, adding soft linebreaks
;; (widen)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-spamassassin-strip-report "spamassassin -d"
"*Shell command used to strip spamassassin-reports from a message."
:type 'string
:group 'vm-rfaddons)
(defun vm-strip-spamassassin-report ()
"Strips spamassassin-reports from a message."
(interactive)
(save-window-excursion
(let ((vm-frame-per-edit nil))
(vm-edit-message)
(shell-command-on-region (point-min) (point-max)
vm-spamassassin-strip-report
(current-buffer)
t)
(vm-edit-message-end))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; vm-switch-to-folder moved to vm.el. USR, 2011-02-28
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-rmail-mode nil
"*Non-nil means up/down move to the next/previous message instead.
Otherwise normal cursor movement is done. Specifically only modes
listed in `vm-rmail-mode-list' are affected.
Use `vm-rmail-toggle' to switch between normal and this mode."
:type 'boolean
:group 'vm-rfaddons)
(defcustom vm-rmail-mode-list '(vm-summary-mode)
"*Mode to activate `vm-rmail-mode' in."
:type '(set (const vm-mode)
(const vm-presentation-mode)
(const vm-virtual-mode)
(const vm-summary-mode))
:group 'vm-rfaddons)
(defun vm-rmail-toggle (&optional arg)
(interactive)
(cond ((eq nil arg)
(setq vm-rmail-mode (not vm-rmail-mode)))
((= 1 arg)
(setq vm-rmail-mode t))
((= -1 arg)
(setq vm-rmail-mode nil))
(t
(setq vm-rmail-mode (not vm-rmail-mode))))
(message (if vm-rmail-mode "Rmail cursor mode" "VM cursor mode")))
(defun vm-rmail-up ()
(interactive)
(cond ((and vm-rmail-mode (member major-mode vm-rmail-mode-list))
(vm-next-message -1)
(vm-display nil nil '(rf-vm-rmail-up vm-previous-message)
(list this-command)))
(t
(forward-line -1))))
(defun vm-rmail-down ()
(interactive)
(cond ((and vm-rmail-mode (member major-mode vm-rmail-mode-list))
(vm-next-message 1)
(vm-display nil nil '(rf-vm-rmail-up vm-next-message)
(list this-command)))
(t
(forward-line 1))))
(defun vm-do-with-message (count function vm-display)
(vm-follow-summary-cursor)
(save-excursion
(vm-select-folder-buffer)
(let ((mlist (vm-select-operable-messages
count (vm-interactive-p) "Operate on")))
(while mlist
(funcall function (car mlist))
(vm-mark-for-summary-update (car mlist) t)
(setq mlist (cdr mlist))))
(vm-display nil nil (append vm-display '(vm-do-with-message))
(list this-command))
(vm-update-summary-and-mode-line)))
(defun vm-toggle-mark (count &optional m)
(interactive "p")
(vm-do-with-message
count
(lambda (m) (vm-set-mark-of m (not (vm-mark-of m))))
'(vm-toggle-mark vm-mark-message marking-message)))
(defun vm-toggle-deleted (count &optional m)
(interactive "p")
(vm-do-with-message
count
(lambda (m) (vm-set-deleted-flag m (not (vm-deleted-flag m))))
'(vm-toggle-deleted vm-delete-message vm-delete-message-backward)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-mail-subject-prefix-replacements
'(("\\(\\(re\\|aw\\|antw\\)\\(\\[[0-9]+\\]\\)?:[ \t]*\\)+" . "Re: ")
("\\(\\(fo\\|wg\\)\\(\\[[0-9]+\\]\\)?:[ \t]*\\)+" . "Fo: "))
"*List of subject prefixes which should be replaced.
Matching will be done case insentivily."
:group 'vm-rfaddons
:type '(repeat (cons (regexp :tag "Regexp")
(string :tag "Replacement"))))
(defcustom vm-mail-subject-number-reply nil
"*Non-nil means, add a number [N] after the reply prefix.
The number reflects the number of references."
:group 'vm-rfaddons
:type '(choice
(const :tag "on" t)
(const :tag "off" nil)))
(defun vm-mail-subject-cleanup ()
"Do some subject line clean up.
- Replace subject prefixes according to `vm-replace-subject-prefixes'.
- Add a number after replies is `vm-mail-subject-number-reply' is t.
You might add this function to `vm-mail-mode-hook' in order to clean up the
Subject header."
(interactive)
(save-excursion
;; cleanup
(goto-char (point-min))
(re-search-forward
(concat "^\\(" (regexp-quote mail-header-separator) "\\)$")
(point-max))
(let ((case-fold-search t)
(rpl vm-mail-subject-prefix-replacements))
(while rpl
(if (re-search-backward (concat "^Subject:[ \t]*" (caar rpl))
(point-min) t)
(replace-match (concat "Subject: " (cdar rpl))))
(setq rpl (cdr rpl))))
;; add number to replys
(let (refs (start 0) end (count 0))
(when (and vm-mail-subject-number-reply vm-reply-list
(setq refs (vm-mail-mode-get-header-contents "References:")))
(while (string-match "<[^<>]+>" refs start)
(setq count (1+ count)
start (match-end 0)))
(when (> count 1)
(mail-position-on-field "Subject" t)
(setq end (point))
(if (re-search-backward "^Subject:" (point-min) t)
(setq start (point))
(error "Could not find end of Subject header start"))
(goto-char start)
(if (not (re-search-forward (regexp-quote vm-reply-subject-prefix)
end t))
(error "Cound not find vm-reply-subject-prefix `%s' in header"
vm-reply-subject-prefix)
(goto-char (match-end 0))
(skip-chars-backward ": \t")
(insert (format "[%d]" count))))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun vm-mime-set-8bit-composition-charset (charset &optional buffer-local)
"*Set `vm-mime-8bit-composition-charset' to CHARSET.
With the optional BUFFER-LOCAL prefix arg, this only affects the current
buffer."
(interactive (list (completing-read "Composition charset: "
vm-mime-charset-completion-alist
nil t)
current-prefix-arg))
(if (or vm-xemacs-mule-p vm-fsfemacs-p)
(error "vm-mime-8bit-composition-charset has no effect in XEmacs/MULE"))
(if buffer-local
(set (make-local-variable 'vm-mime-8bit-composition-charset) charset)
(setq vm-mime-8bit-composition-charset charset)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun bbdb/vm-set-virtual-folder-alist ()
"Create a `vm-virtual-folder-alist' according to the records in the bbdb.
For each record that has a 'vm-virtual' attribute, add or modify the
corresponding BBDB-VM-VIRTUAL element of the `vm-virtual-folder-alist'.
(BBDB-VM-VIRTUAL ((vm-primary-inbox)
(author-or-recipient BBDB-RECORD-NET-REGEXP)))
The element gets added to the 'element-name' sublist of the
`vm-virtual-folder-alist'."
(interactive)
(let (notes-field email-regexp folder selector)
(dolist (record (bbdb-records))
(setq notes-field (bbdb-record-raw-notes record))
(when (and (listp notes-field)
(setq folder (cdr (assq 'vm-virtual notes-field))))
(setq email-regexp (mapconcat (lambda (addr)
(regexp-quote addr))
(bbdb-record-net record) "\\|"))
(unless (zerop (length email-regexp))
(setq folder (or (assoc folder vm-virtual-folder-alist)
(car
(setq vm-virtual-folder-alist
(nconc (list (list folder
(list (list vm-primary-inbox)
(list 'author-or-recipient))))
vm-virtual-folder-alist))))
folder (cadr folder)
selector (assoc 'author-or-recipient folder))
(if (cdr selector)
(if (not (string-match (regexp-quote email-regexp)
(cadr selector)))
(setcdr selector (list (concat (cadr selector) "\\|"
email-regexp))))
(nconc selector (list email-regexp)))))
)
))
(defun vm-virtual-find-selector (selector-spec type)
"Return the first selector of TYPE in SELECTOR-SPEC."
(let ((s (assoc type selector-spec)))
(unless s
(while (and (not s) selector-spec)
(setq s (and (listp (car selector-spec))
(vm-virtual-find-selector (car selector-spec) type))
selector-spec (cdr selector-spec))))
s))
(defcustom bbdb/vm-virtual-folder-alist-by-mail-alias-alist nil
"*A list of (ALIAS . FOLDER-NAME) pairs, which map an alias to a folder."
:group 'vm-rfaddons
:type '(repeat (cons :tag "Mapping Definition"
(regexp :tag "Alias")
(string :tag "Folder Name"))))
(defun bbdb/vm-set-virtual-folder-alist-by-mail-alias ()
"Create a `vm-virtual-folder-alist' according to the records in the bbdb.
For each record check wheather its alias is in the variable
`bbdb/vm-virtual-folder-alist-by-mail-alias-alist' and then
add/modify the corresponding VM-VIRTUAL element of the
`vm-virtual-folder-alist'.
(BBDB-VM-VIRTUAL ((vm-primary-inbox)
(author-or-recipient BBDB-RECORD-NET-REGEXP)))
The element gets added to the 'element-name' sublist of the
`vm-virtual-folder-alist'."
(interactive)
(let (notes-field email-regexp mail-aliases folder selector)
(dolist (record (bbdb-records))
(setq notes-field (bbdb-record-raw-notes record))
(when (and (listp notes-field)
(setq mail-aliases (cdr (assq 'mail-alias notes-field)))
(setq mail-aliases (bbdb-split mail-aliases ",")))
(setq folder nil)
(while mail-aliases
(setq folder
(assoc (car mail-aliases)
bbdb/vm-virtual-folder-alist-by-mail-alias-alist))
(when (and folder
(setq folder (cdr folder)
email-regexp (mapconcat (lambda (addr)
(regexp-quote addr))
(bbdb-record-net record)
"\\|"))
(> (length email-regexp) 0))
(setq folder (or (assoc folder vm-virtual-folder-alist)
(car
(setq vm-virtual-folder-alist
(nconc
(list
(list folder
(list (list vm-primary-inbox)
(list 'author-or-recipient))
))
vm-virtual-folder-alist))))
folder (cadr folder)
selector (vm-virtual-find-selector folder
'author-or-recipient))
(unless selector
(nconc (cdr folder) (list (list 'author-or-recipient))))
(if (cdr selector)
(if (not (string-match (regexp-quote email-regexp)
(cadr selector)))
(setcdr selector (list (concat (cadr selector) "\\|"
email-regexp))))
(nconc selector (list email-regexp))))
(setq mail-aliases (cdr mail-aliases)))
))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-handle-return-receipt-mode 'edit
"*Tells `vm-handle-return-receipt' how to handle return receipts.
One can choose between 'ask, 'auto, 'edit or an expression which is evaluated
and which should return t if the return receipts should be sent."
:group 'vm-rfaddons
:type '(choice (const :tag "Edit" edit)
(const :tag "Ask" ask)
(const :tag "Auto" auto)))
(defcustom vm-handle-return-receipt-peek 500
"*Number of characters from the original message body to be returned."
:group 'vm-rfaddons
:type '(integer))
(defun vm-handle-return-receipt ()
"Generate a reply to the current message if it requests a return receipt
and has not been replied so far.
See the variable `vm-handle-return-receipt-mode' for customization."
(interactive)
(save-excursion
(vm-select-folder-buffer-and-validate 1 (vm-interactive-p))
(let* ((msg (car vm-message-pointer))
(sender (vm-get-header-contents msg "Return-Receipt-To:"))
(mail-signature nil)
(mode (and sender
(cond ((equal 'ask vm-handle-return-receipt-mode)
(y-or-n-p "Send a return receipt? "))
((symbolp vm-handle-return-receipt-mode)
vm-handle-return-receipt-mode)
(t
(eval vm-handle-return-receipt-mode)))))
(vm-mutable-frame-configuration
(if (eq mode 'edit) vm-mutable-frame-configuration nil))
(vm-mail-mode-hook nil)
(vm-mode-hook nil)
message)
(when (and mode (not (vm-replied-flag msg)))
(vm-reply 1)
(vm-mail-mode-remove-header "Return-Receipt-To:")
(vm-mail-mode-remove-header "To:")
(goto-char (point-min))
(insert "To: " sender "\n")
(mail-text)
(delete-region (point) (point-max))
(insert
(format
"Your mail has been received on %s."
(current-time-string)))
(save-restriction
(save-excursion
(set-buffer (vm-buffer-of msg))
(widen)
(setq message
(buffer-substring
(vm-vheaders-of msg)
(let ((tp (+ vm-handle-return-receipt-peek
(marker-position
(vm-text-of msg))))
(ep (marker-position
(vm-end-of msg))))
(if (< tp ep) tp ep))
))))
(insert "\n-----------------------------------------------------------------------------\n"
message)
(if (re-search-backward "^\\s-+.*" (point-min) t)
(replace-match ""))
(insert "[...]\n")
(if (not (eq mode 'edit))
(vm-mail-send-and-exit nil))
)
)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defalias 'vm-mime-find-type-of-message/external-body
'vm-mf-external-body-content-type)
(make-obsolete 'vm-mime-find-type-of-message/external-body
'vm-mf-external-body-content-type "8.2.0")
;; This is a hack in order to get the right MIME button
;(defadvice vm-mime-set-extent-glyph-for-type
; (around vm-message/external-body-glyph activate)
; (if (and (boundp 'real-mime-type)
; (string= (ad-get-arg 1) "message/external-body"))
; (ad-set-arg 1 real-mime-type))
; ad-do-it)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defvar vm-attach-files-in-directory-regexps-history nil
"Regexp history for matching files.")
(defvaralias 'vm-mime-attach-files-in-directory-regexps-history
'vm-attach-files-in-directory-regexps-history)
(defcustom vm-attach-files-in-directory-default-type nil
"*The default MIME-type for attached files.
If set to nil you will be asked for the type if it cannot be guessed.
For guessing mime-types we use `vm-mime-attachment-auto-type-alist'."
:group 'vm-rfaddons
:type '(choice (const :tag "Ask" nil)
(string "application/octet-stream")))
(defvaralias 'vm-mime-attach-files-in-directory-default-type
'vm-attach-files-in-directory-default-type)
(defcustom vm-attach-files-in-directory-default-charset 'guess
"*The default charset used for attached files of type `text'.
If set to nil you will be asked for the charset.
If set to 'guess it will be determined by `vm-determine-proper-charset', but
this may take some time, since the file needs to be visited."
:group 'vm-rfaddons
:type '(choice (const :tag "Ask" nil)
(const :tag "Guess" guess)))
(defvaralias 'vm-mime-attach-files-in-directory-default-charset
'vm-attach-files-in-directory-default-charset)
;; (define-obsolete-variable-alias 'vm-mime-save-all-attachments-types
;; 'vm-mime-saveable-types
;; "8.3.0"
;; "*List of MIME types which should be saved.")
(defvaralias 'vm-mime-save-all-attachments-types
'vm-mime-saveable-types)
(make-obsolete-variable 'vm-mime-save-all-attachments-types
'vm-mime-saveable-types "8.1.1")
;; (define-obsolete-variable-alias
;; 'vm-mime-save-all-attachments-types-exceptions
;; 'vm-mime-saveable-type-exceptions
;; "8.3.0"
;; "*List of MIME types which should not be saved.")
(defvaralias 'vm-mime-save-all-attachments-types-exceptions
'vm-mime-saveable-type-exceptions)
(make-obsolete-variable 'vm-mime-save-all-attachments-types-exceptions
'vm-mime-saveable-type-exceptions "8.1.1")
;; (define-obsolete-variable-alias 'vm-mime-delete-all-attachments-types
;; 'vm-mime-deleteable-types
;; "8.3.0"
;; "*List of MIME types which should be deleted.")
(defvaralias 'vm-mime-delete-all-attachments-types
'vm-mime-deleteable-types)
(make-obsolete-variable 'vm-mime-delete-all-attachments-types
'vm-mime-deleteable-types "8.1.1")
;; (define-obsolete-variable-alias
;; 'vm-mime-delete-all-attachments-types-exceptions
;; 'vm-mime-deleteable-type-exceptions
;; "8.3.0"
;; "*List of MIME types which should not be deleted.")
(defvaralias 'vm-mime-delete-all-attachments-types-exceptions
'vm-mime-deleteable-type-exceptions)
(make-obsolete-variable 'vm-mime-delete-all-attachments-types-exceptions
'vm-mime-deleteable-type-exceptions "8.1.1")
;;;###autoload
(defun vm-attach-files-in-directory (directory &optional regexp)
"Attach all files in DIRECTORY matching REGEXP.
The optional argument MATCH might specify a regexp matching all files
which should be attached, when empty all files will be attached.
When called with a prefix arg it will do a literal match instead of a regexp
match."
(interactive
;; temporarily override substitute-in-file-name. but why?
;; flet is obsolete from Emacs 24.3; need to use cl-flet
(flet ((substitute-in-file-name (file) file))
(let ((file (vm-read-file-name
"Attach files matching regexp: "
(or vm-mime-all-attachments-directory
vm-mime-attachment-save-directory
default-directory)
(or vm-mime-all-attachments-directory
vm-mime-attachment-save-directory
default-directory)
nil nil
vm-attach-files-in-directory-regexps-history)))
(list (file-name-directory file)
(file-name-nondirectory file)))))
(setq vm-mime-all-attachments-directory directory)
(message "Attaching files matching `%s' from directory %s " regexp directory)
(if current-prefix-arg
(setq regexp (concat "^" (regexp-quote regexp) "$")))
(let ((files (directory-files directory t regexp nil))
file type charset)
(if (null files)
(error "No matching files!")
(while files
(setq file (car files))
(if (file-directory-p file)
nil ;; should we add recursion here?
(setq type (or (vm-mime-default-type-from-filename file)
vm-attach-files-in-directory-default-type))
(message "Attaching file %s with type %s ..." file type)
(if (null type)
(let ((default-type (or (vm-mime-default-type-from-filename file)
"application/octet-stream")))
(setq type (completing-read
(format "Content type for %s (default %s): "
(file-name-nondirectory file)
default-type)
vm-mime-type-completion-alist)
type (if (> (length type) 0) type default-type))))
(if (not (vm-mime-types-match "text" type)) nil
(setq charset vm-attach-files-in-directory-default-charset)
(cond ((eq 'guess charset)
(save-excursion
(let ((b (get-file-buffer file)))
(set-buffer (or b (find-file-noselect file t t)))
(setq charset (vm-determine-proper-charset (point-min)
(point-max)))
(if (null b) (kill-buffer (current-buffer))))))
((null charset)
(setq charset
(completing-read
(format "Character set for %s (default US-ASCII): "
file)
vm-mime-charset-completion-alist)
charset (if (> (length charset) 0) charset)))))
(vm-attach-file file type charset))
(setq files (cdr files))))))
(defalias 'vm-mime-attach-files-in-directory 'vm-attach-files-in-directory)
(defcustom vm-mime-auto-save-all-attachments-subdir
nil
"*Subdirectory where to save the attachments of a message.
This variable might be set to a string, a function or anything which evaluates
to a string. If set to nil we use a concatenation of the from, subject and
date header as subdir for the attachments."
:group 'vm-rfaddons
:type '(choice (directory :tag "Directory")
(string :tag "No Subdir" "")
(function :tag "Function")
(sexp :tag "sexp")))
(defun vm-mime-auto-save-all-attachments-subdir (msg)
"Return a subdir for the attachments of MSG.
This will be done according to `vm-mime-auto-save-all-attachments-subdir'."
(setq msg (vm-real-message-of msg))
(when (not (string-match
(regexp-quote (vm-reencode-mime-encoded-words-in-string
(vm-su-full-name msg)))
(vm-get-header-contents msg "From:")))
(backtrace)
(if (y-or-n-p (format "Is this wrong? %s <> %s "
(vm-su-full-name msg)
(vm-get-header-contents msg "From:")))
(error "Yes it is wrong!")))
(cond ((functionp vm-mime-auto-save-all-attachments-subdir)
(funcall vm-mime-auto-save-all-attachments-subdir msg))
((stringp vm-mime-auto-save-all-attachments-subdir)
(vm-summary-sprintf vm-mime-auto-save-all-attachments-subdir msg))
((null vm-mime-auto-save-all-attachments-subdir)
(let (;; for the folder
(basedir (buffer-file-name (vm-buffer-of msg)))
;; for the message
(subdir (concat
"/"
(format "%04s.%02s.%02s-%s"
(vm-su-year msg)
(vm-su-month-number msg)
(vm-su-monthday msg)
(vm-su-hour msg))
"--"
(or (vm-su-full-name msg)
"unknown")
"--"
(vm-su-subject msg))))
(if (and basedir vm-folder-directory
(string-match
(concat "^" (expand-file-name vm-folder-directory))
basedir))
(setq basedir (replace-match "" nil nil basedir)))
(setq subdir (vm-replace-in-string subdir "\\s-\\s-+" " " t))
(setq subdir (vm-replace-in-string subdir "[^A-Za-z0-9\241-_-]+" "_" t))
(setq subdir (vm-replace-in-string subdir "?_-?_" "-" nil))
(setq subdir (vm-replace-in-string subdir "^_+" "" t))
(setq subdir (vm-replace-in-string subdir "_+$" "" t))
(concat basedir "/" subdir)))
(t
(eval vm-mime-auto-save-all-attachments-subdir))))
(defun vm-mime-auto-save-all-attachments-path (msg)
"Create a path for storing the attachments of MSG."
(let ((subdir (vm-mime-auto-save-all-attachments-subdir
(vm-real-message-of msg))))
(if (not vm-mime-attachment-save-directory)
(error "Set `vm-mime-attachment-save-directory' for autosaving of attachments")
(if subdir
(if (string-match "/$" vm-mime-attachment-save-directory)
(concat vm-mime-attachment-save-directory subdir)
(concat vm-mime-attachment-save-directory "/" subdir))
vm-mime-attachment-save-directory))))
;;;###autoload
(defun vm-mime-auto-save-all-attachments (&optional count)
"Save all attachments to a subdirectory.
Root directory for saving is `vm-mime-attachment-save-directory'.
You might add this to `vm-select-new-message-hook' in order to automatically
save attachments.
(add-hook 'vm-select-new-message-hook 'vm-mime-auto-save-all-attachments)
"
(interactive "P")
(if vm-mime-auto-save-all-attachments-avoid-recursion
nil
(let ((vm-mime-auto-save-all-attachments-avoid-recursion t))
(vm-check-for-killed-folder)
(vm-select-folder-buffer-and-validate 1 (vm-interactive-p))
(vm-save-all-attachments
count
'vm-mime-auto-save-all-attachments-path)
(when (vm-interactive-p)
(vm-discard-cached-data)
(vm-present-current-message)))))
;;;###autoload
(defun vm-mime-auto-save-all-attachments-delete-external (msg)
"Deletes the external attachments created by `vm-save-all-attachments'.
You may want to use this function in order to get rid of the external files
when deleting a message.
See the advice in `vm-rfaddons-infect-vm'."
(interactive "")
(vm-check-for-killed-folder)
(vm-select-folder-buffer-and-validate 1 (vm-interactive-p))
(setq msg (or msg (car vm-message-pointer)))
(if msg
(let ((o (vm-mm-layout msg))
(no 0)
parts layout file type)
(if (eq 'none o)
nil;; this is no mime message
(setq type (car (vm-mm-layout-type o)))
(cond ((or (vm-mime-types-match "multipart/alternative" type)
(vm-mime-types-match "multipart/mixed" type))
(setq parts (copy-sequence (vm-mm-layout-parts o))))
(t (setq parts (list o))))
(while parts
(if (vm-mime-composite-type-p
(car (vm-mm-layout-type (car parts))))
(setq parts (nconc (copy-sequence
(vm-mm-layout-parts
(car parts)))
(cdr parts))))
(setq layout (car parts))
(if layout
(setq type (car (vm-mm-layout-type layout))))
(if (not (string= type "message/external-body"))
nil
(setq file (vm-mime-get-parameter layout "name"))
(if (and file (file-exists-p file))
(progn (delete-file file)
(setq no (+ 1 no)))))
(setq parts (cdr parts))))
(if (> no 0)
(message "%s file%s deleted."
(if (= no 1) "One" no)
(if (= no 1) "" "s")))
(if (and file
(file-name-directory file)
(file-exists-p (file-name-directory file))
;; is the directory empty?
(let ((files (directory-files (file-name-directory file))))
(and files (= 2 (length files)))))
(delete-directory (file-name-directory file))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun vm-mail-check-recipients ()
"Check if the recipients are specified correctly.
Actually it checks only if there are any missing commas or the like in the
headers."
(interactive)
(let ((header-list '("To:" "CC:" "BCC:"
"Resent-To:" "Resent-CC:" "Resent-BCC:"))
(contents nil)
(errors nil))
(while header-list
(setq contents (vm-mail-mode-get-header-contents (car header-list)))
(if (and contents (string-match "@[^,\"]*@" contents))
(setq errors (vm-replace-in-string
(format "Missing separator in %s \"%s\"! "
(car header-list)
(match-string 0 contents))
"[\n\t ]+" " ")))
(setq header-list (cdr header-list)))
(if errors
(error errors))))
(defcustom vm-mail-prompt-if-subject-empty t
"*Prompt for a subject when empty."
:group 'vm-rfaddons
:type '(boolean))
;;;###autoload
(defun vm-mail-check-for-empty-subject ()
"Check if the subject line is empty and issue an error if so."
(interactive)
(let (subject)
(setq subject (vm-mail-mode-get-header-contents "Subject:"))
(if (or (not subject) (string-match "^[ \t]*$" subject))
(if (not vm-mail-prompt-if-subject-empty)
(error "Empty subject")
(mail-position-on-field "Subject")
(insert (read-string "Subject: "))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defface vm-shrunken-headers-face
'((((class color) (background light))
(:background "grey"))
(((class color) (background dark))
(:background "DimGrey"))
(t (:dim t)))
"Used for marking shrunken headers."
:group 'vm-rfaddons)
(defconst vm-shrunken-headers-keymap
(let ((map (if vm-xemacs-p (make-keymap) (copy-keymap vm-mode-map))))
(define-key map [(return)] 'vm-shrunken-headers-toggle-this)
(if vm-xemacs-p
(define-key map [(button2)] 'vm-shrunken-headers-toggle-this-mouse)
(define-key map [(mouse-2)] 'vm-shrunken-headers-toggle-this-mouse))
map)
"Keymap used for shrunken-headers glyphs.")
;;;###autoload
(defun vm-shrunken-headers-toggle ()
"Toggle display of shrunken headers."
(interactive)
(vm-shrunken-headers 'toggle))
;;;###autoload
(defun vm-shrunken-headers-toggle-this-mouse (&optional event)
"Toggle display of shrunken headers."
(interactive "e")
(mouse-set-point event)
(end-of-line)
(vm-shrunken-headers-toggle-this))
;;;###autoload
(defun vm-shrunken-headers-toggle-this-widget (widget &rest event)
(goto-char (widget-get widget :to))
(end-of-line)
(vm-shrunken-headers-toggle-this))
;;;###autoload
(defun vm-shrunken-headers-toggle-this ()
"Toggle display of shrunken headers."
(interactive)
(save-excursion
(if (and (boundp 'vm-mail-buffer) (symbol-value 'vm-mail-buffer))
(set-buffer (symbol-value 'vm-mail-buffer)))
(if vm-presentation-buffer
(set-buffer vm-presentation-buffer))
(let ((o (or (car (vm-shrunken-headers-get-overlays (point)))
(car (vm-shrunken-headers-get-overlays
(save-excursion (end-of-line)
(forward-char 1)
(point)))))))
(save-restriction
(narrow-to-region (- (overlay-start o) 7) (overlay-end o))
(vm-shrunken-headers 'toggle)
(widen)))))
(defun vm-shrunken-headers-get-overlays (start &optional end)
(let ((o-list (if end
(overlays-in start end)
(overlays-at start))))
(setq o-list (mapcar (lambda (o)
(if (overlay-get o 'vm-shrunken-headers)
o
nil))
o-list)
o-list (delete nil o-list))))
;;;###autoload
(defun vm-shrunken-headers (&optional toggle)
"Hide or show headers which occupy more than one line.
Well, one might do it more precisely with only some headers,
but it is sufficient for me!
If the optional argument TOGGLE, then hiding is toggled.
The face used for the visible hidden regions is `vm-shrunken-headers-face' and
the keymap used within that region is `vm-shrunken-headers-keymap'."
(interactive "P")
(save-excursion
(let (headers-start headers-end start end o shrunken modified)
(if (equal major-mode 'vm-summary-mode)
(if (and (boundp 'vm-mail-buffer) (symbol-value 'vm-mail-buffer))
(set-buffer (symbol-value 'vm-mail-buffer))))
(if (equal major-mode 'vm-mode)
(if vm-presentation-buffer
(set-buffer vm-presentation-buffer)))
;; We cannot use the default functions (vm-headers-of, ...) since
;; we might also work within a presentation buffer.
(setq modified (buffer-modified-p))
(goto-char (point-min))
(setq headers-start (point-min)
headers-end (or (re-search-forward "\n\n" (point-max) t)
(point-max)))
(cond (toggle
(setq shrunken (vm-shrunken-headers-get-overlays
headers-start headers-end))
(while shrunken
(setq o (car shrunken))
(let ((w (overlay-get o 'vm-shrunken-headers-widget)))
(widget-toggle-action w))
(overlay-put o 'invisible (not (overlay-get o 'invisible)))
(setq shrunken (cdr shrunken))))
(t
(goto-char headers-start)
(while (re-search-forward "^\\(\\s-+.*\n\\)+" headers-end t)
(setq start (match-beginning 0) end (match-end 0))
(setq o (vm-shrunken-headers-get-overlays start end))
(if o
(setq o (car o))
(setq o (make-overlay (1- start) end))
(overlay-put o 'face 'vm-shrunken-headers-face)
(overlay-put o 'mouse-face 'highlight)
(overlay-put o 'local-map vm-shrunken-headers-keymap)
(overlay-put o 'priority 10000)
;; make a new overlay for the invisibility, the other one we
;; made before is just for highlighting and key-bindings ...
(setq o (make-overlay start end))
(overlay-put o 'vm-shrunken-headers t)
(goto-char (1- start))
(overlay-put o 'start-closed nil)
(overlay-put o 'vm-shrunken-headers-widget
(widget-create 'visibility
:action
'vm-shrunken-headers-toggle-this-widget))
(overlay-put o 'invisible t)))))
(set-buffer-modified-p modified)
(goto-char (point-min)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-assimilate-html-command "striptags"
"*Command/function which should be called for stripping tags.
When this is a string, then it is a command which is fed with the
html and which should return the text.
Otherwise it should be a Lisp function which performs the stripping of
the tags.
I prefer to use lynx for this job:
#!/bin/tcsh
tmpfile=/tmp/$USER-stripttags.html
cat > $tmpfile
lynx -force_html -dump $tmpfile
rm $tmpfile"
:group 'vm-rfaddons
:type '(string))
(defcustom vm-assimilate-html-mixed t
"*Non-nil values cause messages to be assimilated as text/mixed.
Otherwise they will be assimilated into a text/alternative message."
:group 'vm-rfaddons
:type '(boolean))
;;;###autoload
(defun vm-assimilate-html-message (&optional plain)
"Try to assimilate a message which is only in html format.
When called with a prefix argument then it will replace the message
with the PLAIN text version otherwise it will create a text/mixed or
text/alternative message depending on the value of the variable
`vm-assimilate-html-mixed'."
(interactive "P")
(let ((vm-frame-per-edit nil)
(boundary (concat (vm-mime-make-multipart-boundary)))
(case-fold-search t)
(qp-encoded nil)
body start end charset)
(vm-edit-message)
(goto-char (point-min))
(goto-char (re-search-forward "\n\n"))
(if (re-search-backward "^Content-Type:\\s-*\\(text/html\\)\\(.*\n?\\(^\\s-.*\\)*\\)$"
(point-min) t)
(progn (setq charset (buffer-substring (match-beginning 2)
(match-end 2)))
(if plain
(progn (delete-region (match-beginning 1) (match-end 1))
(goto-char (match-beginning 1))
(insert "text/plain"))
(progn (delete-region (match-beginning 1) (match-end 2))
(goto-char (match-beginning 1))
(insert "multipart/"
(if vm-assimilate-html-mixed "mixed"
"alternative") ";\n"
" boundary=\"" boundary "\""))))
(progn
(kill-this-buffer)
(error "This message seems to be no HTML only message!")))
(goto-char (point-min))
(goto-char (re-search-forward "\n\n"))
(setq qp-encoded (re-search-backward "^Content-Transfer-Encoding: quoted-printable"
(point-min) t))
(goto-char (re-search-forward "\n\n"))
(if plain
(progn (setq body (point)
start (point))
(goto-char (point-max))
(setq end (point)))
(progn (insert "--" boundary "\n"
"Content-Type: text/plain" charset "\n"
"Content-Transfer-Encoding: 8bit\n\n")
(setq body (point))
(insert "\n--" boundary "\n"
"Content-Type: text/html" charset "\n"
"Content-Transfer-Encoding: 8bit\n\n")
(setq start (point-marker))
(goto-char (point-max))
(setq end (point-marker))
(insert "--" boundary "--\n")))
(if qp-encoded (vm-mime-qp-decode-region start end))
(goto-char body)
(if (stringp vm-assimilate-html-command)
(call-process-region start end vm-assimilate-html-command
plain t)
(funcall vm-assimilate-html-command start end plain))
(vm-edit-message-end)
))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Original Authors: Edwin Huffstutler & John Reynolds
(defcustom vm-mail-mode-citation-kill-regexp-alist
(list
;; empty lines multi quoted
(cons (concat "^\\(" vm-included-text-prefix "[|{}>:;][^\n]*\n\\)+")
"[...]\n")
;; empty quoted starting/ending lines
(cons (concat "^\\([^|{}>:;]+.*\\)\n"
vm-included-text-prefix "[|{}>:;]*$")
"\\1")
(cons (concat "^" vm-included-text-prefix "[|{}>:;]*\n"
"\\([^|{}>:;]\\)")
"\\1")
;; empty quoted multi lines
(cons (concat "^" vm-included-text-prefix "[|{}>:;]*\\s-*\n\\("
vm-included-text-prefix "[|{}>:;]*\\s-*\n\\)+")
(concat vm-included-text-prefix "\n"))
;; empty lines
(cons "\n\n\n+"
"\n\n")
;; signature & -----Ursprngliche Nachricht-----
(cons (concat "^" vm-included-text-prefix "--[^\n]*\n"
"\\(" vm-included-text-prefix "[^\n]*\n\\)+")
"\n")
(cons (concat "^" vm-included-text-prefix "________[^\n]*\n"
"\\(" vm-included-text-prefix "[^\n]*\n\\)+")
"\n")
)
"*Regexp replacement pairs for cleaning of replies."
:group 'vm-rfaddons
:type '(repeat (cons :tag "Kill Definition"
(regexp :tag "Regexp")
(string :tag "Replacement"))))
(defun vm-mail-mode-citation-clean-up ()
"Remove doubly-cited text and extra lines in a mail message."
(interactive)
(save-excursion
(mail-text)
(let ((re-alist vm-mail-mode-citation-kill-regexp-alist)
(pmin (point))
re subst)
(while re-alist
(goto-char pmin)
(setq re (caar re-alist)
subst (cdar re-alist))
(while (re-search-forward re (point-max) t)
(replace-match subst))
(setq re-alist (cdr re-alist))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-summary-attachment-label "$"
"*Label added to messages containing an attachments."
:group 'vm-rfaddons
:type '(choice (string) (const :tag "No Label" nil)))
;;;###autoload
(defun vm-summary-attachment-label (msg)
"Indicate if there are attachments in a message.
The summary displays a `vm-summary-attachment-indicator', which is a '$' by
default. In order to get this working, add a \"%1UA\" to your
`vm-summary-format' and call `vm-fix-my-summary'.
As a sideeffect a label can be added to new messages. Setting
`vm-summary-attachment-label' to a string (the label) enables this.
If you just want the label, then set `vm-summary-attachment-indicator' to nil
and add an \"%0UA\" to your `vm-summary-format'."
(let ((attachments 0))
(setq msg (vm-real-message-of msg))
(vm-mime-action-on-all-attachments
nil
(lambda (msg layout type file)
(setq attachments (1+ attachments)))
vm-summary-attachment-mime-types
vm-summary-attachment-mime-type-exceptions
(list msg)
t)
(when (and (> attachments 0 )
(vm-new-flag msg)
(or (not (vm-labels-of msg))
(not (member vm-summary-attachment-label
(vm-labels-of msg)))))
(vm-set-labels msg (append (list vm-summary-attachment-label)
(vm-labels-of msg))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun vm-delete-quit ()
"Delete mails and quit. Expunge only if it's not the primary inbox."
(interactive)
(save-excursion
(vm-select-folder-buffer-and-validate 0 (vm-interactive-p))
(if (and buffer-file-name
(string-match (regexp-quote vm-primary-inbox) buffer-file-name))
(message "No auto-expunge for folder `%s'" buffer-file-name)
(condition-case nil
(vm-expunge-folder)
(error nil)))
(vm-quit)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun vm-mail-mode-install-open-line ()
"Install the open-line hooks for `vm-mail-mode'.
Add this to `vm-mail-mode-hook'."
;; these are not local even when using add-hook, so we make them local
(vm-make-local-hook 'before-change-functions)
(vm-make-local-hook 'after-change-functions)
(add-hook 'before-change-functions 'vm-mail-mode-open-line nil t)
(add-hook 'after-change-functions 'vm-mail-mode-open-line nil t))
(defvar vm-mail-mode-open-line nil
"Flag used by `vm-mail-mode-open-line'.")
(defcustom vm-mail-mode-open-line-regexp "[ \t]*>"
"Regexp matching prefix of quoted text at line start.")
(defun vm-mail-mode-open-line (start end &optional length)
"Opens a line when inserting into the region of a reply.
Insert newlines before and after an insert where necessary and does a cleanup
of empty lines which have been quoted."
(if (= start end)
(save-excursion
(beginning-of-line)
(setq vm-mail-mode-open-line
(if (and (eq this-command 'self-insert-command)
(looking-at (concat "^"
vm-mail-mode-open-line-regexp)))
(if (< (point) start) (point) start))))
(if (and length (= length 0) vm-mail-mode-open-line)
(let (start-mark end-mark)
(save-excursion
(if (< vm-mail-mode-open-line start)
(progn
(insert "\n\n" vm-included-text-prefix)
(setq end-mark (point-marker))
(goto-char start)
(setq start-mark (point-marker))
(insert "\n\n"))
(if (looking-at (concat "\\("
vm-mail-mode-open-line-regexp
"\\)+[ \t]*\n"))
(replace-match ""))
(insert "\n\n")
(setq end-mark (point-marker))
(goto-char start)
(setq start-mark (point-marker))
(insert "\n"))
;; clean leading and trailing garbage
(let ((iq (concat "^" vm-mail-mode-open-line-regexp
"[> \t]*\n")))
(save-excursion
(goto-char start-mark)
(beginning-of-line)
(while (looking-at "^$") (forward-line -1))
; (message "1%s<" (buffer-substring (point) (save-excursion (end-of-line) (point))))
(while (looking-at iq)
(replace-match "")
(forward-line -1))
(goto-char end-mark)
(beginning-of-line)
(while (looking-at "^$") (forward-line 1))
; (message "3%s<" (buffer-substring (point) (save-excursion (end-of-line) (point))))
(while (looking-at iq)
(replace-match "")))))
(setq vm-mail-mode-open-line nil)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-mail-mode-elide-reply-region "[...]\n"
"*String which is used as replacement for elided text."
:group 'vm-rfaddons
:type '(string))
;;;###autoload
(defun vm-mail-mode-elide-reply-region (b e)
"Replace marked region or current line with `vm-mail-elide-reply-region'.
B and E are the beginning and end of the marked region or the current line."
(interactive (if (mark)
(if (< (mark) (point))
(list (mark) (point))
(list (point) (mark)))
(list (save-excursion (beginning-of-line) (point))
(save-excursion (end-of-line) (point)))))
(if (eobp) (insert "\n"))
(if (mark) (delete-region b e) (delete-region b (+ 1 e)))
(insert vm-mail-mode-elide-reply-region))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun vm-save-everything ()
"Save all VM folder buffers, BBDB and newsrc if GNUS is started."
(interactive)
(save-excursion
(let ((folders (vm-folder-buffers)))
(while folders
(set-buffer (car folders))
(message "Saving <%S>" (car folders))
(vm-save-folder)
(setq folders (cdr folders))))
(if (fboundp 'bbdb-save-db)
(bbdb-save-db)))
(if (fboundp 'gnus-group-save-newsrc)
(gnus-group-save-newsrc)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun vm-get-all-new-mail ()
"Get mail for all opened VM folders."
(interactive)
(save-excursion
(let ((buffers (buffer-list)))
(while buffers
(set-buffer (car buffers))
(if (eq major-mode 'vm-mode)
(vm-get-new-mail))
(setq buffers (cdr buffers))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun vm-save-message-preview (file)
"Save preview of a message in FILE.
It saves the decoded message and not the raw message like `vm-save-message'"
(interactive
;; protect value of last-command
(let ((last-command last-command)
(this-command this-command)
filename)
(save-current-buffer
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(setq filename
(vm-read-file-name
(if vm-last-written-file
(format "Write text to file: (default %s) "
vm-last-written-file)
"Write text to file: ")
nil vm-last-written-file nil))
(if (and (file-exists-p filename)
(not (yes-or-no-p (format "Overwrite '%s'? " filename))))
(error "Aborting `vm-save-message-preview'."))
(list filename))))
(save-excursion
(vm-follow-summary-cursor)
(vm-select-folder-buffer-and-validate 1 (vm-interactive-p))
(if (and (boundp 'vm-mail-buffer) (symbol-value 'vm-mail-buffer))
(set-buffer (symbol-value 'vm-mail-buffer))
(if vm-presentation-buffer
(set-buffer vm-presentation-buffer)))
(write-region (point-min) (point-max) file)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This code is now obsolete. VM has built-in facilities for taking
;; actions on attachments. USR, 2010-01-05
;; Subject: Re: How to Delete an attachment?
;; Newsgroups: gnu.emacs.vm.info
;; Date: 05 Oct 1999 11:09:19 -0400
;; Organization: Road Runner
;; From: Dave Bakhash
(defun vm-mime-take-action-on-attachment (action)
"Do something with the MIME attachment at point."
(interactive
(list (vm-read-string "action: "
'("save-to-file"
"delete"
"display-as-ascii"
"pipe-to-command")
nil)))
(vm-mime-run-display-function-at-point
(cond ((string= action "save-to-file")
'vm-mime-send-body-to-file)
((string= action "display-as-ascii")
'vm-mime-display-body-as-text)
((string= action "delete")
(vm-delete-mime-object))
((string= action "pipe-to-command")
'vm-mime-pipe-body-to-queried-command-discard-output))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This functionality has now been integrated into VM core. USR, 2011-01-30
(defvaralias 'vm-mime-display-internal-multipart/mixed-separator
'vm-mime-parts-display-separator)
(make-obsolete-variable 'vm-mime-display-internal-multipart/mixed-separator
'vm-mime-parts-display-separator
"8.2.0")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;###autoload
(defun vm-assimilate-outlook-message ()
"Assimilate a message which has been forwarded by MS Outlook.
You will need vm-pine.el in order to get this work."
(interactive)
(vm-continue-postponed-message t)
(let ((pm (point-max)))
(goto-char (point-min))
(if (re-search-forward "^.*\\(-----Urspr[u]ngliche Nachricht-----\\|-----Original Message-----\\)\n" pm)
(delete-region 1 (match-end 0)))
;; remove the quotes from the forwarded message
(while (re-search-forward "^> ?" pm t)
(replace-match ""))
(goto-char (point-min))
;; rewrite headers
(while (re-search-forward "^\\(Von\\|From\\):[ \t]*\\(.+\\) *\\[\\(SMTP\\|mailto\\):\\(.+\\)\\].*" pm t)
(replace-match "From: \\2 <\\4>"))
(while (re-search-forward "^\\(Gesendet[^:]*\\|Sent\\):[ \t]*\\(...\\).*, \\([0-9]+\\)\\. \\(...\\)[a-z]+[ \t]*\\(.*\\)" pm t)
(replace-match "Date: \\3 \\4 \\5"))
(while (re-search-forward "^\\(An\\|To\\):[ \t]*\\(.*\\)$" pm t)
(replace-match "To: \\2"))
(while (re-search-forward "^\\(Betreff\\|Subject\\):[ \t]*\\(.*\\)$" pm t)
(replace-match "Subject: \\2"))
(goto-char (point-min))
;; insert mail header separator
(re-search-forward "^$" pm)
(goto-char (match-end 0))
(insert mail-header-separator "\n")
;; and put it back into the source folder
(vm-postpone-message)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Highlighting faces
;;;###autoload
(defun vm-install-rf-faces ()
(make-face 'message-url)
(custom-set-faces
'(message-url
((t (:foreground "blue" :bold t))))
'(message-headers
((t (:foreground "blue" :bold t))))
'(message-cited-text
((t (:foreground "red3"))))
'(message-header-contents
((((type x)) (:foreground "green3"))))
'(message-highlighted-header-contents
((((type x)) (:bold t))
(t (:bold t))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Well I like to have a different comment style a provided as default.
;; I'd like to have blank lines also prefixed by a comment char.
;; I overwrite the standard function by a slightly different version.
;;;###autoload
(defun vm-mail-mode-comment-region (beg end &optional arg)
"Comment or uncomment each line in the region BEG to END.
With just a non-nil prefix ARG, uncomment each line in region.
Numeric prefix arg ARG means use ARG comment characters.
If ARG is negative, delete that many comment characters instead.
Comments are terminated on each line, even for syntax in which newline does
not end the comment. Blank lines do not get comments."
;; if someone wants it to only put a comment-start at the beginning and
;; comment-end at the end then typing it, C-x C-x, closing it, C-x C-x
;; is easy enough. No option is made here for other than commenting
;; every line.
(interactive "r\nP")
(or comment-start (error "No comment syntax is defined"))
(if (> beg end) (let (mid) (setq mid beg beg end end mid)))
(save-excursion
(save-restriction
(let ((cs comment-start) (ce comment-end)
numarg)
(if (consp arg) (setq numarg t)
(setq numarg (prefix-numeric-value arg))
;; For positive arg > 1, replicate the comment delims now,
;; then insert the replicated strings just once.
(while (> numarg 1)
(setq cs (concat cs comment-start)
ce (concat ce comment-end))
(setq numarg (1- numarg))))
;; Loop over all lines from BEG to END.
(narrow-to-region beg end)
(goto-char beg)
(while (not (eobp))
(if (or (eq numarg t) (< numarg 0))
(progn
;; Delete comment start from beginning of line.
(if (eq numarg t)
(while (looking-at (regexp-quote cs))
(delete-char (length cs)))
(let ((count numarg))
(while (and (> 1 (setq count (1+ count)))
(looking-at (regexp-quote cs)))
(delete-char (length cs)))))
;; Delete comment end from end of line.
(if (string= "" ce)
nil
(if (eq numarg t)
(progn
(end-of-line)
;; This is questionable if comment-end ends in
;; whitespace. That is pretty brain-damaged,
;; though.
(skip-chars-backward " \t")
(if (and (>= (- (point) (point-min)) (length ce))
(save-excursion
(backward-char (length ce))
(looking-at (regexp-quote ce))))
(delete-char (- (length ce)))))
(let ((count numarg))
(while (> 1 (setq count (1+ count)))
(end-of-line)
;; This is questionable if comment-end ends in
;; whitespace. That is pretty brain-damaged though
(skip-chars-backward " \t")
(save-excursion
(backward-char (length ce))
(if (looking-at (regexp-quote ce))
(delete-char (length ce))))))))
(forward-line 1))
;; Insert at beginning and at end.
(progn
(insert cs)
(if (string= "" ce) ()
(end-of-line)
(insert ce)))
(search-forward "\n" nil 'move)))))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Sometimes it's handy to fake a date.
;; I overwrite the standard function by a slightly different version.
(defcustom vm-mail-mode-fake-date-p t
"*Non-nil means `vm-mail-mode-insert-date-maybe' will not overwrite a existing date header."
:group 'vm-rfaddons
:type '(boolean))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun vm-isearch-presentation ()
"Switches to the Presentation buffer and starts isearch."
(interactive)
(vm-select-folder-buffer-and-validate 0 (vm-interactive-p))
(let ((target (or vm-presentation-buffer (current-buffer))))
(if (get-buffer-window-list target)
(select-window (car (get-buffer-window-list target)))
(switch-to-buffer target)))
(isearch-forward))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defcustom vm-delete-message-action "vm-next-message"
"Command to do after deleting a message."
:group 'vm-rfaddons)
;;;###autoload
(defun vm-delete-message-action (&optional arg)
"Delete current message and perform some action after it, e.g. move to next.
Call it with a prefix ARG to change the action."
(interactive "P")
(when (and (listp arg) (not (null arg)))
(setq vm-delete-message-action
(completing-read "After delete: "
'(("vm-rmail-up")
("vm-rmail-down")
("vm-previous-message")
("vm-previous-unread-message")
("vm-next-message")
("vm-next-unread-message")
("nothing"))))
(message "action after delete is %S" vm-delete-message-action))
(vm-toggle-deleted (prefix-numeric-value arg))
(let ((fun (intern vm-delete-message-action)))
(if (functionp fun)
(call-interactively fun))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defvar vm-smtp-server-online-p-cache nil
"Alist of cached (server online-status) entries.")
(defun vm-smtp-server-online-p (&optional host port)
"Opens SMTP connection to see if the server HOST on PORT is online.
Results are cached in `smtp-server-online-p-cache' for non interactive
calls."
(interactive)
(save-excursion
(let (online-p server hp)
(if (null host)
(setq server (if (functionp 'esmtpmail-via-smtp-server)
(esmtpmail-via-smtp-server)
(smtpmail-via-smtp-server))
host (car server)
port (cadr server)))
(setq port (or port 25)
hp (format "%s:%s" host port))
(if (vm-interactive-p)
(setq vm-smtp-server-online-p-cache nil))
(if (assoc hp vm-smtp-server-online-p-cache)
;; take cache content
(setq online-p (cadr (assoc hp vm-smtp-server-online-p-cache))
hp (concat hp " (cached)"))
;; do the check
(let* ((n (format " *SMTP server check %s:%s *" host port))
(buf (get-buffer n))
(stream nil))
(if buf (kill-buffer buf))
(condition-case err
(progn
(setq stream (open-network-stream n n host port))
(setq online-p t))
(error
(message (cadr err))
(if (and (get-buffer n)
(< 0 (length (save-excursion
(set-buffer (get-buffer n))
(buffer-substring (point-min) (point-max))))))
(pop-to-buffer n))))
(if stream (delete-process stream))
(when (setq buf (get-buffer n))
(set-buffer buf)
(message "%S" (buffer-substring (point-min) (point-max)))
(goto-char (point-min))
(when (re-search-forward
"gethostbyname: Resource temporarily unavailable"
(point-max) t)
(setq online-p nil))))
;; add to cache for further lookups
(add-to-list 'vm-smtp-server-online-p-cache (list hp online-p)))
(if (vm-interactive-p)
(message "SMTP server %s is %s" hp
(if online-p "online" "offline")))
online-p)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun vm-mail-send-or-feed-it ()
"Sends a message if the SMTP server is online, queues it otherwise."
(if (not (vm-smtp-server-online-p))
(feedmail-send-it)
(if (functionp 'esmtpmail-send-it)
(esmtpmail-send-it)
(smtpmail-send-it))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Contributed by Alley Stoughton
;; gnu.emacs.vm.info, 2011-02-26
(defun vm-toggle-best-mime ()
"Toggle between best-internal and best mime decoding modes"
(interactive)
(if (eq vm-mime-alternative-show-method 'best-internal)
(progn
(vm-decode-mime-message 'undecoded)
(setq vm-mime-alternative-show-method 'best)
(vm-decode-mime-message 'decoded)
(message "using best MIME decoding"))
(progn
(vm-decode-mime-message 'undecoded)
(setq vm-mime-alternative-show-method 'best-internal)
(vm-decode-mime-message 'decoded)
(message "using best internal MIME decoding"))))
;;; vm-rfaddons.el ends here
|