Any one have any solution for this? We need to have the caller id information announced when the phone is answered. for example I am sitting at my desk, my phone rings. I pick it up and hear call from 5555555555 to except press 1 to decline press to any help would be grately appreciated! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050116/c14cd5f7/attachment.htm
> Any one have any solution for this? > We need to have the caller id information announced when the phone is > answered. > for example > I am sitting at my desk, my phone rings. > I pick it up and hear call from 5555555555 to except press 1 to declineThe Grandstream BT100 series phones will do this without the help of asterisk. Otherwise, you can write an extension to do it, allowing for calls with callerid disabled of course.
Hi, ----- Original Message ----- From: "Wilson Pickett" <spamsucks2005@gmail.com> To: "Asterisk Users Mailing List - Non-Commercial Discussion" <asterisk-users@lists.digium.com> Sent: Sunday, January 16, 2005 10:20 AM Subject: Re: [Asterisk-Users] announcing caller id?> > Any one have any solution for this? > > We need to have the caller id information announced when the phone is > > answered. > > for example > > I am sitting at my desk, my phone rings. > > I pick it up and hear call from 5555555555 to except press 1 to decline > > The Grandstream BT100 series phones will do this without the help of > asterisk. Otherwise, you can write an extension to do it, allowing for > calls with callerid disabled of course.could you please give some more info how to do this ? Thanks, Rob.> ____,___________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users
Chris Polk wrote:> Any one have any solution for this? > We need to have the caller id information announced when the phone is answered. > for example > I am sitting at my desk, my phone rings. > I pick it up and hear call from 5555555555 to except press 1 to decline press to > > any help would be grately appreciated!"show application dial" Pay special attention to the M() option.
On Sun, 2005-01-16 at 14:49 +0100, Robert Rozman wrote:> could you please give some more info how to do this ?Use Custom ring 1 tone with with a blank Caller ID -- Dave Cotton <dcotton@linuxautrement.com>
You can try this: exten => 101/,1,Dial(device,options...) exten => 101,1,Dial(device,M(acallerid)) exten => 101,2,Voicemail(u${EXTEN}) exten => 101,102,Voicemail(b${EXTEN}) [macro-acallerid] ;assuming that: ; incoming.gsm exists and says: ; You have an incming call from.. ; and options.gsm exists and says: ; to accept press 1, to send to voice mail press 2. exten => s,1,Playback(incoming) exten => s,2,Saydigits(${CALLERIDNUM}) exten => s,3,Background(options) exten => s,4,Read(ACCEPT|custom/screnn-accept|1) exten => s,5,Gotoif($[${ACCEPT} = 1] ?50) ;connect exten => s,6,Gotoif($[${ACCEPT} = 2] ?30) ;reject to vm exten => s,30,SetVar(MACRO_RESULT=CONTINUE) exten => s,31,Goto(50) exten => s,50,Noop("") You can follow the following instructions to do more: http://lists.digium.com/pipermail/asterisk-users/2004-December/080417.html On Sun, 16 Jan 2005 18:01:11 +0100, Dave Cotton <dcotton@linuxautrement.com> wrote:> On Sun, 2005-01-16 at 14:49 +0100, Robert Rozman wrote: > > > could you please give some more info how to do this ? > > Use Custom ring 1 tone with with a blank Caller ID > > -- > Dave Cotton <dcotton@linuxautrement.com> > > _______________________________________________ > Asterisk-Users mailing list > Asterisk-Users@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >
sorry I copied and pasted from the already posted stuff it should read: You can try this: exten => 101/,1,Dial(device,options...) exten => 101,1,Dial(device,M(acallerid)) exten => 101,2,Voicemail(u${EXTEN}) exten => 101,102,Voicemail(b${EXTEN}) [macro-acallerid] ;assuming that: ; incoming.gsm exists and says: ; You have an incming call from.. ; and options.gsm exists and says: ; to accept press 1, to send to voice mail press 2. exten => s,1,Playback(incoming) exten => s,2,Saydigits(${CALLERIDNUM}) exten => s,3,Read(ACCEPT|options|1) exten => s,4,Gotoif($[${ACCEPT} = 1] ?50) ;connect exten => s,5,Gotoif($[${ACCEPT} = 2] ?30) ;reject to vm exten => s,30,SetVar(MACRO_RESULT=CONTINUE) exten => s,31,Goto(50) exten => s,50,Noop("") You can follow the following instructions to do more: http://lists.digium.com/pipermail/asterisk-users/2004-December/080417.html On Sun, 16 Jan 2005 13:15:12 -0500, C F <shmaltz@gmail.com> wrote:> You can try this: > exten => 101/,1,Dial(device,options...) > exten => 101,1,Dial(device,M(acallerid)) > exten => 101,2,Voicemail(u${EXTEN}) > exten => 101,102,Voicemail(b${EXTEN}) > > [macro-acallerid] > ;assuming that: > ; incoming.gsm exists and says: > ; You have an incming call from.. > ; and options.gsm exists and says: > ; to accept press 1, to send to voice mail press 2. > > exten => s,1,Playback(incoming) > exten => s,2,Saydigits(${CALLERIDNUM}) > exten => s,3,Background(options) > exten => s,4,Read(ACCEPT|custom/screnn-accept|1) > exten => s,5,Gotoif($[${ACCEPT} = 1] ?50) ;connect > exten => s,6,Gotoif($[${ACCEPT} = 2] ?30) ;reject to vm > > exten => s,30,SetVar(MACRO_RESULT=CONTINUE) > exten => s,31,Goto(50) > exten => s,50,Noop("") > You can follow the following instructions to do more: > http://lists.digium.com/pipermail/asterisk-users/2004-December/080417.html > > > On Sun, 16 Jan 2005 18:01:11 +0100, Dave Cotton > <dcotton@linuxautrement.com> wrote: > > On Sun, 2005-01-16 at 14:49 +0100, Robert Rozman wrote: > > > > > could you please give some more info how to do this ? > > > > Use Custom ring 1 tone with with a blank Caller ID > > > > -- > > Dave Cotton <dcotton@linuxautrement.com> > > > > _______________________________________________ > > Asterisk-Users mailing list > > Asterisk-Users@lists.digium.com > > http://lists.digium.com/mailman/listinfo/asterisk-users > > To UNSUBSCRIBE or update options visit: > > http://lists.digium.com/mailman/listinfo/asterisk-users > > >