diff lisp/paths.el @ 4691:4d3426d8b92a

(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
author Roland McGrath <roland@gnu.org>
date Fri, 10 Sep 1993 05:05:39 +0000
parents 5acc13b477c7
children a2d961cb63b0
line wrap: on
line diff
--- a/lisp/paths.el	Fri Sep 10 05:02:57 1993 +0000
+++ b/lisp/paths.el	Fri Sep 10 05:05:39 1993 +0000
@@ -100,10 +100,12 @@
 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.")