Search found 13 matches

by Wortelstok
Sat Aug 08, 2009 2:01 pm
Forum: News
Topic: sipsorcery.com
Replies: 92
Views: 160669

Thanks, I got signed in later on.
It took me a while to understand the setup of the new site, especially what is the difference between SIP accounts and Providers. But now I start to understand and this thing really looks great.
by Wortelstok
Tue Aug 04, 2009 6:46 pm
Forum: News
Topic: sipsorcery.com
Replies: 92
Views: 160669

I could not create an account, neither in Firefor nor in Chromium not in IE. When I open the page it says (top right): Coult not connect to provisioning service ...
Then, when I fill out the new account page, it says (in the Form frame): [browserhttpwebrequest_webexception_remoteserver]
by Wortelstok
Mon Mar 09, 2009 2:54 pm
Forum: Feature Requests
Topic: How about a sys.HTTPGet() method
Replies: 11
Views: 4392

Now what about HTTPGet to send an SMS in case the call is forwarded to a voicemail system? Something like this, I put the Voipbuster SMS call in bold (I don't know much of Ruby, but tried it anyway). url = " https://myaccount.voipbuster.com/clx/sendsms.php?username=xxxxxxxxxx&password=xxxxxxxxxx&fro...
by Wortelstok
Thu Feb 12, 2009 1:44 pm
Forum: Technical Support
Topic: Ruby command for web url?
Replies: 1
Views: 622

Ruby command for web url?

Hi there, I am enjoying a lot using Mysipswitch. I have set up a voicemail through voxalot: if sys.In then sys.Dial("xxxxxx@local",27) sys.Dial("yyyyyyy@eu.voxalot.com") But since MWI is not working for me, I would like to accompany this with an SMS message. Such can be executed by pasting the web u...
by Wortelstok
Sun Jul 06, 2008 11:43 am
Forum: Technical Support
Topic: Forwarding inkoming CID to PSTN
Replies: 14
Views: 4572

Hi Wortelstok, The callerid setting will depend on your provider in this case Intervoip. To request it from the sipswitch side you can have a look at http://www.mysipswitch.com/forum/viewtopic.php?t=222. Things have changed since that post so that you can now set the From header on the SIP provider...
by Wortelstok
Sat Jul 05, 2008 2:18 pm
Forum: Technical Support
Topic: Forwarding inkoming CID to PSTN
Replies: 14
Views: 4572

Forwarding inkoming CID to PSTN

I am forwarding incoming DID calls to PSTN using the provider Intervoip (a cheap new Betamax clone without FUP). Is there any way to forward also the Caller ID? Or, maybe with another provider (in the Netherlands). Intervoip will show the CID of the incoming provider. sys.Log("call from #{req.Header...
by Wortelstok
Sat Jul 05, 2008 11:33 am
Forum: Technical Support
Topic: Ruby: incoming calls with delayed call hunting
Replies: 6
Views: 1608

Hi Wortelstok, Well, it's not a matter of fixing, but of designing a new feature. We have had a few problems lately and fixing them is the priority, then, we are already involved in a few interesting improvements which are taking up time. You'll need to wait a little bit, I'm afraid. Regards Guilla...
by Wortelstok
Fri Jul 04, 2008 6:42 pm
Forum: Technical Support
Topic: Ruby: incoming calls with delayed call hunting
Replies: 6
Views: 1608

gbonnet wrote:hi
That's not possible as for now, but I think that can be added easily enough. I'll have a chat with Aaron and we will post an update asap.
Guillaume
Dear Guillaume, did you fix this in the mean time?
Thanks! Wortelstok.
by Wortelstok
Thu Jun 05, 2008 6:00 pm
Forum: Technical Support
Topic: Ruby: forwarding in case of internet outage
Replies: 1
Views: 963

Works! #Ruby sys.Log("call from #{req.Header.From.FromURI.ToString()} to #{req.URI.User}.") sys.Log("isavailable=#{sys.IsAvailable().ToString()}.") if sys.In then if sys.IsAvailable() # no action if all is well, receiving provider in ATA else # no SIP account online sys.Dial("0031612345678@Voipcheap...
by Wortelstok
Tue Jun 03, 2008 8:16 pm
Forum: Technical Support
Topic: Ruby: forwarding in case of internet outage
Replies: 1
Views: 963

Ruby: forwarding in case of internet outage

Dear Guillaume or Aaron, The following script should work in case of internet outage, however it doesn't for me. If I enter it and press "update" it will say (forever) "updating please wait". So something must be wrong in the script but I can't figure it out. It has nothing to do with the monitoring...