aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-07-05 04:06:00 +0000
committerRichard M. Stallman1994-07-05 04:06:00 +0000
commitfa8fb184b3cd1faa8a58dd5398ae0a83aa9a3209 (patch)
tree1b384268f02ab7f996a58cfcb5eae93634ab96f2
parent64f62b4508e4b990df65a21709ceb01d31eb20b0 (diff)
downloademacs-fa8fb184b3cd1faa8a58dd5398ae0a83aa9a3209.tar.gz
emacs-fa8fb184b3cd1faa8a58dd5398ae0a83aa9a3209.zip
(rmail-spool-directory): Use /var/mail for bsd386.
-rw-r--r--lisp/paths.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index 9682cb19337..268bdc48ab0 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -97,6 +97,10 @@ Will use `gnus-startup-file'-SERVER instead if exists.")
97 ((and (string-match "^[^-]+-[^-]+-sysv4" system-configuration) 97 ((and (string-match "^[^-]+-[^-]+-sysv4" system-configuration)
98 (file-exists-p "/var/mail")) 98 (file-exists-p "/var/mail"))
99 "/var/mail/") 99 "/var/mail/")
100 ;; BSD386 is said to use /var/mail.
101 ((and (string-match "^[^-]+-[^-]+-bsd386" system-configuration)
102 (file-exists-p "/var/mail"))
103 "/var/mail/")
100 ((memq system-type '(dgux hpux usg-unix-v unisoft-unix rtu irix)) 104 ((memq system-type '(dgux hpux usg-unix-v unisoft-unix rtu irix))
101 "/usr/mail/") 105 "/usr/mail/")
102 ((eq system-type 'netbsd) 106 ((eq system-type 'netbsd)