Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Callum Massey
sucs-site
Commits
feafd46c
Commit
feafd46c
authored
Sep 14, 2015
by
Imran Hussain
Browse files
Move the sucsunreadmail script to the plugins folder from my home dir
parent
148b8dce
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/session.php
View file @
feafd46c
...
...
@@ -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
View file @
feafd46c
#!/bin/bash
if
finger
-m
$1
|
grep
"New mail"
&> /dev/null
then
echo
"1"
else
echo
"0"
fi
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment