Hi All,
I now have my Voip provider allowing me to send callerid, however it's
not quite working just yet. Can anyone tell me if there is something
wrong with my extensions_additional.conf entry:
[ext-findmefollow]
include => ext-findmefollow-custom
exten => 200,1,Macro(user-callerid,)
exten => 200,n,GotoIf($["${CALLERID(name):0:${LEN(${RGPREFIX})}}" !=
"${RGPREFIX}]"?NEWPREFIX)
exten => 200,n,Set(CALLERID(name)=${CALLERID(name):${LEN(${RGPREFIX})}})
exten => 200,n,SetCallerID(${CALLERIDNUM})
exten => 200,n(NEWPREFIX),Set(RGPREFIX=)
exten => 200,n,Set(CALLERID(name)=${RGPREFIX}${CALLERID(name)})
exten => 200,n,Set(RecordMethod=Group)
exten => 200,n,Macro(record-enable,${MACRO_EXTEN},${RecordMethod})
exten => 200,n,Set(RingGroupMethod=ringall)
exten => 200,n(DIALGRP),Macro(dial,20,
${DIAL_OPTIONS},4168436179#-300-201-200)
exten => 200,n,Set(RingGroupMethod=)
exten => 200,n,Goto(ext-local,${VM_PREFIX}200,1)
On Mon, 2006-08-14 at 11:55 -0400, Claudius Fortis wrote:
> Morning Mark,
>
> It all depends on whether or not your provider allows it....
>
> Here's a basic follow-me script that passes the callerID of the original
> caller.....
> I use it and works just like a charm
>
> exten => 4165550123,1,Answer
> exten => 4165550123,n,Wait(1)
> exten => 4165550123,n,Dial(SIP/4518,20)
> exten => 4165550123,n,SetCallerID(${CALLERIDNUM})
> exten => 4165550123,n,Dial(Local/[EMAIL PROTECTED],20)
> exten => 4165550123,n,VoiceMail([EMAIL PROTECTED])
>
>
> My 2 cents of the day!
>
> Regards,
>
> Claudius
> PS. Some providers that do not allow SetCallerID by default may be flexible
> permitting this if you just talk to them
>
>
>
> ----- Original Message -----
> From: Mark Rzepa [mailto:[EMAIL PROTECTED]
> To: [email protected]
> Sent: Mon, 14 Aug 2006 09:43:20 -0400
> Subject: [on-asterisk] follow me and call display
>
> Greetings,
>
> I have configured asterisk to "follow me" when someone calls my asterisk
> box, it will also ring my cell phone. When the call comes to my cell
> phone, it has the caller ID of the trunk that it dialed out with to
> reach my cell phone (which is usually my AIX trunk to my VOIP provider).
> Does anyone know of a way to get the caller id of the person calling to
> be passed down to my cell phone when doing a "follow me"?
>
> Mark Rzepa
>
>
Mark Rzepa