mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-12 13:49:44 +00:00
7 lines
155 B
Bash
7 lines
155 B
Bash
#!/bin/sh
|
|
|
|
SOGOSPOOL=/var/spool/sogo
|
|
|
|
/usr/sbin/tmpreaper 24 "$SOGOSPOOL"
|
|
find "$SOGOSPOOL" -mindepth 1 -type d -empty -exec /bin/rmdir {} \; 2> /dev/null
|