Mercurial > hg > xemacs-beta
comparison lisp/rmail/auto-autoloads.el @ 163:0132846995bd r20-3b8
Import from CVS: tag r20-3b8
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:43:35 +0200 |
parents | |
children | e121b013d1f0 |
comparison
equal
deleted
inserted
replaced
162:4de2936b4e77 | 163:0132846995bd |
---|---|
1 ;;; DO NOT MODIFY THIS FILE | |
2 (if (not (featurep 'rmail-autoloads)) | |
3 (progn | |
4 | |
5 ;;;### (autoloads (rmail-input rmail-mode rmail) "rmail" "rmail/rmail.el") | |
6 | |
7 (defvar rmail-dont-reply-to-names nil "\ | |
8 *A regexp specifying names to prune of reply to messages. | |
9 A value of nil means exclude your own name only.") | |
10 | |
11 (defvar rmail-default-dont-reply-to-names "info-" "\ | |
12 A regular expression specifying part of the value of the default value of | |
13 the variable `rmail-dont-reply-to-names', for when the user does not set | |
14 `rmail-dont-reply-to-names' explicitly. (The other part of the default | |
15 value is the user's name.) | |
16 It is useful to set this variable in the site customization file.") | |
17 | |
18 (defvar rmail-delete-after-output nil "\ | |
19 *Non-nil means automatically delete a message that is copied to a file.") | |
20 | |
21 (defvar rmail-primary-inbox-list nil "\ | |
22 *List of files which are inboxes for user's primary mail file `~/RMAIL'. | |
23 `nil' means the default, which is (\"/usr/spool/mail/$USER\") | |
24 \(the name varies depending on the operating system, | |
25 and the value of the environment variable MAIL overrides it).") | |
26 | |
27 (defvar rmail-mail-new-frame nil "\ | |
28 *Non-nil means Rmail makes a new frame for composing outgoing mail.") | |
29 | |
30 (defvar rmail-retry-setup-hook nil "\ | |
31 Hook that `rmail-retry-failure' uses in place of `mail-setup-hook'.") | |
32 | |
33 (defvar rmail-last-file nil) | |
34 | |
35 (autoload 'rmail "rmail" "\ | |
36 Read and edit incoming mail. | |
37 Moves messages into file named by `rmail-file-name' (a babyl format file) | |
38 and edits that file in RMAIL Mode. | |
39 Type \\[describe-mode] once editing that file, for a list of RMAIL commands. | |
40 | |
41 May be called with filename as argument; then performs rmail editing on | |
42 that file, but does not copy any new mail into the file." t nil) | |
43 | |
44 (autoload 'rmail-mode "rmail" "\ | |
45 Rmail Mode is used by \\<rmail-mode-map>\\[rmail] for editing Rmail files. | |
46 All normal editing commands are turned off. | |
47 Instead, these commands are available: | |
48 | |
49 \\[rmail-beginning-of-message] Move point to front of this message (same as \\[beginning-of-buffer]). | |
50 \\[scroll-up] Scroll to next screen of this message. | |
51 \\[scroll-down] Scroll to previous screen of this message. | |
52 \\[rmail-next-undeleted-message] Move to Next non-deleted message. | |
53 \\[rmail-previous-undeleted-message] Move to Previous non-deleted message. | |
54 \\[rmail-next-message] Move to Next message whether deleted or not. | |
55 \\[rmail-previous-message] Move to Previous message whether deleted or not. | |
56 \\[rmail-first-message] Move to the first message in Rmail file. | |
57 \\[rmail-last-message] Move to the last message in Rmail file. | |
58 \\[rmail-show-message] Jump to message specified by numeric position in file. | |
59 \\[rmail-search] Search for string and show message it is found in. | |
60 \\[rmail-delete-forward] Delete this message, move to next nondeleted. | |
61 \\[rmail-delete-backward] Delete this message, move to previous nondeleted. | |
62 \\[rmail-undelete-previous-message] Undelete message. Tries current message, then earlier messages | |
63 till a deleted message is found. | |
64 \\[rmail-edit-current-message] Edit the current message. \\[rmail-cease-edit] to return to Rmail. | |
65 \\[rmail-expunge] Expunge deleted messages. | |
66 \\[rmail-expunge-and-save] Expunge and save the file. | |
67 \\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. | |
68 \\[save-buffer] Save without expunging. | |
69 \\[rmail-get-new-mail] Move new mail from system spool directory into this file. | |
70 \\[rmail-mail] Mail a message (same as \\[mail-other-window]). | |
71 \\[rmail-continue] Continue composing outgoing message started before. | |
72 \\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields. | |
73 \\[rmail-retry-failure] Send this message again. Used on a mailer failure message. | |
74 \\[rmail-forward] Forward this message to another user. | |
75 \\[rmail-output-to-rmail-file] Output this message to an Rmail file (append it). | |
76 \\[rmail-output] Output this message to a Unix-format mail file (append it). | |
77 \\[rmail-input] Input Rmail file. Run Rmail on that file. | |
78 \\[rmail-add-label] Add label to message. It will be displayed in the mode line. | |
79 \\[rmail-kill-label] Kill label. Remove a label from current message. | |
80 \\[rmail-next-labeled-message] Move to Next message with specified label | |
81 (label defaults to last one specified). | |
82 Standard labels: filed, unseen, answered, forwarded, deleted. | |
83 Any other label is present only if you add it with \\[rmail-add-label]. | |
84 \\[rmail-previous-labeled-message] Move to Previous message with specified label | |
85 \\[rmail-summary] Show headers buffer, with a one line summary of each message. | |
86 \\[rmail-summary-by-labels] Summarize only messages with particular label(s). | |
87 \\[rmail-summary-by-recipients] Summarize only messages with particular recipient(s). | |
88 \\[rmail-summary-by-regexp] Summarize only messages with particular regexp(s). | |
89 \\[rmail-summary-by-topic] Summarize only messages with subject line regexp(s). | |
90 \\[rmail-toggle-header] Toggle display of complete header." t nil) | |
91 | |
92 (autoload 'rmail-input "rmail" "\ | |
93 Run Rmail on file FILENAME." t nil) | |
94 | |
95 ;;;*** | |
96 | |
97 ;;;### (autoloads (rmail-file-p) "rmailout" "rmail/rmailout.el") | |
98 | |
99 (autoload 'rmail-file-p "rmailout" nil nil nil) | |
100 | |
101 ;;;*** | |
102 | |
103 ;;;### (autoloads (unrmail batch-unrmail) "unrmail" "rmail/unrmail.el") | |
104 | |
105 (autoload 'batch-unrmail "unrmail" "\ | |
106 Convert Rmail files to mailbox files. | |
107 Specify the input Rmail file names as command line arguments. | |
108 For each Rmail file, the corresponding output file name | |
109 is made by adding `.mail' at the end. | |
110 For example, invoke `emacs -batch -f batch-unrmail RMAIL'." nil nil) | |
111 | |
112 (autoload 'unrmail "unrmail" "\ | |
113 Convert Rmail file FILE to mailbox-format file TO-FILE." t nil) | |
114 | |
115 ;;;*** | |
116 | |
117 (provide 'rmail-autoloads) | |
118 )) |