You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
256 B
8 lines
256 B
13 years ago
|
#!/bin/bash
|
||
|
|
||
|
TIME=$(/sbin/e-smith/db configuration getprop sogod SessionDuration || echo 1440)
|
||
|
TIME=$(($TIME*60))
|
||
|
|
||
|
# Remove old SOGo sessions entries
|
||
|
/usr/bin/mysql sogo -e "delete from sogo_sessions_folder where unix_timestamp(now())-c_lastseen > $TIME;"
|