Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1eff7356
Commit
1eff7356
authored
Sep 10, 1993
by
Roland McGrath
Browse files
(rmail-spool-directory): Use "/var/mail/" if system-type is netbsd.
parent
60fa73fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
lisp/paths.el
lisp/paths.el
+6
-4
No files found.
lisp/paths.el
View file @
1eff7356
...
...
@@ -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."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment