[Home]

Summary:ASTERISK-03345: [request] Support callerid with realtime extensions
Reporter:vamsipottangi (vamsipottangi)Labels:
Date Opened:2005-01-25 03:14:16.000-0600Date Closed:2011-06-07 14:05:18
Priority:MajorRegression?No
Status:Closed/CompleteComponents:Channels/chan_sip/DatabaseSupport
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:
Description: Hi,

Case1:
-----------> extensions.conf
exten => 1023,1,Voicemail(101)
exten => 1023/101,1,MeetMe(200)

Case2:
---------> extensions table (using realtime extensions)
+----+---------+----------+--------+----------+--------+
| id | context | exten    |priority| app      | appdta |
+----+---------+----------+--------+----------+--------+
| 29 | default | 1023     |    1   | Voicemail | 01    |
| 30 | default | 1023/101 |    1   | MeetMe    | 200    |

In the first case when user 101 dials 1023, it directs him
to meetme room 200.
But in the case of realtime extensions it directs user 101
to Voicemail of 101, like any other user. It doesn't
consider 1023/101 entry.

How can I achieve proper routing in case of realtime ?

Thanks,
~Vamsi
Comments:By: Clod Patry (junky) 2005-01-25 06:22:34.000-0600

Next time, please add the CVS-HEAD version too (show version).
It's better for everyone to know that information.

Thanks

By: Olle Johansson (oej) 2005-01-28 01:30:54.000-0600

This is not a SIP problem, is it? It's a REALTIME problem. I think you filed in the wrong category.

Also, in order to help you it would be good to get some kind of debug output of the transaction to compare them. Turn on SIP debug, set debug and verbosity to 5 and place a call with config files and one with realtime. Add the files to the bug tracker so we can compare the actions and see if we can spot the problem.

Thank you.

By: Brian West (bkw918) 2005-01-28 11:34:50.000-0600

pbx_realtime issue not SIP.

bkw

By: Mark Spencer (markster) 2005-01-28 17:12:48.000-0600

It's also documented explicitly, albeit in pbx_realtime.c

By: twisted (twisted) 2005-02-03 00:28:52.000-0600

/* Realtime switch looks up extensions in the supplied realtime table.

       [context@][realtimetable][/options]

       If the realtimetable is omitted it is assumed to be "extensions".  If no context is
       specified the context is assumed to be whatever is the container.

       The realtime table should have entries for context,exten,priority,app,args

       The realtime table currently does not support callerid fields.

*/

By: Olle Johansson (oej) 2005-02-13 13:10:19.000-0600

pbx_realtime does not support caller id according to documentation. When we have a patch, we will re-open bug report and continue.

By: Olle Johansson (oej) 2005-02-13 13:10:36.000-0600

--