summaryrefslogtreecommitdiff
path: root/img/lib/IM/Pop.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-06-04 15:16:24 +0000
committerfukachan <fukachan>2003-06-04 15:16:24 +0000
commit59bf43f79020b558ecfb6e8c71642b4c8a5ef88c (patch)
treef042df74c7847cae69b57f45c44bbe6388f6a0eb /img/lib/IM/Pop.pm
parentbf112251f43696e90733e499e7401bbeecd31d3d (diff)
downloadfml8-im-145.tar.gz
fml8-im-145.tar.bz2
fml8-im-145.zip
im-145im-145
Diffstat (limited to 'img/lib/IM/Pop.pm')
-rw-r--r--img/lib/IM/Pop.pm16
1 files changed, 10 insertions, 6 deletions
diff --git a/img/lib/IM/Pop.pm b/img/lib/IM/Pop.pm
index 9e8a5618..50b8e300 100644
--- a/img/lib/IM/Pop.pm
+++ b/img/lib/IM/Pop.pm
@@ -5,10 +5,10 @@
###
### Author: Internet Message Group <img@mew.org>
### Created: Apr 23, 1997
-### Revised: Mar 22, 2003
+### Revised: Jun 1, 2003
###
-my $PM_VERSION = "IM::Pop.pm version 20030322(IM144)";
+my $PM_VERSION = "IM::Pop.pm version 20030601(IM145)";
package IM::Pop;
require 5.003;
@@ -288,8 +288,10 @@ sub pop_process($$$$) {
if ($histfile eq '') {
im_err("POP historyfile $histfile undefined.\n");
return -1;
- } elsif ($histfile =~ /(\S+)/) {
- $histfile = $1; # to pass through taint check
+ } elsif ($histfile =~ /(.+)/) {
+ if ($> != 0) {
+ $histfile = $1; # to pass through taint check
+ }
} else {
im_err("invalid POP historyfile: $histfile.\n");
return -1;
@@ -442,11 +444,13 @@ sub pop_inc($$$$$$$$) {
my $getchk_hook = getchksbr_file();
if ($getchk_hook) {
- if ($getchk_hook =~ /^(\S+)$/) {
+ if ($getchk_hook =~ /(.+)/) {
if ($main::INSECURE) {
im_warn("Sorry, GetChkSbr is ignored for SUID root script.\n");
} else {
- $getchk_hook = $1; # to pass through taint check
+ if ($> != 0) {
+ $getchk_hook = $1; # to pass through taint check
+ }
if (-f $getchk_hook) {
require $getchk_hook;
} else {