Loading lib/session.php +1 −1 Original line number Diff line number Diff line Loading @@ -227,7 +227,7 @@ private $datahash=''; // hash of data field }*/ // a sure-fire way to check to see if the user has any unread email // the bash script returns 0 for no and 1 for yes, takes one arg, username $this->email = shell_exec("/home/member/imranh/bin/sucsunreadmail $user"); $this->email = shell_exec("../plugins/sucsunreadmail $user"); if (file_exists($info['homedirectory'][0]."/.forward")) { $forward = file($info['homedirectory'][0]."/.forward"); Loading plugins/sucsunreadmail 0 → 100755 +8 −0 Original line number Diff line number Diff line #!/bin/bash if finger -m $1 | grep "New mail" &> /dev/null then echo "1" else echo "0" fi No newline at end of file Loading
lib/session.php +1 −1 Original line number Diff line number Diff line Loading @@ -227,7 +227,7 @@ private $datahash=''; // hash of data field }*/ // a sure-fire way to check to see if the user has any unread email // the bash script returns 0 for no and 1 for yes, takes one arg, username $this->email = shell_exec("/home/member/imranh/bin/sucsunreadmail $user"); $this->email = shell_exec("../plugins/sucsunreadmail $user"); if (file_exists($info['homedirectory'][0]."/.forward")) { $forward = file($info['homedirectory'][0]."/.forward"); Loading
plugins/sucsunreadmail 0 → 100755 +8 −0 Original line number Diff line number Diff line #!/bin/bash if finger -m $1 | grep "New mail" &> /dev/null then echo "1" else echo "0" fi No newline at end of file