diff options
author | se <se@FreeBSD.org> | 1998-03-05 07:18:04 +0800 |
---|---|---|
committer | se <se@FreeBSD.org> | 1998-03-05 07:18:04 +0800 |
commit | 0db9da6b3588977b6cc98b373842b75a3e49decd (patch) | |
tree | 59bc0d1506aef50b35b0930a4169385344ce8548 /net/kdenetwork11 | |
parent | fd093992c76ac7aada3aa52cc01b6d22f392d38a (diff) | |
download | freebsd-ports-gnome-0db9da6b3588977b6cc98b373842b75a3e49decd.tar.gz freebsd-ports-gnome-0db9da6b3588977b6cc98b373842b75a3e49decd.tar.zst freebsd-ports-gnome-0db9da6b3588977b6cc98b373842b75a3e49decd.zip |
Fix path of mail directory (/var/mail)
Diffstat (limited to 'net/kdenetwork11')
-rw-r--r-- | net/kdenetwork11/files/patch-ab | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net/kdenetwork11/files/patch-ab b/net/kdenetwork11/files/patch-ab new file mode 100644 index 000000000000..b9cdbb5ef521 --- /dev/null +++ b/net/kdenetwork11/files/patch-ab @@ -0,0 +1,28 @@ +*** kmail/kmacctlocal.cpp~ Sat Feb 28 15:56:44 1998 +--- kmail/kmacctlocal.cpp Sat Feb 28 15:57:14 1998 +*************** +*** 42,46 **** + void KMAcctLocal::init(void) + { +! mLocation = "/var/spool/mail/"; + mLocation.detach(); + mLocation += getenv("USER"); +--- 42,46 ---- + void KMAcctLocal::init(void) + { +! mLocation = "/var/mail/"; + mLocation.detach(); + mLocation += getenv("USER"); +*************** +*** 99,103 **** + void KMAcctLocal::readConfig(KConfig& config) + { +! QString defaultPath("/var/spool/mail/"); + defaultPath += getenv("USER"); + +--- 99,103 ---- + void KMAcctLocal::readConfig(KConfig& config) + { +! QString defaultPath("/var/mail/"); + defaultPath += getenv("USER"); + |