Page 1 of 1

freephoneline

Posted: Fri Feb 17, 2017 2:26 am
by automationjackson
Having trouble getting 2 freephoneline accounts working. They both show as registered but when called they go straight to voicemail. I have tried voip, voip2, voip3 with no success. I see it has been an issue before, just wondering what everyone has done to solve the issue. I don't see any activity in the console. And i can move the registration back to my grandstream phone and all works as normal?

Thanks
Ryan

Re: freephoneline

Posted: Tue Feb 21, 2017 4:18 pm
by automationjackson
According to the FPL people, there is something wrong with my SS setup. Figured it was pretty straightforward...

Provider name = Random name
username = my FPL phone number
Password = my FPL password
server = voip.freephoneline.ca have tried 2,3 and 4 as well
register = checked
register contact = my sipsorcery accout @sipsorcery.com

Thanks
Ryan

Re: freephoneline

Posted: Thu Feb 23, 2017 3:30 pm
by automationjackson
Anyone?

Re: freephoneline

Posted: Tue Mar 07, 2017 5:27 pm
by DoDo
Try this.

Provider name = Freephoneline
username = my FPL phone number
Password = my FPL password
server = voip3.freephoneline.ca
register = checked
register contact = Your SipSorcery Sip Account Name @67.222.131.147


Dial Plan Name = Out. And on your SIP Account Out Dial Plan = Out. In Dial Plan = Leave it in Blank

Code: Select all

sys.Log("New outgoing call received to #{req.URI.User}.")

  case req.URI.User

 when /^[01]?([2-9]\d{9})/ then sys.Dial("Freephoneline")    # Area Code + Phone #
 when /^*98/ then sys.Dial("freephoneline")                  # Dial *98 for VoiceMail
 when /^30/ then sys.Dial("1234567890@Freephoneline")        # Dial 30 to SomeBody
 when /^31/ then sys.Dial("1098765432@Freephoneline")        # ^    31 ^  ^     ^
 when /^32/ then sys.Dial("1123456789@Freephoneline")        # ^    32 ^  ^     ^
 when /^33/ then sys.Dial("904@mouselike.org")               # Sound Test
 when /^34/ then sys.Dial("music@iptel.org")                 # Sound Music Test

   else sys.Dial(480, "OoPs NoOne is Available")

end