mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
efc733172c
``info exists $env(MAIL)''.
16 lines
560 B
Plaintext
16 lines
560 B
Plaintext
--- postilion/options.tcl Wed Feb 23 17:27:28 2000
|
|
+++ postilion/options.tcl Mon Feb 12 19:24:36 2001
|
|
@@ -217,5 +217,5 @@
|
|
- if [info exists $env(MAIL)] {
|
|
- set option(default_folder) "INBOX file {} /var/spool/mail/$env(USER)"
|
|
- } else {
|
|
+ if [info exists env(MAIL)] {
|
|
set option(default_folder) "INBOX file {} $env(MAIL)"
|
|
+ } else {
|
|
+ set option(default_folder) "INBOX file {} /var/mail/$env(USER)"
|
|
}
|
|
@@ -265,2 +265,2 @@
|
|
# Default sending program
|
|
- set option(sendprog) /usr/lib/sendmail
|
|
+ set option(sendprog) /usr/sbin/sendmail
|