If you need to delete old recordings on your system:
Login to the system shell as a root user and find /home/servers/pbxware/pw/var/spool/asterisk/monitor -ctime +DAYS > -exec rm {}; Remove +DAYS with the number of days.
For example: find /home/servers/pbxware/pw/var/spool/asterisk/monitor -ctime +180 > -exec rm {}; This command will delete all recordings older than 180 days.
|