aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-03-29 22:44:46 +0000
committerRichard M. Stallman1993-03-29 22:44:46 +0000
commit3af9db898dff5fcbef51090f6fc1aa32caec3bab (patch)
tree8b041727073a42718f35559634cec287aa8d2afe
parent4fbc6fa6550a917da4752c6d4a4496cfff661bbc (diff)
downloademacs-3af9db898dff5fcbef51090f6fc1aa32caec3bab.tar.gz
emacs-3af9db898dff5fcbef51090f6fc1aa32caec3bab.zip
(rmail): Don't use mbox as inbox by default.
-rw-r--r--lisp/mail/rmail.el15
1 files changed, 7 insertions, 8 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index 05cd3d7868f..4b2a4c4a4cb 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -76,9 +76,9 @@ It is useful to set this variable in the site customisation file.")
76 76
77;;;###autoload 77;;;###autoload
78(defconst rmail-primary-inbox-list nil "\ 78(defconst rmail-primary-inbox-list nil "\
79*List of files which are inboxes for user's primary mail file ~/RMAIL. 79*List of files which are inboxes for user's primary mail file `~/RMAIL'.
80`nil' means the default, which is (\"/usr/spool/mail/$USER\" \"~/mbox\") 80`nil' means the default, which is (\"/usr/spool/mail/$USER\")
81\(the first name varies depending on the operating system, 81\(the name varies depending on the operating system,
82and the value of the environment variable MAIL overrides it).") 82and the value of the environment variable MAIL overrides it).")
83 83
84;; These may be altered by site-init.el to match the format of mmdf files 84;; These may be altered by site-init.el to match the format of mmdf files
@@ -226,8 +226,7 @@ that file, but does not copy any new mail into the file."
226 (null file-name-arg) 226 (null file-name-arg)
227 (setq rmail-inbox-list 227 (setq rmail-inbox-list
228 (or rmail-primary-inbox-list 228 (or rmail-primary-inbox-list
229 (list "~/mbox" 229 (list (or (getenv "MAIL")
230 (or (getenv "MAIL")
231 (concat rmail-spool-directory 230 (concat rmail-spool-directory
232 (user-original-login-name))))))) 231 (user-original-login-name)))))))
233 ;; Convert all or part to Babyl file if possible. 232 ;; Convert all or part to Babyl file if possible.
@@ -383,7 +382,7 @@ Instead, these commands are available:
383\\[rmail-expunge-and-save] Expunge and save the file. 382\\[rmail-expunge-and-save] Expunge and save the file.
384\\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer. 383\\[rmail-quit] Quit Rmail: expunge, save, then switch to another buffer.
385\\[save-buffer] Save without expunging. 384\\[save-buffer] Save without expunging.
386\\[rmail-get-new-mail] Move new mail from system spool directory or mbox into this file. 385\\[rmail-get-new-mail] Move new mail from system spool directory into this file.
387\\[rmail-mail] Mail a message (same as \\[mail-other-window]). 386\\[rmail-mail] Mail a message (same as \\[mail-other-window]).
388\\[rmail-continue] Continue composing outgoing message started before. 387\\[rmail-continue] Continue composing outgoing message started before.
389\\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields. 388\\[rmail-reply] Reply to this message. Like \\[rmail-mail] but initializes some fields.
@@ -518,8 +517,8 @@ Instead, these commands are available:
518 "Move any new mail from this RMAIL file's inbox files. 517 "Move any new mail from this RMAIL file's inbox files.
519The inbox files can be specified with the file's Mail: option. The 518The inbox files can be specified with the file's Mail: option. The
520variable `rmail-primary-inbox-list' specifies the inboxes for your 519variable `rmail-primary-inbox-list' specifies the inboxes for your
521primary RMAIL file if it has no Mail: option. These are normally your 520primary RMAIL file if it has no Mail: option. By default, this is
522~/mbox and your /usr/spool/mail/$USER. 521your /usr/spool/mail/$USER.
523 522
524You can also specify the file to get new mail from. In this case, the 523You can also specify the file to get new mail from. In this case, the
525file of new mail is not changed or deleted. Noninteractively, you can 524file of new mail is not changed or deleted. Noninteractively, you can