Quick question maybe someone can point me in the right direction... Caller --> Receptionist --> ParksCall Receptionist makes announcement for individual to pick up parked call. No one picks up so it rings back to receptionist within a minute and a half. Is there any way to change the ringer for a parked call coming back since their call wasn't answered? -- ===================================================J. Oquendo http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1383A743 sil . infiltrated @ net http://www.infiltrated.net The happiness of society is the end of government. John Adams
Look over there : http://bugs.digium.com/view.php?id=6953 David -----Message d'origine----- De?: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] De la part de J. Oquendo Envoy??: 24 ao?t 2006 13:54 ??: Asterisk Users Mailing List - Non-Commercial Discussion Objet?: [asterisk-users] Call Parking Ring Back (Snoms) Quick question maybe someone can point me in the right direction... Caller --> Receptionist --> ParksCall Receptionist makes announcement for individual to pick up parked call. No one picks up so it rings back to receptionist within a minute and a half. Is there any way to change the ringer for a parked call coming back since their call wasn't answered? -- ===================================================J. Oquendo http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1383A743 sil . infiltrated @ net http://www.infiltrated.net The happiness of society is the end of government. John Adams _______________________________________________ --Bandwidth and Colocation provided by Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
You can have it come back on another line appearance that is set with different ringtone. On 8/24/06, J. Oquendo <sil@infiltrated.net> wrote:> Quick question maybe someone can point me in the right direction... > > Caller --> Receptionist --> ParksCall > Receptionist makes announcement for individual to pick up parked call. > No one picks up so it rings back to receptionist within a minute and a > half. Is there any way to change the ringer for a parked call coming > back since their call wasn't answered? > > -- > ===================================================> J. Oquendo > http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1383A743 > sil . infiltrated @ net http://www.infiltrated.net > > The happiness of society is the end of government. > John Adams > > _______________________________________________ > --Bandwidth and Colocation provided by Easynews.com -- > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-- --- Andrew Latham - AKA: LATHAMA (lay-th-ham-eh) lathama@lathama.com - lathama@gmail.com If any of the above are down we have bigger problems than my email! Hind sight is most always 20/20 or better. ---
Assume 4XX extensions and the SNOMs have a page extension that auto
answers in the 5XX range to match.
; Parking
exten => 6,1,NoOp()
exten =>
6,n,ParkAndAnnounce(call:ha/on:PARKED|105|SIP/5${BLINDTRANSFER:5:2}|default,74${BLINDTRANSFER:5:2},1)
exten => 6,hint,Local/6
; Parking Ring back
exten => _74XX,1,Set(CALLERID(name)=Parked Call)
exten => _74XX,n,ChanIsAvail(SIP/${EXTEN:1}|sj)
exten => _74XX,n,Dial(SIP/${EXTEN:1}|30)
exten => _74XX,n,Goto(default,${EXTEN},102)
exten => _74XX,102,Goto(operator,s,1)
; On parking failure
exten => 7,1,Goto(operator,s,1)
Does this help?
On 8/25/06, J. Oquendo <sil@infiltrated.net>
wrote:> Andrew Latham wrote:
> > You can have it come back on another line appearance that is set with
> > different ringtone.
> Would you happen to have to have an example context of this? I'm
puzzled
> by what you mean
>
> --
> ===================================================> J. Oquendo
> http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x1383A743
> sil . infiltrated @ net http://www.infiltrated.net
>
> The happiness of society is the end of government.
> John Adams
>
>
--
---
Andrew Latham - AKA: LATHAMA (lay-th-ham-eh)
lathama@lathama.com - lathama@gmail.com
If any of the above are down we have bigger problems than my email!
Hind sight is most always 20/20 or better.
---