republican-creole
Search:  

 
 
   All ForumsHot TopicsGallery






how-to block ads


 
Forums » VOIP etc » Voice Over IP - VOIP » VOIP Tech Chat » Real reason why Grandcentral has 'press 1 to accept the call
Uniqs:
6073
Share Topic:
RSS topic:
toggle:
flat / full
normal / watch
Posting:
Post a:
Post a:
Which ATA to buy? »
« [Equipment] SPA 3000 / 3102 help desperately needed  
hoolahoous

join:2004-08-25
Red Valley, AZ

Real reason why Grandcentral has 'press 1 to accept the call

They claim that otherwise their service will not be able to use Grandcentral voicemail effectively (basically leaving voicemail on your home phone or cellphone instead of their website)..
but what if people DO NOT want their voicemail ? I for one find is more convenient to get voicemail on my answering machine rather then starting my computer and checking my email. They could easily give the option TO USER to either have 'press 1' or not ?? right ?? so why not ?

So here is the conspiracy theory..
1) Their business model could be to play advt. before voicemails once membership reaches critical masses.
2) since people are forced to use GC voicemail they will have to listen to ads
3) this defeats IVR. they can prevent people terminating calls on pbxes (terminating calls cost bucks) and pbxes are shared by several extensions. so they can reduce the incoming minutes

redshift
Premium
join:2004-03-23
Beverly Hills, CA

Re: Real reason why Grandcentral has 'press 1 to accept the call

I think it's to save on incoming calls going to answering machines or other such waste of minutes. Even if it's only 1 or 2 seconds if you multiply it by even 10 000 it ads up.
cbrain

join:2000-05-21
Silver Spring, MD
·VoicePulse for Bus..
·Verizon FIOS
·Comcast
·Future Nine Corpor..
·VoiceStick
·Packet8

I think it's a great feature. I recently had a problem period with bad cell reception at home. At the same time, SunRocket had a problem where I couldn't turn sim-ring off or change numbers. My cell voicemail would answer on the first ring before I could answer from a home phone. Around the same time I discovered a similar press 1 option in Asterisk which I think is great.

»Nice addition to simultaneous ring!

I don't know why it is not an option you can control. Try Asterisk, you could have it automatically send the 1.
mazilo
From Mazilo
Premium
join:2002-05-30
Lilburn, GA

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by cbrain See Profile :

Try Asterisk, you could have it automatically send the 1.
Why not tell us how to do this on asterisk?
bellhater
Premium
join:2003-10-08
canada

Re: Real reason why Grandcentral has 'press 1 to accept the call

I have done it.. Basicly in your inbound context here is an example of how I have done it in the past:

The following is an example of how to allow asterisk to take the call and voicemail.

exten => s,1,answer
exten => s,2,wait(2)
exten => s,3,SendDTMF(1)
exten => s,4,voicemail(U200)
exten => s,5,hangup

Now another example would be the same, however directed to your voip device, ring for 20 seconds and then go to voicemail if no answer from device1:

exten => s,1,answer
exten => s,2,wait(2)
exten => s,3,SendDTMF(1)
exten => s,4,dial(sip/device1,20)
exten => s,5,voicemail(u200)
exten => s,6,hangup

And lastly if you wanted to use asterisk to transfer the call to your home phone or any other phone number with the ability to allow voicemail on that phone number, if the line is busy, the line is busy in the context and will ring busy.. sometimes this confuses the caller, cause they will hear the gc ring, then a busy signal:

exten => s,1,answer
exten => s,2,wait(2)
exten => s,3,SendDTMF(1)
exten => s,4,dial(sip/17018255555@provider)
exten => s,5,busy

The information provided is for advanced users. If your a beginner I would offer my services to help for a very small fee as there are several interlinks to make this work as follows:

1:DID number from a provider
2:Asterisk server, virtual or physical (free open source ver)
3:Outbound provider (if allowing your calls to ring to a landline or cell phone)

You can use the gizmo project account to make the interconnect if you wanted to save some money and go virtually free from gc to voip device with asterisk passing the call.

Good luck!
hoolahoous

join:2004-08-25
Red Valley, AZ

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by bellhater See Profile :

here is an example of how I have done it in the past:

thanks.. i will work on this and post freepbx/trixbox instructions if successful..

tommy13v
Premium
join:2002-02-15
Glenville NY

1 edit
Very nice dialplan addition. Gotta love Asterisk and open source in general.
cbrain

