mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
Fix a blaringly obvious bug: should be ``info exists env(MAIL)'', not
``info exists $env(MAIL)''.
This commit is contained in:
parent
4b9de71457
commit
efc733172c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39112
@ -1,9 +1,10 @@
|
||||
--- 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)] {
|
||||
- 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)"
|
||||
|
Loading…
Reference in New Issue
Block a user