summaryrefslogtreecommitdiff
path: root/lisp/paths.el
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1993-09-10 05:05:39 +0000
committerRoland McGrath <roland@gnu.org>1993-09-10 05:05:39 +0000
commitd8f2bc61f1e6e86b5ea63fea1708ac3bf3d96e1a (patch)
treea112a45bfa1fc7a64f7a7e1a5f8802b82e612ceb /lisp/paths.el
parent3ebfbedd502749936b482035386f2f2673647d67 (diff)
downloademacs-d8f2bc61f1e6e86b5ea63fea1708ac3bf3d96e1a.tar.gz
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
Diffstat (limited to 'lisp/paths.el')
-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.")
Will use `gnus-startup-file'-SERVER instead if exists.")
(defconst rmail-spool-directory
- (if (memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu
- irix silicon-graphics-unix))
- "/usr/mail/"
- "/usr/spool/mail/")
+ (cond ((memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu
+ irix silicon-graphics-unix))
+ "/usr/mail/")
+ ((eq system-type 'netbsd)
+ "/var/mail/")
+ (t "/usr/spool/mail/"))
"Name of directory used by system mailer for delivering new mail.
Its name should end with a slash.")