join:2000-05-21
Silver Spring, MD
·VoicePulse for Bus..
·Verizon FIOS
·Comcast
·Future Nine Corpor..
·VoiceStick
·Packet8

said by mazilo See Profile :

said by cbrain See Profile :

Try Asterisk, you could have it automatically send the 1.
Why not tell us how to do this on asterisk?
Because I've never done it.

Sounds like you are using Trixbox. The above post looks like a good start. This would go in - extensions_custom.conf. If you use FreePBX to do your incoming config, you could start with "inbound routes" but send to "custom app" in "extensions_custom.conf" then from there send to an extension or ring group. If you use the fax handling remember your call is already answered. Below are a few commands you might play with. Let us know how you make out.

[extensions_custom.conf]

exten => s,n,Playtones(ring) ;play ringtone to caller if needed
exten => s,n,Goto(ext-group,1,1) ;go to ring group 1
exten => s,n,Goto(ext-local,1000,1) ; go to extension 1000
maxpower

join:2006-10-09
Providence, RI

quote:
I don't know why it is not an option you can control. Try Asterisk, you could have it automatically send the 1.
You wouldn't happen to know how to do that would you? I've done tons of searching and couldn't get a definitive answer.Thanks.
cbrain

join:2000-05-21
Silver Spring, MD
·VoicePulse for Bus..
·Verizon FIOS
·Comcast
·Future Nine Corpor..
·VoiceStick
·Packet8

I just gave it a try and it works.

First go to "config edit" and add the following to -extensions_custom.conf-
[custom-gc-did]
exten => 1,1,answer
exten => 1,n,wait(2)
exten => 1,n,SendDTMF(1)
exten => 1,n,Goto(ext-group,2,1) ;use a setup ring group or extension

Then go to FreePBX - setup - Inbound Routes - and set up or edit your Gizmo Project DID. In the - set destination - section set - Custom App: - to - custom-gc-did,1,1 -.

Then setup your ring group or extension.

If you need to have access to incoming from GrandCentral from your cell or other, change your inbound route from FreePBX directly to the same ring group or extension and toggle between press 1 and direct ring.
maxpower

join:2006-10-09
Providence, RI

1 edit
please delete
maxpower

join:2006-10-09
Providence, RI

1 edit
edited
cbrain

join:2000-05-21
Silver Spring, MD
·VoicePulse for Bus..
·Verizon FIOS
·Comcast
·Future Nine Corpor..
·VoiceStick
·Packet8

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by maxpower See Profile :

I followed the instructions and my calls ring, go to Grand Central voicemail, but my softphone shows that there is a call incoming. If I answer the call I just get dead air.
If you have trouble posting to BBR, this is probably not a project you should be playing with.

The purpose of GrandCentral is to make sim ring easy. My above work bypasses this and answers the line even though it appears to the caller it is still ringing. Don't use both at the same time. If you use Asterisk, turn off ringing other lines. If you need to ask these questions, don't play with this!
meb

join:2002-12-12
Potomac, MD

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by cbrain See Profile :

said by maxpower See Profile :

I followed the instructions and my calls ring, go to Grand Central voicemail, but my softphone shows that there is a call incoming. If I answer the call I just get dead air.
If you have trouble posting to BBR, this is probably not a project you should be playing with.

The purpose of GrandCentral is to make sim ring easy. My above work bypasses this and answers the line even though it appears to the caller it is still ringing. Don't use both at the same time. If you use Asterisk, turn off ringing other lines. If you need to ask these questions, don't play with this!
There are enough providers negative towards Asterisk. This is great information but if people misuse it, Google might make it more difficult.
maxpower

join:2006-10-09
Providence, RI
Yeah your right. I have so many problems with my Trixbox setup. Back to the lab I go.

Rembrand

@ap.net

There is a little problem with your theory. Simultaneous ring would be useless if one of the phones that the call is being sent to, is your cellphone. If the phone is off or outside the calling area then none of the other phones would ring and instead the call would go right away to your cellphone's voicemail.
You can still force it to leave a voicemail on your asterisk.(as others have shown) You might even be able to record the DTMF of the number one on your answering machine and see if it picks up the call.
All I'm saying is that grandcentral can't take off the option of pressing 1 for their service to work as it does.

said by hoolahoous See Profile :

They claim that otherwise their service will not be able to use Grandcentral voicemail effectively (basically leaving voicemail on your home phone or cellphone instead of their website)..
but what if people DO NOT want their voicemail ? I for one find is more convenient to get voicemail on my answering machine rather then starting my computer and checking my email. They could easily give the option TO USER to either have 'press 1' or not ?? right ?? so why not ?

So here is the conspiracy theory..
1) Their business model could be to play advt. before voice-mails once membership reaches critical masses.
2) since people are forced to use GC voicemail they will have to listen to ads
3) this defeats IVR. they can prevent people terminating calls on pbxes (terminating calls cost bucks) and pbxes are shared by several extensions. so they can reduce the incoming minutes
mazilo
From Mazilo
Premium
join:2002-05-30
Lilburn, GA

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by Rembrand :

All I'm saying is that grandcentral can't take off the option of pressing 1 for their service to work as it does.
I believe it is more appropriate to say GC just doesn't want to take off such option.

Rembrand

@ap.net

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by mazilo See Profile :

I believe it is more appropriate to say GC just doesn't want to take off such option.
Ok there is another scenario, let's imagine that they removed the option of pressing 1 and I have simultaneous ring at home and at my cellphone. Say I'm driving around and get an important call (International) but when I tried to get the cellphone "I couldn't get it out of my pants" and by the time I finally get it out it's 500ms too late because my home answering machine has already answered the call. If the option of dialing 1 was there then my home answering machine wouldn't have been able to pick up the call and I would have been able to pick it up.
hoolahoous

join:2004-08-25
Red Valley, AZ


1 edit

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by Rembrand :

said by mazilo See Profile :

I believe it is more appropriate to say GC just doesn't want to take off such option.
Ok there is another scenario, let's imagine that they removed the option of pressing 1 and I have simultaneous ring at home and at my cellphone. Say I'm driving around and get an important call (International) but when I tried to get the cellphone "I couldn't get it out of my pants" and by the time I finally get it out it's 500ms too late because my home answering machine has already answered the call. If the option of dialing 1 was there then my home answering machine wouldn't have been able to pick up the call and I would have been able to pick it up.
you are explaining why they should provide 'dial 1'. Now what if I want the voice mail to be left on home machine ??
so it could be argued both ways. Frankly speaking I do not use sim ring at all. I just use it as a plain vanilla incoming number. so 'press 1' is a pain-in-youknowwhere ..
IMHO if they let user decide how they want it that would be great.

edit: in your specific scenario you won't be able to take the call anyway since the call would go to GC voicemail..

zackwheat

join:2006-05-03
Blue Springs, MO
I saw this suggestion somewhere. Start your voicemail greeting by pressing "1", then leave the rest of your greeting.
cbrain

join:2000-05-21
Silver Spring, MD
·VoicePulse for Bus..
·Verizon FIOS
·Comcast
·Future Nine Corpor..
·VoiceStick
·Packet8

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by zackwheat See Profile :

I saw this suggestion somewhere. Start your voicemail greeting by pressing "1", then leave the rest of your greeting.
That's the GrandCentral voicemail, right?
hoolahoous

join:2004-08-25
Red Valley, AZ

Re: Real reason why Grandcentral has 'press 1 to accept the call

cbrain, your instructions worked flawlessly with my freepbx.. no more 'press 1' crap.. and the caller doesn't know the switch between grandcentral ringing and asterisk ringing.. purrrrrrrfect..
thanks..
cbrain

join:2000-05-21
Silver Spring, MD
·VoicePulse for Bus..
·Verizon FIOS
·Comcast
·Future Nine Corpor..
·VoiceStick
·Packet8

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by hoolahoous See Profile :

cbrain, your instructions worked flawlessly with my freepbx.. no more 'press 1' crap.. and the caller doesn't know the switch between grandcentral ringing and asterisk ringing.. purrrrrrrfect..
thanks..
Don't mention it.

I have the feeling Google likes things the way they are.
svikash

join:2003-02-16
Sunnyvale, CA

Re: Real reason why Grandcentral has 'press 1 to accept the call

cbrain,
I tried your instructions but they dont work for me. I think the problem is not your instructions but that I am not getting the DID passed on by the trunk. I am using GC->Gizmo->trixbox. What could be the reason for DID not being passed on? I have had my system for a long time(> 2 yrs) but never used DID filtering feature so maybe there is something generically not setup corretly with my freepbx.

Here is what I am seeing on the CLI:
12 sip peers [8 online , 4 offline]
-- Executing Set("SIP/gizmoDID-09eebe58", "FROM_DID=s") in new stack
-- Executing Goto("SIP/gizmoDID-09eebe58", "custom-ivr-2|s|1") in new stack
-- Goto (custom-ivr-2,s,1)
-- Executing Goto("SIP/gizmoDID-09eebe58", "ivr-2|s|1") in new stack
-- Goto (ivr-2,s,1)
-- Executing Set("SIP/gizmoDID-09eebe58", "LOOPCOUNT=0") in new stack
-- Executing Set("SIP/gizmoDID-09eebe58", "__DIR-CONTEXT=default") in new stack
-- Executing Answer("SIP/gizmoDID-09eebe58", "") in new stack
-- Executing Wait("SIP/gizmoDID-09eebe58", "1") in new stack
-- Executing Set("SIP/gizmoDID-09eebe58", "TIMEOUT(digit)=3") in new stack
-- Digit timeout set to 3
-- Executing Set("SIP/gizmoDID-09eebe58", "TIMEOUT(response)=10") in new stack
-- Response timeout set to 10
-- Executing BackGround("SIP/gizmoDID-09eebe58", "custom/welcome") in new stack
-- Playing 'custom/welcome' (language 'en')
== Spawn extension (ivr-2, s, 7) exited non-zero on 'SIP/gizmoDID-09eebe58'
-- Executing Hangup("SIP/gizmoDID-09eebe58", "") in new stack
== Spawn extension (ivr-2, h, 1) exited non-zero on 'SIP/17476333403-09eebe58'
hoolahoous

join:2004-08-25
Red Valley, AZ

Re: Real reason why Grandcentral has 'press 1 to accept the call

in your sip registration string for gizmo project at the end put the DID.. e.g.

username:password@server.com/XXXXXXXXXXX

now when the call comes in for that trunk, it will have the XXXXXXXXXXX as did

spggg

@bellsouth.net

I should probably not be suggesting this but I can see a really good reason to want to answer calls without having to hit 1. That would allow GC forwarded threw gizmo to a free of cost DID in any USA area code for a PBXes, astrick, woxalot, etc. set up with dial plans or any other application. It is also awkward to forward calls to a shared phone(such as a work phone) and have a computer respond when someone else picks up the line. I understand why it is nessacary with multiple phones ringing. But there could be an option that allows one specific line to answer or it could be allowed only when GC is only forwarded to a single line. I believe GC likely does not want people using there service as an incoming DID with SIP services and that is the reason for the policy.

I am working on a simple solution to workaround this; will post when I have it done.
hoolahoous

join:2004-08-25
Red Valley, AZ

Re: Real reason why Grandcentral has 'press 1 to accept the call

said by spggg :

I am working on a simple solution to workaround this; will post when I have it done.
huh ?? did you read the previous page ?
huckleberry

join:2007-08-29
Clarksville, TN

1 edit
not sure if this is the right place to ask but could anyone spare an invite 2 grandcentral? pleeeeaaaase

Already got it. Thanks anyway.
Forums » VOIP etc » Voice Over IP - VOIP » VOIP Tech ChatWhich ATA to buy? »
« [Equipment] SPA 3000 / 3102 help desperately needed  


Tuesday, 24-Nov 07:25:40 Terms of Use | Privacy Policy | Hosting by www.nac.net - DSL,Hosting & Co-lo | feedback | contact
over 10 years online! © 1999-2009 dslreports.com.
page compression OFF
Most commented news this week
· [86] New AT&T Ad Campaign Hits Back At Verizon
· [58] New Bill Takes Aim At Higher Verizon ETFs
· [30] AT&T Offers New Prepaid Wireless plans
· [29] Earthlink Suffers From Major E-mail Outage
· [27] Frontier Increases Modem Rental Fee
· [13] Vivendi In Way Of Comcast's NBC Desires
· [12] Charter Still Fighting With Creditors
· [7] Monday Morning Links
Most people now reading
· Windows 7 boot manager editing questions [Microsoft Help]
· 3.x Feral Druid - Bear Tanking Guide [World of Warcraft]
· Using DIR-615 C1/3.01 with Trendnet TEW-652BRP in N Mode [D-Link]
· Big Bank Alternative to Bank of America? [General Questions]
· Connecting to Google Voice Via SIP [VOIP Tech Chat]
· IE8 InPrivate filter from adblock plus list [Microsoft Help]
· RG Firmware update to VDSL2 this morning [AT&T U-verse]
· What to use while demonoid is down? [Filesharing Software]
· DIR-655 1.32 firmware - DNS relay issue (fixed) [D-Link]
· [ Classes] Druid tanking: rotation and glyphs [World of Warcraft]