Commit feafd46c authored by Imran Hussain's avatar Imran Hussain
Browse files

Move the sucsunreadmail script to the plugins folder from my home dir

parent 148b8dce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");

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