Before we upload the leads we make sure that there is no numbers with more or less than 10 digits, and we do not dial 011 numbers in this center.
This is the dial plan that we are using right now:
exten => _81NXXXXXXXXX,1,AGI(
agi://127.0.0.1:4577/call_log)
exten => _81NXXXXXXXXX,2,Dial(${SIPxcast}/${EXTEN:1},,tTor)
exten => _81NXXXXXXXXX,3,Hangup
please check this out:
mysql> select call_time, channel, queue_priority, phone_number from vicidial_auto_calls;
+---------------------+--------------------+----------------+--------------+
| call_time | channel | queue_priority | phone_number |
+---------------------+--------------------+----------------+--------------+
| 2012-12-17 19:52:49 | NULL | 0 | 6092925467 |
| 2012-12-17 19:52:46 | NULL | 0 | 6092918154 |
| 2012-12-17 19:52:46 | NULL | 0 | 6092916329 |
| 2012-12-17 20:04:59 | NULL | 50 | 6093961789 |
| 2012-12-17 20:04:59 | NULL | 50 | 6093961865 |
| 2012-12-17 19:52:44 | NULL | 0 | 6092910668 |
| 2012-12-17 20:05:10 | NULL | 50 | 6093963836 |
| 2012-12-17 19:52:45 | NULL | 0 | 6092914205 |
| 2012-12-17 20:04:59 | SIP/xcast-00001963 | 50 | 6093960906 |
| 2012-12-17 19:52:47 | NULL | 0 | 6092918758 |
| 2012-12-17 20:02:16 | SIP/xcast-00001944 | 0 | 9084562232 |
| 2012-12-17 20:05:07 | NULL | 50 | 6093963296 |
| 2012-12-17 20:05:12 | NULL | 50 | 6093964041 |
| 2012-12-17 20:05:07 | NULL | 50 | 6093962984 |
| 2012-12-17 20:04:54 | NULL | 50 | 6093960208 |
| 2012-12-17 20:05:05 | SIP/xcast-00001966 | 50 | 6093961951 |
| 2012-12-17 19:52:49 | NULL | 0 | 6092929647 |
| 2012-12-17 19:52:50 | NULL | 0 | 6092980387 |
| 2012-12-17 19:52:50 | NULL | 0 | 6092981960 |
| 2012-12-17 19:52:51 | NULL | 0 | 6092983465 |
| 2012-12-17 19:52:52 | NULL | 0 | 6092983767 |
+---------------------+--------------------+----------------+--------------+
21 rows in set (0.00 sec)
as you can seee there are calls that entered the table at 19:52 with the queue_priority =0 those calls are not hang up they are stuck in the table and it wont hang up, and you can see the numbers are with 10 digits also you see calls with a queue_priority=50 those are fine. and you see the time 20:05.
please advice