aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1993-09-10 05:05:39 +0000
committerRoland McGrath1993-09-10 05:05:39 +0000
commit1eff7356160ac5d08c17551f2a4de2f83c0687fe (patch)
tree921aefd14ad0219a941ae68c730d346af72aeb9b
parent60fa73fdf2c8b8fc9fae23321c56be906672ed75 (diff)
downloademacs-1eff7356160ac5d08c17551f2a4de2f83c0687fe.tar.gz
emacs-1eff7356160ac5d08c17551f2a4de2f83c0687fe.zip
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
-rw-r--r--lisp/paths.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index ea97278faf3..8eef77c3da8 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -100,10 +100,12 @@ The `ORGANIZATION' environment variable is used instead if defined.")
100Will use `gnus-startup-file'-SERVER instead if exists.") 100Will use `gnus-startup-file'-SERVER instead if exists.")
101 101
102(defconst rmail-spool-directory 102(defconst rmail-spool-directory
103 (if (memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu 103 (cond ((memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu
104 irix silicon-graphics-unix)) 104 irix silicon-graphics-unix))
105 "/usr/mail/" 105 "/usr/mail/")
106 "/usr/spool/mail/") 106 ((eq system-type 'netbsd)
107 "/var/mail/")
108 (t "/usr/spool/mail/"))
107 "Name of directory used by system mailer for delivering new mail. 109 "Name of directory used by system mailer for delivering new mail.
108Its name should end with a slash.") 110Its name should end with a slash.")
109 111