voice mailbox in sipsorcery when devices dont answer how ?

Catalog of dial plans
Aaron
Site Admin
Posts: 4652
Joined: Thu Jul 12, 2007 12:13 am

Re: voice mailbox in sipsorcery when devices dont answer how

Post by Aaron » Wed Aug 31, 2011 12:07 pm

I'm not sure either how long the callcentric voicemail recordings can be or how long they store them for. I'm not a heavy user of voicemail and don't imagine I'll ever be pushing the boundaries of either.

As far as set up goes here's what I did:

1. On the callcentric web panel go to call treatments and set up a new rule that's one destination to voicemail (in other words always forward incoming calls to my callcentric number to voicemail),

2. My sipsorcery incoming dial plan then looks like this

Code: Select all

if req.URI.User == "someprovider.me"
  sys.Log("Incoming call on the main line.")
  sys.Dial("me@local", 10)
  sys.Dial("1777227xxxx@in.callcentric.com")
else
  sys.Log("Incoming call being processed by defaultin.")
  sys.Dial("me@local")
end
3. In this case I'm only using the callcentric voicemail with incoming calls for a single provider and for that provider I set the registration contact to someprovider.me.

qubo
Posts: 127
Joined: Tue Apr 12, 2011 6:11 am

Re: voice mailbox in sipsorcery when devices dont answer how

Post by qubo » Wed Aug 31, 2011 5:11 pm

thanks it worked. by the way the callcentric voicemail last much more than the voxalot. it seems that callcentric last all the message but voxalot last like15 sec and then cut the message if someone can verify this would be appreciate

Post Reply