September 2022

Searching for a string in Asterisk

If you wish to search for a certain string in Asterisk only (Example: only show carrier congestion), launch the Asterisk CLI along with the grep command, i.e.: asterisk -rvvvvv | egrep -i “string” Example (showing only congestion notices / errors) asterisk -rvvvvv | egrep -i “congested”

Deleting recordings older than X days

To remove recordings older than X days (i.e. 3 days), SSH into your dialer and run the following campaign: find /var/spool/asterisk/monitorDONE/MP3 -type f -mtime +3 -exec rm {} ; find /var/spool/asterisk/monitorDONE/ORIG -type f -mtime +3 -exec rm {} ;

How to export leads with certain disposition only from ViCiDial / GoAutoDial using PHPMyAdmin

To export only leads with a specific disposition (in this example SALE) from only certain campaigns (in this example 1000, 2000), please log in to PHPMyAdmin and run the following SQL: select * from vicidial_list where status=”SALE” and list_id in (select list_id from vicidial_lists where campaign_id=1000 or campaign_id=2000) Click on the Export button on the bottom and …

How to export leads with certain disposition only from ViCiDial / GoAutoDial using PHPMyAdmin Read More »