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
|
;;; Entry points for VM
;;; Copyright (C) 1994-1998 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-startup)
;;;###autoload
(defun vm (&optional folder read-only)
"Read mail under Emacs.
Optional first arg FOLDER specifies the folder to visit. It defaults
to the value of vm-primary-inbox. The folder buffer is put into VM
mode, a major mode for reading mail.
Prefix arg or optional second arg READ-ONLY non-nil indicates
that the folder should be considered read only. No attribute
changes, message additions or deletions will be allowed in the
visited folder.
Visiting the primary inbox causes any contents of the system mailbox to
be moved and appended to the resulting buffer.
All the messages can be read by repeatedly pressing SPC. Use `n'ext and
`p'revious to move about in the folder. Messages are marked for
deletion with `d', and saved to another folder with `s'. Quitting VM
with `q' expunges deleted messages and saves the buffered folder to
disk.
See the documentation for vm-mode for more information."
(interactive (list nil current-prefix-arg))
(vm-session-initialization)
;; set inhibit-local-variables non-nil to protect
;; against letter bombs.
;; set enable-local-variables to nil for newer Emacses
(catch 'done
(let ((full-startup (not (bufferp folder)))
(did-read-index-file nil)
folder-buffer first-time totals-blurb
preserve-auto-save-file)
(setq folder-buffer
(if (bufferp folder)
folder
(let ((file (or folder (expand-file-name vm-primary-inbox
vm-folder-directory))))
(if (file-directory-p file)
;; MH code perhaps... ?
(error "%s is a directory" file)
(or (vm-get-file-buffer file)
(let ((default-directory
(or (and vm-folder-directory
(expand-file-name vm-folder-directory))
default-directory))
(inhibit-local-variables t)
(enable-local-variables nil)
;; for XEmacs/Mule
(coding-system-for-read 'no-conversion))
(message "Reading %s..." file)
(prog1 (find-file-noselect file)
;; update folder history
(let ((item (or folder vm-primary-inbox)))
(if (not (equal item (car vm-folder-history)))
(setq vm-folder-history
(cons item vm-folder-history))))
(message "Reading %s... done" file))))))))
(set-buffer folder-buffer)
;; for XEmacs/MULE
;;
;; If the file coding system is not a no-conversion variant,
;; make it so by encoding all the text, then setting
;; the file coding system and decoding it.
;; This is only possible if a file is visited and then vm-mode
;; is run on it afterwards.
(defvar buffer-file-coding-system)
(if (and vm-xemacs-mule-p
(not (eq (get-coding-system buffer-file-coding-system)
(get-coding-system 'no-conversion-unix)))
(not (eq (get-coding-system buffer-file-coding-system)
(get-coding-system 'no-conversion-dos)))
(not (eq (get-coding-system buffer-file-coding-system)
(get-coding-system 'no-conversion-mac)))
(not (eq (get-coding-system buffer-file-coding-system)
(get-coding-system 'binary))))
(let ((buffer-read-only nil)
(omodified (buffer-modified-p)))
(unwind-protect
(progn
(encode-coding-region (point-min) (point-max)
buffer-file-coding-system)
(set-buffer-file-coding-system 'no-conversion nil)
(decode-coding-region (point-min) (point-max)
buffer-file-coding-system))
(set-buffer-modified-p omodified))))
(vm-check-for-killed-summary)
(vm-check-for-killed-presentation)
;; If the buffer's not modified then we know that there can be no
;; messages in the folder that are not on disk.
(or (buffer-modified-p) (setq vm-messages-not-on-disk 0))
(setq first-time (not (eq major-mode 'vm-mode))
preserve-auto-save-file (and buffer-file-name
(not (buffer-modified-p))
(file-newer-than-file-p
(make-auto-save-file-name)
buffer-file-name)))
;; Force the folder to be read only if the auto
;; save file contains information the user might not
;; want overwritten, i.e. recover-file might be
;; desired. What we want to avoid is an auto-save.
;; Making the folder read only will keep
;; subsequent actions from modifying the buffer in a
;; way that triggers an auto save.
;;
;; Also force the folder read-only if it was read only and
;; not already in vm-mode, since there's probably a good
;; reason for this.
(setq vm-folder-read-only (or preserve-auto-save-file read-only
(default-value 'vm-folder-read-only)
(and first-time buffer-read-only)))
;; If this is not a VM mode buffer then some initialization
;; needs to be done
(if first-time
(progn
(buffer-disable-undo (current-buffer))
(abbrev-mode 0)
(auto-fill-mode 0)
(vm-mode-internal)
;; If the buffer is modified we don't know if the
;; folder format has been changed to be different
;; from index file, so don't read the index file in
;; that case.
(if (not (buffer-modified-p))
(setq did-read-index-file (vm-read-index-file-maybe)))))
(vm-assimilate-new-messages nil (not did-read-index-file) nil)
(if (and first-time (not did-read-index-file))
(progn
(vm-gobble-visible-header-variables)
(vm-gobble-bookmark)
(vm-gobble-pop-retrieved)
(vm-gobble-summary)
(vm-gobble-labels)))
(if first-time
(vm-start-itimers-if-needed))
;; make a new frame if the user wants one. reuse an
;; existing frame that is showing this folder.
(if (and full-startup
;; this so that "emacs -f vm" doesn't create a frame.
this-command)
(apply 'vm-goto-new-folder-frame-maybe
(if folder '(folder) '(primary-folder folder))))
;; raise frame if requested and apply startup window
;; configuration.
(if full-startup
(let ((buffer-to-display (or vm-summary-buffer
vm-presentation-buffer
(current-buffer))))
(vm-display buffer-to-display buffer-to-display
(list this-command)
(list (or this-command 'vm) 'startup))
(if vm-raise-frame-at-startup
(vm-raise-frame))))
;; say this NOW, before the non-previewers read a message,
;; alter the new message count and confuse themselves.
(if full-startup
;; save blurb so we can repeat it later as necessary.
(setq totals-blurb (vm-emit-totals-blurb)))
(vm-thoughtfully-select-message)
(vm-update-summary-and-mode-line)
;; need to do this after any frame creation because the
;; toolbar sets frame-specific height and width specifiers.
(and (vm-toolbar-support-possible-p) vm-use-toolbar
(progn
(message "Initializing toolbar...")
(vm-toolbar-install-toolbar)
(message "Initializing toolbar... done")
(vm-toolbar-update-toolbar)))
(and vm-use-menus (vm-menu-support-possible-p)
(vm-menu-install-visited-folders-menu))
(if full-startup
(progn
(if (and (vm-should-generate-summary)
;; don't generate a summary if recover-file is
;; likely to happen, since recover-file does
;; nothing useful in a summary buffer.
(not preserve-auto-save-file))
(vm-summarize t nil))
;; raise the summary frame if the user wants frames
;; raised and if there is a summary frame.
(if (and vm-summary-buffer
vm-mutable-frames
vm-frame-per-summary
vm-raise-frame-at-startup)
(vm-raise-frame))
;; if vm-mutable-windows is nil, the startup
;; configuration can't be applied, so do
;; something to get a VM buffer on the screen
(if vm-mutable-windows
(vm-display nil nil (list this-command)
(list (or this-command 'vm) 'startup))
(save-excursion
(switch-to-buffer (or vm-summary-buffer
vm-presentation-buffer
(current-buffer)))))))
(if vm-message-list
(vm-preview-current-message))
(run-hooks 'vm-visit-folder-hook)
(if full-startup
(message totals-blurb))
;; Warn user about auto save file, if appropriate.
(if (and full-startup preserve-auto-save-file)
(message
(substitute-command-keys
"Auto save file is newer; consider \\[recover-file]. FOLDER IS READ ONLY.")))
;; if we're not doing a full startup or if doing more would
;; trash the auto save file that we need to preserve,
;; stop here.
(if (or (not full-startup) preserve-auto-save-file)
(throw 'done t))
(if (and vm-auto-get-new-mail
(not vm-block-new-mail)
(not vm-folder-read-only))
(progn
(message "Checking for new mail for %s..."
(or buffer-file-name (buffer-name)))
(if (and (vm-get-spooled-mail t) (vm-assimilate-new-messages t))
(progn
(setq totals-blurb (vm-emit-totals-blurb))
(if (vm-thoughtfully-select-message)
(vm-preview-current-message)
(vm-update-summary-and-mode-line))))
(message totals-blurb)))
;; Display copyright and copying info unless
;; user says no.
(if (and (interactive-p) (not vm-startup-message-displayed))
(progn
(vm-display-startup-message)
(if (not (input-pending-p))
(message totals-blurb)))))))
;;;###autoload
(defun vm-other-frame (&optional folder read-only)
"Like vm, but run in a newly created frame."
(interactive (list nil current-prefix-arg))
(vm-session-initialization)
(if (vm-multiple-frames-possible-p)
(if folder
(vm-goto-new-frame 'folder)
(vm-goto-new-frame 'primary-folder 'folder)))
(let ((vm-frame-per-folder nil)
(vm-search-other-frames nil))
(vm folder read-only))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-other-window (&optional folder read-only)
"Like vm, but run in a different window."
(interactive (list nil current-prefix-arg))
(vm-session-initialization)
(if (one-window-p t)
(split-window))
(other-window 1)
(let ((vm-frame-per-folder nil)
(vm-search-other-frames nil))
(vm folder read-only)))
(put 'vm-mode 'mode-class 'special)
;;;###autoload
(defun vm-mode (&optional read-only)
"Major mode for reading mail.
This is VM 6.43.
Commands:
h - summarize folder contents
C-t - toggle threads display
n - go to next message
p - go to previous message
N - like `n' but ignores skip-variable settings
P - like `p' but ignores skip-variable settings
M-n - go to next unread message
M-p - go to previous unread message
RET - go to numbered message (uses prefix arg or prompts in minibuffer)
TAB - go to last message seen
^ - go to parent of this message
M-s - incremental search through the folder
t - display hidden headers
SPC - expose message body or scroll forward a page
b - scroll backward a page
< - go to beginning of current message
> - go to end of current message
d - delete message, prefix arg deletes messages forward
C-d - delete message, prefix arg deletes messages backward
u - undelete
k - flag for deletion all messages with same subject as the current message
r - reply (only to the sender of the message)
R - reply with included text from the current message
M-r - extract and resend bounced message
f - followup (reply to all recipients of message)
F - followup with included text from the current message
z - forward the current message
m - send a message
B - resend the current message to another user.
c - continue composing the most recent message you were composing
@ - digestify and mail entire folder contents (the folder is not modified)
* - burst a digest into individual messages, and append and assimilate these
messages into the current folder.
G - sort messages by various keys
g - get any new mail that has arrived in the system mailbox
(new mail is appended to the disk and buffer copies of the
primary inbox.)
v - visit another mail folder
e - edit the current message
j - discard cached information about the current message
s - save current message in a folder (appends if folder already exists)
w - write current message to a file without its headers (appends if exists)
S - save entire folder to disk, does not expunge
A - save unfiled messages to their vm-auto-folder-alist specified folders
# - expunge deleted messages (without saving folder)
q - quit VM, deleted messages are not expunged, folder is
saved to disk if it is modified. new messages are changed
to be flagged as just unread.
x - exit VM with no change to the folder
M N - use marks; the next vm command will affect only marked messages
if it makes sense for the command to do so. These commands
apply and remove marks to messages:
M M - mark the current message
M U - unmark the current message
M m - mark all messages
M u - unmark all messages
M C - mark messages matched by a virtual folder selector
M c - unmark messages matched by a virtual folder selector
M T - mark thread tree rooted at the current message
M t - unmark thread tree rooted at the current message
M S - mark messages with the same subject as the current message
M s - unmark messages with the same subject as the current message
M A - mark messages with the same author as the current message
M a - unmark messages with the same author as the current message
M R - mark messages within the point/mark region in the summary
M r - unmark messages within the point/mark region in the summary
M V - toggle the marked-ness of all messages
M ? - partial help for mark commands
W S - save the current window configuration to a name
W D - delete a window configuration
W W - apply a configuration
W ? - help for the window configuration commands
V V - visit a virtual folder (must be defined in vm-virtual-folder-alist)
V C - create a virtual folder composed of a subset of the
current folder's messages.
V A - create a virtual folder containing all the messages in the current
folder with the same author as the current message.
V S - create a virtual folder containing all the messages in the current
folder with the same subject as the current message.
V X - apply the selectors of a named virtual folder to the
messages in the current folder and create a virtual folder
containing the selected messages.
V M - toggle whether this virtual folder's messages mirror the
underlying real messages' attributes.
V ? - help for virtual folder commands
C-_ - undo, special undo that retracts the most recent
changes in message attributes and labels. Expunges,
message edits, and saves cannot be undone. C-x u is
also bound to this command.
a - set message attributes
l a - add labels to message
l d - delete labels from message
L - reload your VM init file, ~/.vm
% - change a folder to another type
? - help
! - run a shell command
| - run a shell command with the current message as input
M-C - view conditions under which you may redistribute VM
M-W - view the details of VM's lack of a warranty
Use M-x vm-submit-bug-report to submit a bug report.
Variables:
vm-arrived-message-hook
vm-arrived-messages-hook
vm-auto-center-summary
vm-auto-decode-mime-messages
vm-auto-displayed-mime-content-types
vm-auto-folder-alist
vm-auto-folder-case-fold-search
vm-auto-get-new-mail
vm-auto-next-message
vm-berkeley-mail-compatibility
vm-burst-digest-messages-inherit-labels
vm-check-folder-types
vm-circular-folders
vm-confirm-new-folders
vm-confirm-quit
vm-convert-folder-types
vm-crash-box
vm-crash-box-suffix
vm-default-folder-type
vm-delete-after-archiving
vm-delete-after-bursting
vm-delete-after-saving
vm-delete-empty-folders
vm-digest-burst-type
vm-digest-center-preamble
vm-digest-preamble-format
vm-digest-send-type
vm-display-buffer-hook
vm-display-using-mime
vm-edit-message-hook
vm-folder-directory
vm-folder-read-only
vm-follow-summary-cursor
vm-forward-message-hook
vm-forwarded-headers
vm-forwarding-digest-type
vm-forwarding-subject-format
vm-frame-parameter-alist
vm-frame-per-completion
vm-frame-per-composition
vm-frame-per-edit
vm-frame-per-folder
vm-frame-per-help
vm-frame-per-summary
vm-highlighted-header-face
vm-highlighted-header-regexp
vm-honor-page-delimiters
vm-image-directory
vm-index-file-suffix
vm-in-reply-to-format
vm-included-text-attribution-format
vm-included-text-discard-header-regexp
vm-included-text-headers
vm-included-text-prefix
vm-invisible-header-regexp
vm-jump-to-new-messages
vm-jump-to-unread-messages
vm-keep-crash-boxes
vm-keep-sent-messages
vm-mail-check-interval
vm-mail-header-from
vm-mail-mode-hook
vm-make-crash-box-name
vm-make-spool-file-name
vm-mime-7bit-composition-charset
vm-mime-8bit-composition-charset
vm-mime-8bit-text-transfer-encoding
vm-mime-alternative-select-method
vm-mime-attachment-auto-type-alist
vm-mime-attachment-save-directory
vm-mime-avoid-folding-content-type
vm-mime-base64-decoder-program
vm-mime-base64-decoder-switches
vm-mime-base64-encoder-program
vm-mime-base64-encoder-switches
vm-mime-button-format-alist
vm-mime-button-face
vm-mime-charset-font-alist
vm-mime-default-face-charsets
vm-mime-digest-discard-header-regexp
vm-mime-digest-headers
vm-mime-display-function
vm-mime-external-content-types-alist
vm-mime-ignore-mime-version
vm-mime-internal-content-types
vm-mime-max-message-size
vm-mode-hook
vm-mosaic-program
vm-mosaic-program-switches
vm-move-after-deleting
vm-move-after-killing
vm-move-after-undeleting
vm-move-messages-physically
vm-mutable-frames
vm-mutable-windows
vm-netscape-program
vm-netscape-program-switches
vm-pop-auto-expunge-alist
vm-pop-bytes-per-session
vm-pop-expunge-after-retrieving
vm-pop-max-message-size
vm-pop-md5-program
vm-pop-messages-per-session
vm-popup-menu-on-mouse-3
vm-preferences-file
vm-preview-lines
vm-preview-read-messages
vm-primary-inbox
vm-quit-hook
vm-recognize-pop-maildrops
vm-reply-hook
vm-reply-ignored-addresses
vm-reply-ignored-reply-tos
vm-reply-subject-prefix
vm-resend-bounced-discard-header-regexp
vm-resend-bounced-headers
vm-resend-bounced-message-hook
vm-resend-discard-header-regexp
vm-resend-headers
vm-resend-message-hook
vm-retrieved-spooled-mail-hook
vm-rfc1153-digest-discard-header-regexp
vm-rfc1153-digest-headers
vm-rfc934-digest-discard-header-regexp
vm-rfc934-digest-headers
vm-search-using-regexps
vm-select-message-hook
vm-select-new-message-hook
vm-select-unread-message-hook
vm-send-digest-hook
vm-send-using-mime
vm-skip-deleted-messages
vm-skip-read-messages
vm-spool-file-suffixes
vm-spool-files
vm-startup-with-summary
vm-strip-reply-headers
vm-summary-arrow
vm-summary-format
vm-summary-highlight-face
vm-summary-mode-hook
vm-summary-redo-hook
vm-summary-show-threads
vm-summary-thread-indent-level
vm-tale-is-an-idiot
vm-temp-file-directory
vm-toolbar-pixmap-directory
vm-trust-From_-with-Content-Length
vm-undisplay-buffer-hook
vm-unforwarded-header-regexp
vm-url-browser
vm-url-search-limit
vm-use-menus
vm-use-toolbar
vm-virtual-folder-alist
vm-virtual-mirror
vm-visible-headers
vm-visit-folder-hook
vm-visit-when-saving
vm-warp-mouse-to-new-frame
vm-window-configuration-file
"
(interactive "P")
(vm (current-buffer) read-only)
(vm-display nil nil '(vm-mode) '(vm-mode)))
;;;###autoload
(defun vm-visit-folder (folder &optional read-only)
"Visit a mail file.
VM will parse and present its messages to you in the usual way.
First arg FOLDER specifies the mail file to visit. When this
command is called interactively the file name is read from the
minibuffer.
Prefix arg or optional second arg READ-ONLY non-nil indicates
that the folder should be considered read only. No attribute
changes, messages additions or deletions will be allowed in the
visited folder."
(interactive
(save-excursion
(vm-session-initialization)
(vm-select-folder-buffer)
(let ((default-directory (if vm-folder-directory
(expand-file-name vm-folder-directory)
default-directory))
(default (or vm-last-visit-folder vm-last-save-folder))
(this-command this-command)
(last-command last-command))
(list (vm-read-file-name
(format "Visit%s folder:%s "
(if current-prefix-arg " read only" "")
(if default
(format " (default %s)" default)
""))
default-directory default nil nil 'vm-folder-history)
current-prefix-arg))))
(vm-session-initialization)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(setq vm-last-visit-folder folder)
(let ((default-directory (or vm-folder-directory default-directory)))
(setq folder (expand-file-name folder)))
(vm folder read-only))
;;;###autoload
(defun vm-visit-folder-other-frame (folder &optional read-only)
"Like vm-visit-folder, but run in a newly created frame."
(interactive
(save-excursion
(vm-session-initialization)
(vm-select-folder-buffer)
(let ((default-directory (if vm-folder-directory
(expand-file-name vm-folder-directory)
default-directory))
(default (or vm-last-visit-folder vm-last-save-folder))
(this-command this-command)
(last-command last-command))
(list (vm-read-file-name
(format "Visit%s folder in other frame:%s "
(if current-prefix-arg " read only" "")
(if default
(format " (default %s)" default)
""))
default-directory default nil nil 'vm-folder-history)
current-prefix-arg))))
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'folder))
(let ((vm-frame-per-folder nil)
(vm-search-other-frames nil))
(vm-visit-folder folder read-only))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-visit-folder-other-window (folder &optional read-only)
"Like vm-visit-folder, but run in a different window."
(interactive
(save-excursion
(vm-session-initialization)
(vm-select-folder-buffer)
(let ((default-directory (if vm-folder-directory
(expand-file-name vm-folder-directory)
default-directory))
(default (or vm-last-visit-folder vm-last-save-folder))
(this-command this-command)
(last-command last-command))
(list (vm-read-file-name
(format "Visit%s folder in other window:%s "
(if current-prefix-arg " read only" "")
(if default
(format " (default %s)" default)
""))
default-directory default nil nil 'vm-folder-history)
current-prefix-arg))))
(vm-session-initialization)
(if (one-window-p t)
(split-window))
(other-window 1)
(let ((vm-frame-per-folder nil)
(vm-search-other-frames nil))
(vm-visit-folder folder read-only)))
(put 'vm-virtual-mode 'mode-class 'special)
(defun vm-virtual-mode (&rest ignored)
"Mode for reading multiple mail folders as one folder.
The commands available are the same commands that are found in
vm-mode, except that a few of them are not applicable to virtual
folders.
vm-virtual-mode is not a normal major mode. If you run it, it
will not do anything. The entry point to vm-virtual-mode is
vm-visit-virtual-folder.")
(defvar scroll-in-place)
;;;###autoload
(defun vm-visit-virtual-folder (folder-name &optional read-only)
(interactive
(let ((last-command last-command)
(this-command this-command))
(vm-session-initialization)
(list
(vm-read-string "Visit virtual folder: " vm-virtual-folder-alist)
current-prefix-arg)))
(vm-session-initialization)
(if (not (assoc folder-name vm-virtual-folder-alist))
(error "No such virtual folder, %s" folder-name))
(let ((buffer-name (concat "(" folder-name ")"))
first-time blurb)
(set-buffer (get-buffer-create buffer-name))
(setq first-time (not (eq major-mode 'vm-virtual-mode)))
(if first-time
(progn
(if (fboundp 'buffer-disable-undo)
(buffer-disable-undo (current-buffer))
;; obfuscation to make the v19 compiler not whine
;; about obsolete functions.
(let ((x 'buffer-flush-undo))
(funcall x (current-buffer))))
(abbrev-mode 0)
(auto-fill-mode 0)
(setq mode-name "VM Virtual"
mode-line-format vm-mode-line-format
buffer-read-only t
vm-folder-read-only read-only
vm-label-obarray (make-vector 29 0)
vm-virtual-folder-definition
(assoc folder-name vm-virtual-folder-alist))
;; scroll in place messes with scroll-up and this loses
(make-local-variable 'scroll-in-place)
(setq scroll-in-place nil)
(vm-build-virtual-message-list nil)
(use-local-map vm-mode-map)
(and (vm-menu-support-possible-p)
(vm-menu-install-menus))
(add-hook 'kill-buffer-hook 'vm-garbage-collect-folder)
(add-hook 'kill-buffer-hook 'vm-garbage-collect-message)
;; save this for last in case the user interrupts.
;; an interrupt anywhere before this point will cause
;; everything to be redone next revisit.
(setq major-mode 'vm-virtual-mode)
(run-hooks 'vm-virtual-mode-hook)
;; must come after the setting of major-mode
(setq mode-popup-menu (and vm-use-menus vm-popup-menu-on-mouse-3
(vm-menu-support-possible-p)
(vm-menu-mode-menu)))
(setq blurb (vm-emit-totals-blurb))
(if vm-summary-show-threads
(vm-sort-messages "thread"))
(if (vm-thoughtfully-select-message)
(vm-preview-current-message)
(vm-update-summary-and-mode-line))
(message blurb)))
;; make a new frame if the user wants one. reuse an
;; existing frame that is showing this folder.
(vm-goto-new-folder-frame-maybe 'folder)
(if vm-raise-frame-at-startup
(vm-raise-frame))
(vm-display nil nil (list this-command) (list this-command 'startup))
(and (vm-toolbar-support-possible-p) vm-use-toolbar
(vm-toolbar-install-toolbar))
(if first-time
(progn
(if (vm-should-generate-summary)
(progn (vm-summarize t nil)
(message blurb)))
;; raise the summary frame if the user wants frames
;; raised and if there is a summary frame.
(if (and vm-summary-buffer
vm-mutable-frames
vm-frame-per-summary
vm-raise-frame-at-startup)
(vm-raise-frame))
;; if vm-mutable-windows is nil, the startup
;; configuration can't be applied, so do
;; something to get a VM buffer on the screen
(if vm-mutable-windows
(vm-display nil nil (list this-command)
(list (or this-command 'vm) 'startup))
(save-excursion
(switch-to-buffer (or vm-summary-buffer
vm-presentation-buffer
(current-buffer)))))))
;; check interactive-p so as not to bog the user down if they
;; run this function from within another function.
(and (interactive-p)
(not vm-startup-message-displayed)
(vm-display-startup-message)
(message blurb))))
;;;###autoload
(defun vm-visit-virtual-folder-other-frame (folder-name &optional read-only)
"Like vm-visit-virtual-folder, but run in a newly created frame."
(interactive
(let ((last-command last-command)
(this-command this-command))
(vm-session-initialization)
(list
(vm-read-string "Visit virtual folder in other frame: "
vm-virtual-folder-alist)
current-prefix-arg)))
(vm-session-initialization)
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'folder))
(let ((vm-frame-per-folder nil)
(vm-search-other-frames nil))
(vm-visit-virtual-folder folder-name read-only))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-visit-virtual-folder-other-window (folder-name &optional read-only)
"Like vm-visit-virtual-folder, but run in a different window."
(interactive
(let ((last-command last-command)
(this-command this-command))
(vm-session-initialization)
(list
(vm-read-string "Visit virtual folder in other window: "
vm-virtual-folder-alist)
current-prefix-arg)))
(vm-session-initialization)
(if (one-window-p t)
(split-window))
(other-window 1)
(let ((vm-frame-per-folder nil)
(vm-search-other-frames nil))
(vm-visit-virtual-folder folder-name read-only)))
;;;###autoload
(defun vm-mail (&optional to)
"Send a mail message from within VM, or from without.
Optional argument TO is a string that should contain a comma separated
recipient list."
(interactive)
(vm-session-initialization)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-mail-internal nil to)
(run-hooks 'vm-mail-hook)
(run-hooks 'vm-mail-mode-hook))
;;;###autoload
(defun vm-mail-other-frame (&optional to)
"Like vm-mail, but run in a newly created frame.
Optional argument TO is a string that should contain a comma separated
recipient list."
(interactive)
(vm-session-initialization)
(if (vm-multiple-frames-possible-p)
(vm-goto-new-frame 'composition))
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-mail to))
(if (vm-multiple-frames-possible-p)
(vm-set-hooks-for-frame-deletion)))
;;;###autoload
(defun vm-mail-other-window (&optional to)
"Like vm-mail, but run in a different window.
Optional argument TO is a string that should contain a comma separated
recipient list."
(interactive)
(vm-session-initialization)
(if (one-window-p t)
(split-window))
(other-window 1)
(let ((vm-frame-per-composition nil)
(vm-search-other-frames nil))
(vm-mail to)))
;;;###autoload
(defun vm-submit-bug-report ()
"Submit a bug report, with pertinent information to the VM bug list."
(interactive)
(require 'reporter)
;; make sure the user doesn't try to use vm-mail here.
(let ((reporter-mailer '(mail)))
(delete-other-windows)
(reporter-submit-bug-report
vm-maintainer-address
(concat "VM " vm-version)
(list
'vm-arrived-message-hook
'vm-arrived-messages-hook
'vm-auto-center-summary
'vm-auto-decode-mime-messages
'vm-auto-displayed-mime-content-types
;; don't send this by default, might be personal stuff in here.
;; 'vm-auto-folder-alist
'vm-auto-folder-case-fold-search
'vm-auto-get-new-mail
'vm-auto-next-message
'vm-berkeley-mail-compatibility
'vm-check-folder-types
'vm-circular-folders
'vm-confirm-new-folders
'vm-confirm-quit
'vm-convert-folder-types
'vm-crash-box
'vm-crash-box-suffix
'vm-default-folder-type
'vm-delete-after-archiving
'vm-delete-after-bursting
'vm-delete-after-saving
'vm-delete-empty-folders
'vm-digest-burst-type
'vm-digest-identifier-header-format
'vm-digest-center-preamble
'vm-digest-preamble-format
'vm-digest-send-type
'vm-display-buffer-hook
'vm-display-using-mime
'vm-edit-message-hook
'vm-edit-message-mode
'vm-flush-interval
'vm-folder-directory
'vm-folder-read-only
'vm-follow-summary-cursor
'vm-forward-message-hook
'vm-forwarded-headers
'vm-forwarding-digest-type
'vm-forwarding-subject-format
'vm-frame-parameter-alist
'vm-frame-per-completion
'vm-frame-per-composition
'vm-frame-per-edit
'vm-frame-per-folder
'vm-frame-per-help
'vm-frame-per-summary
'vm-highlight-url-face
'vm-highlighted-header-regexp
'vm-honor-page-delimiters
'vm-image-directory
'vm-in-reply-to-format
'vm-included-text-attribution-format
'vm-included-text-discard-header-regexp
'vm-included-text-headers
'vm-included-text-prefix
'vm-index-file-suffix
'vm-init-file
'vm-invisible-header-regexp
'vm-jump-to-new-messages
'vm-jump-to-unread-messages
'vm-keep-crash-boxes
'vm-keep-sent-messages
'vm-mail-header-from
'vm-mail-hook
'vm-make-crash-box-name
'vm-make-spool-file-name
'vm-mail-check-interval
'vm-mail-mode-hook
'vm-mime-7bit-composition-charset
'vm-mime-8bit-composition-charset
'vm-mime-8bit-text-transfer-encoding
'vm-mime-alternative-select-method
'vm-mime-attachment-auto-type-alist
'vm-mime-attachment-save-directory
'vm-mime-avoid-folding-content-type
'vm-mime-base64-decoder-program
'vm-mime-base64-decoder-switches
'vm-mime-base64-encoder-program
'vm-mime-base64-encoder-switches
'vm-mime-button-format-alist
'vm-mime-button-face
'vm-mime-charset-font-alist
'vm-mime-default-face-charsets
'vm-mime-digest-discard-header-regexp
'vm-mime-digest-headers
'vm-mime-display-function
'vm-mime-external-content-types-alist
'vm-mime-ignore-mime-version
'vm-mime-internal-content-types
'vm-mime-max-message-size
'vm-mode-hook
'vm-mode-hooks
'vm-mosaic-program
'vm-mosaic-program-switches
'vm-move-after-deleting
'vm-move-after-undeleting
'vm-move-after-killing
'vm-move-messages-physically
'vm-movemail-program
'vm-mutable-frames
'vm-mutable-windows
'vm-netscape-program
'vm-netscape-program-switches
;; POP passwords might be listed here
;; 'vm-pop-auto-expunge-alist
'vm-pop-bytes-per-session
'vm-pop-expunge-after-retrieving
'vm-pop-max-message-size
'vm-pop-messages-per-session
'vm-pop-md5-program
'vm-popup-menu-on-mouse-3
'vm-preferences-file
'vm-preview-lines
'vm-preview-read-messages
'vm-primary-inbox
'vm-quit-hook
'vm-recognize-pop-maildrops
'vm-reply-hook
;; don't feed the spammers or crackers
;; 'vm-reply-ignored-addresses
'vm-reply-ignored-reply-tos
'vm-reply-subject-prefix
'vm-resend-bounced-discard-header-regexp
'vm-resend-bounced-headers
'vm-resend-bounced-message-hook
'vm-resend-discard-header-regexp
'vm-resend-headers
'vm-resend-message-hook
'vm-retrieved-spooled-mail-hook
'vm-rfc1153-digest-discard-header-regexp
'vm-rfc1153-digest-headers
'vm-rfc934-digest-discard-header-regexp
'vm-rfc934-digest-headers
'vm-search-using-regexps
'vm-select-message-hook
'vm-select-new-message-hook
'vm-select-unread-message-hook
'vm-send-digest-hook
'vm-send-using-mime
'vm-skip-deleted-messages
'vm-skip-read-messages
;; don't send vm-spool-files by default, might contain passwords
;; 'vm-spool-files
'vm-spool-file-suffixes
'vm-startup-with-summary
'vm-strip-reply-headers
'vm-summary-format
'vm-summary-highlight-face
'vm-summary-mode-hook
'vm-summary-mode-hooks
'vm-summary-redo-hook
'vm-summary-show-threads
'vm-summary-thread-indent-level
'vm-summary-uninteresting-senders
'vm-summary-uninteresting-senders-arrow
'vm-tale-is-an-idiot
'vm-toolbar-pixmap-directory
'vm-temp-file-directory
'vm-trust-From_-with-Content-Length
'vm-undisplay-buffer-hook
'vm-unforwarded-header-regexp
'vm-url-browser
'vm-url-search-limit
'vm-use-menus
'vm-use-toolbar
'vm-virtual-folder-alist
'vm-virtual-mirror
'vm-visible-headers
'vm-visit-folder-hook
'vm-visit-when-saving
'vm-warp-mouse-to-new-frame
'vm-window-configuration-file
;; see what the user had loaded
'features
)
nil
nil
"Please change the Subject header to a concise bug description.\nRemember to cover the basics, that is, what you expected to\nhappen and what in fact did happen. Please remove these\ninstructions from your message.")
(save-excursion
(goto-char (point-min))
(mail-position-on-field "Subject")
(beginning-of-line)
(delete-region (point) (progn (forward-line) (point)))
(insert "Subject: VM " vm-version " induces a brain tumor in the user.\n It is the tumor that creates the hallucinations.\n"))))
(defun vm-load-init-file (&optional interactive)
(interactive "p")
(if (or (not vm-init-file-loaded) interactive)
(load vm-init-file (not interactive) (not interactive) t))
(setq vm-init-file-loaded t)
(vm-display nil nil '(vm-load-init-file) '(vm-load-init-file)))
(defun vm-check-emacs-version ()
(cond ((and vm-xemacs-p
(or (< emacs-major-version 19)
(and (= emacs-major-version 19)
(< emacs-minor-version 14))))
(error "VM %s must be run on XEmacs 19.14 or a later version."
vm-version))
((and vm-fsfemacs-p
(or (< emacs-major-version 19)
(and (= emacs-major-version 19)
(< emacs-minor-version 34))))
(error "VM %s must be run on Emacs 19.34 or a later v19 version."
vm-version))
((and vm-fsfemacs-p (= emacs-major-version 20))
(error "VM has not been ported to v20 Emacs. Running VM in this environment is not advised."))))
(defun vm-set-debug-flags ()
(or stack-trace-on-error
debug-on-error
(setq stack-trace-on-error
'(
wrong-type-argument
wrong-number-of-arguments
args-out-of-range
void-function
void-variable
invalid-function
))))
(defun vm-session-initialization ()
(require 'vm)
(vm-note-emacs-version)
(vm-check-emacs-version)
;; (vm-set-debug-flags)
;; If this is the first time VM has been run in this Emacs session,
;; do some necessary preparations.
(if (or (not (boundp 'vm-session-beginning))
vm-session-beginning)
(progn
(random t)
(vm-load-init-file)
(if (not vm-window-configuration-file)
(setq vm-window-configurations vm-default-window-configuration)
(or (vm-load-window-configurations vm-window-configuration-file)
(setq vm-window-configurations vm-default-window-configuration)))
(setq vm-buffers-needing-display-update (make-vector 29 0))
;; default value of vm-mime-button-face is 'gui-button-face
;; this face doesn't exist by default in FSF Emacs 19.34.
;; Create it.
(and (fboundp 'make-face) (make-face 'gui-button-face))
(and (vm-mouse-support-possible-p)
(vm-mouse-install-mouse))
(and (vm-menu-support-possible-p)
vm-use-menus
(vm-menu-fsfemacs-menus-p)
(vm-menu-initialize-vm-mode-menu-map))
(setq vm-session-beginning nil))))
(autoload 'reporter-submit-bug-report "reporter")
(autoload 'timezone-make-date-sortable "timezone")
(autoload 'rfc822-addresses "rfc822")
(autoload 'mail-strip-quoted-names "mail-utils")
(autoload 'mail-fetch-field "mail-utils")
(autoload 'mail-position-on-field "mail-utils")
(autoload 'mail-send "sendmail")
(autoload 'mail-mode "sendmail")
(autoload 'mail-extract-address-components "mail-extr")
(autoload 'set-tapestry "tapestry")
(autoload 'tapestry "tapestry")
(autoload 'tapestry-replace-tapestry-element "tapestry")
(autoload 'tapestry-nullify-tapestry-elements "tapestry")
(autoload 'tapestry-remove-frame-parameters "tapestry")
(autoload 'vm-easy-menu-define "vm-easymenu" nil 'macro)
(autoload 'vm-easy-menu-do-define "vm-easymenu")
|