1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(rmail-spool-directory): Use /var/mail for bsd386.

This commit is contained in:
Richard M. Stallman 1994-07-05 04:06:00 +00:00
parent 64f62b4508
commit fa8fb184b3

View File

@ -97,6 +97,10 @@ Will use `gnus-startup-file'-SERVER instead if exists.")
((and (string-match "^[^-]+-[^-]+-sysv4" system-configuration)
(file-exists-p "/var/mail"))
"/var/mail/")
;; BSD386 is said to use /var/mail.
((and (string-match "^[^-]+-[^-]+-bsd386" system-configuration)
(file-exists-p "/var/mail"))
"/var/mail/")
((memq system-type '(dgux hpux usg-unix-v unisoft-unix rtu irix))
"/usr/mail/")
((eq system-type 'netbsd)