Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
i got the limit today too, was about a 3min call.

So is everyone else doing this still getting limited? I don't have the app installed anymore but I would love to be able to make and receive calls from Wifi because I've been working in an area with no cell reception.
 
i havent tried it since personally, i will tonight...

i have been using freecall with this....basically its a 1800 number you call, listen to a 30 second ad and dial in the number you want to call. Works well with wifi, havent tried it without.
 
iSip and an sipsorcery.com account you don't need to use backgrounder. Straight up direct dialing.
 
iSip and an sipsorcery.com account you don't need to use backgrounder. Straight up direct dialing.

iSip was previously Siphon! :D Cool. Looks like a good tool. Now what's this sipsorcery.com? I can't find any good explanation.
 
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
 
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
Now that G5 is limited to 3 min call time. Could you post a dial plan to use without G5 and instead with Sipgate?

Thanx in advance
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.