does anyone know if this works outside the US?
Google Voice is only available in the US, so no.
Is this whole deal sort of a "beta test" as far as GV goes? Are they slowly rolling it out to see how it does?
does anyone know if this works outside the US?
i got the limit today too, was about a 3min call.
iSip and an sipsorcery.com account you don't need to use backgrounder. Straight up direct dialing.
num = '1' + $1 if num =~ /^[1]?([2-9]\d{9,9})/
GV_email = "xxxxx@gmail.com"
GV_pwd = "XXXXXX"
GV_num = "xxxxxxxxxx"
G5_num = "1747xxxxxxx"
SG_num = "1415xxxxxxx"
areaCode = "xxx"
case num
when /^[1]?(900|976|809)/
sys.Log("Calls to #{req.URI.User} not allowed.\t")
sys.Log("-------------------------------------------------------------\n")
sys.Respond(488, "Call not allowed")
when /^1747/ then
sys.Log("Calling Gizmo number using G5.\t")
sys.Log("-------------------------------------------------------------\n")
sys.Dial("#{num}@Gizmo")
when /^[1]?((800|866|877|888)\d{7})/ #IPKall allows free Toll-Free calls
sys.Dial("#{$1}@voiper.ipkall.com")
when /^411/ then #Google411 via ipkall
sys.Dial("8004664#{num}@voiper.ipkall.com"){num}",GV_num)
#when /^*/ then
#sys.Log("Calling using GV/G5.\t")
#sys.Log("-------------------------------------------------------------\n")
#sys.GoogleVoiceCall(GV_email,GV_pwd,G5_num,num)
else
sys.Log(" Dialing USA #{req.URI.User} through GV/SG service\t")
sys.Log("*****************************************************\n")
sys.GoogleVoiceCall(GV_email,GV_pwd,SG_num,num,GV_num)
end
Now that G5 is limited to 3 min call time. Could you post a dial plan to use without G5 and instead with Sipgate?sipsorcery.com is a web based sip server which allows you to use multiple VoIP providers as trunks based on your dialplan. iSip will log into your sipsorcery account as any other VoIP service but its your dialplan which indicates which provider you actually use. Here is my dialplan to give you an idea. Aaron of sipsorcery setup a command to initiate GoogleVoice HTML requests for dialing so that you don't need to wait for a call back, it places your initial call on park and once it connects to your Gizmo number (or Sipgate in my case) it will then proceed with the call. The can get more info at the forums mysipswitch.com
Code:num = '1' + $1 if num =~ /^[1]?([2-9]\d{9,9})/ GV_email = "xxxxx@gmail.com" GV_pwd = "XXXXXX" GV_num = "xxxxxxxxxx" G5_num = "1747xxxxxxx" SG_num = "1415xxxxxxx" areaCode = "xxx" case num when /^[1]?(900|976|809)/ sys.Log("Calls to #{req.URI.User} not allowed.\t") sys.Log("-------------------------------------------------------------\n") sys.Respond(488, "Call not allowed") when /^1747/ then sys.Log("Calling Gizmo number using G5.\t") sys.Log("-------------------------------------------------------------\n") sys.Dial("#{num}@Gizmo") when /^[1]?((800|866|877|888)\d{7})/ #IPKall allows free Toll-Free calls sys.Dial("#{$1}@voiper.ipkall.com") when /^411/ then #Google411 via ipkall sys.Dial("8004664#{num}@voiper.ipkall.com"){num}",GV_num) #when /^*/ then #sys.Log("Calling using GV/G5.\t") #sys.Log("-------------------------------------------------------------\n") #sys.GoogleVoiceCall(GV_email,GV_pwd,G5_num,num) else sys.Log(" Dialing USA #{req.URI.User} through GV/SG service\t") sys.Log("*****************************************************\n") sys.GoogleVoiceCall(GV_email,GV_pwd,SG_num,num,GV_num) end