Freepbx 14 clear call recording

Installed FreePBX 14.0.11 is licensed under the GPL. Recording conversations and call logs filled the disc. Is there a module that will clear old entries. Is it possible to configure this automatically. Please give information on this subject.

Please check this one.I hope It will help you.
https://wiki.freepbx.org/display/FPG/Call+Recording+Reports

Thanks, Iā€™m considering free options, maybe just delete the record files from the directory
/var/spool/asterisk/monitor ?

A cron tab entry of

30 1 * * * /usr/bin/find /var/spool/asterisk/monitor/* -mtime +30 -delete >/dev/null

would quietly delete all files in /var/spool/asterisk/monitor/ over 30 days old every morning at 1:30

1 Like

Yup. If you want to schedule that cron job from within freepbx I normally just create a dummy backup with nothing actually backed up and put the script inside the pre backup script line. Works well.

Still cron though,

crontab -l -u asterisk

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.