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
|
;;; Mailing, forwarding, and replying commands for VM
;;; Copyright (C) 1989-1997 Kyle E. Jones
;;;
;;; 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 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.
(provide 'vm-reply)
(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 mp in-reply-to references tmp tmp2 newsgroups)
(setq mp mlist)
(while mp
(cond
((eq mlist mp)
(cond ((setq to
(let ((reply-to
(vm-get-header-contents (car mp) "Reply-To:"
", ")))
(if (vm-ignored-reply-to reply-to)
nil
reply-to ))))
((setq to (vm-get-header-contents (car mp) "From:" ", ")))
;; bad, but better than nothing for some
((setq to (vm-grok-From_-author (car mp))))
(t (error "No From: or Reply-To: header in message")))
(setq subject (vm-get-header-contents (car mp) "Subject:")
in-reply-to
(and vm-in-reply-to-format
(let ((vm-summary-uninteresting-senders nil))
(vm-sprintf 'vm-in-reply-to-format (car mp))))
in-reply-to (and (not (equal "" in-reply-to)) in-reply-to))
(and subject vm-reply-subject-prefix
(let ((case-fold-search t))
(not
(equal
(string-match (regexp-quote vm-reply-subject-prefix)
subject)
0)))
(setq subject (concat vm-reply-subject-prefix subject))))
(t (cond ((setq tmp (vm-get-header-contents (car mp) "Reply-To:"
", "))
(setq to (concat to "," tmp)))
((setq tmp (vm-get-header-contents (car mp) "From:"
", "))
(setq to (concat to "," tmp)))
;; bad, but better than nothing for some
((setq tmp (vm-grok-From_-author (car mp)))
(setq to (concat 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 (vm-get-header-contents (car mp) "References:" " ")
(cons (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 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 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 )))
(defun vm-mail-yank-default (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 vm-included-text-attribution-format
(let ((vm-summary-uninteresting-senders nil))
(insert (vm-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)))))
(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-int 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))))
(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-int 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)
(save-restriction
(widen)
(save-excursion
(if (vectorp (vm-mm-layout message))
(let* ((o (vm-mm-layout message))
(type (car (vm-mm-layout-type o)))
parts)
(vm-insert-region-from-buffer (vm-buffer-of message)
(vm-headers-of message)
(vm-text-of message))
(cond ((vm-mime-types-match "multipart" type)
(setq parts (copy-sequence (vm-mm-layout-parts o))))
(t (setq parts (list o))))
(while parts
(cond ((vm-mime-text-type-layout-p (car parts))
(if (cond ((vm-mime-types-match
"text/enriched"
(car (vm-mm-layout-type (car parts))))
(vm-mime-display-internal-text/enriched
(car parts)))
;; no text/html for now
;; ((vm-mime-types-match
;; "text/html"
;; (car (vm-mm-layout-type (car parts))))
;; (vm-mime-display-internal-text/html
;; (car parts)))
((vm-mime-display-internal-text/plain
(car parts) t)))
nil
;; charset problems probably
;; just dump the raw bits
(vm-mime-insert-mime-body (car parts))
(vm-mime-transfer-decode-region (car parts)
start (point)))
(setq parts (cdr parts)))
((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))))
(t (setq parts (cdr parts)))))
(setq end (point-marker)))
(set-buffer (vm-buffer-of message))
(save-restriction
(widen)
(append-to-buffer b (vm-headers-of message)
(vm-text-end-of message))
(setq end (vm-marker (+ start (- (vm-text-end-of message)
(vm-headers-of message))) b)))))
;; 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)
(current-buffer)))
(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))))))
(defun vm-mail-send-and-exit (arg)
"Just like mail-send-and-exit except that VM flags the appropriate message(s)
as having been replied to, if appropriate."
(interactive "P")
(vm-check-for-killed-folder)
(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)
;; keep this buffer if the user demands it
(if (memq buffer vm-kept-mail-buffers)
(setq vm-kept-mail-buffers
(delq buffer vm-kept-mail-buffers)))
(setq vm-kept-mail-buffers (cons buffer vm-kept-mail-buffers)
vm-kept-mail-buffers (vm-delete 'buffer-name
vm-kept-mail-buffers t))
(if (not (eq vm-keep-sent-messages t))
(let ((extras (nthcdr (or vm-keep-sent-messages 0)
vm-kept-mail-buffers)))
(mapcar (function
(lambda (b)
(and (buffer-name b)
(not (buffer-modified-p b))
(kill-buffer b))))
extras)
(and vm-kept-mail-buffers extras
(setcdr (memq (car extras) vm-kept-mail-buffers) nil)))))
(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-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.")))
;; insert a Date header if it's not already present.
(if (null (vm-mail-mode-get-header-contents "Date:"))
(save-restriction
(save-excursion
(let* ((timezone (car (current-time-zone)))
(hour (/ timezone 3600))
(min (/ (- timezone (* hour 3600)) 60)))
(widen)
(goto-char (point-min))
(insert (format-time-string "Date: %a, %e %b %Y %H:%M:%S")
(format " %s%02d%02d"
(if (< timezone 0) "-" "+")
(abs hour)
(abs min))
(format-time-string " (%Z)")
"\n")))))
;; 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))
(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))))
(defun vm-mail-mode-get-header-contents (header-name-regexp)
(let ((contents nil)
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 ))))))
(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 (= ?* (aref (buffer-name) 0)))
(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))))
(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))
(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))
(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))
(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))
(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)))
(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-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 (generate-new-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"))
((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 nil 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))))
(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))
(mail-position-on-field "Resent-To")
(setq default-directory dir)))
(run-hooks 'vm-resend-bounced-message-hook)
(run-hooks 'vm-mail-mode-hook))
(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: " (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))))
(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)))
(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 (generate-new-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)))
(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-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))
(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)))
(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)))
(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)))
(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"))))
(defun vm-mail-to-mailto-url (url)
(let ((address (car (vm-parse url "^mailto:\\(.+\\)"))))
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-mail-internal nil address)
(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)
(defun vm-mail-internal
(&optional buffer-name to subject in-reply-to cc references newsgroups)
(let ((folder-buffer nil))
(if (memq major-mode '(vm-mode vm-virtual-mode))
(setq folder-buffer (current-buffer)))
(set-buffer (generate-new-buffer (or buffer-name "*VM-mail*")))
;; 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)
(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-popup-menu-on-mouse-3
(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"))
(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 "
(if vm-fsfemacs-p "Emacs " "")
emacs-version "\n")
(let ((time (current-time)))
(insert (format "Message-ID: <%d.%d.%d.%d@%s>\n"
(car time) (nth 1 time) (nth 2 time) (random 1000000)
(system-name))))
;; 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: " (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")
(cond ((stringp mail-signature)
(save-excursion
(insert mail-signature)))
((eq mail-signature t)
(save-excursion
(insert "\n-- \n")
(insert-file-contents (or (and (boundp 'mail-signature-file)
(stringp mail-signature-file)
mail-signature-file)
"~/.signature")))))
;; 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"))
(run-hooks 'mail-setup-hook)))
(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)))
(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)))
(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)))
(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)))
(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)))
(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)))
(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)))
(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)))
(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)))
(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)))
(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)))
(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)))
|