mflorell wrote:Do you have the proper 'h' exten in every context of your extensions.conf?
do any of the phone numbers left in the vicidial_auto_calls table have 0 or 1 as the first or fourth digit?
Are any of them not 10 digits in length?
We are using the "default" context. it has a line:
exten => h,1,DeadAGI(
agi://127.0.0.1:4577/call_log--HVcauses ... EBUG-----${HANGUPCAUSE}-----${DIALSTATUS}-----${DIALEDTIME}-----${ANSWEREDTIME})
I'll wait till the issue apears again and gatter those details from vicidial_auto_calls table.
Another weird thing is this :
mysql> select status,count(*) status from vicidial_list where list_id='00001027' group by 1;
+--------+--------+
| status | status |
+--------+--------+
| B | 873 |
| DC | 22573 |
| DROP | 2 |
| NA | 23513 |
| NEW | 24981 |
| PU | 18176 |
+--------+--------+
6 rows in set (0.70 sec)
mysql> select status,count(*) status from vicidial_log where campaign_id='00001027' group by 1;
+--------+--------+
| status | status |
+--------+--------+
| B | 854 |
| DC | 22262 |
| NA | 23516 |
| PU | 18176 |
+--------+--------+
4 rows in set (0.28 sec)
both are the campaign and list used in that campaign.
Is this right ?
Thanks for your help mflorell =)