Aleksandar's computer workshop
Let's see what Aleksandar was fixing today.
My findings, tips & tricks related to computers, internet, programming and other stuff I was working with.

Free desktop sharing tool full of features. Remote support, web conference, online demonstration

August 11, 2009 17:33 by Aleksandar

Mikogo is a free desktop sharing tool full of features to assist you in conducting the perfect online meeting or web conference.
Take advantage of the opportunity to share any screen content or application over the Internet in true color quality with up to 10 participants simultaneously, while still sitting at your desk.

Mikogo can be employed for a range of professional, academic, or personal uses, including:

  • online meetings
  • web conferences
  • product demonstrations
  • web presentations
  • remote support
  • webinars
  • and more!  

Provide online technical support for your customers. Conduct product demonstrations for business customers. Use Mikogo to discuss and edit a current team project. The ideal tool for free online group collaboration.

Most important: it’s FREE for both commercial and private use.

http://www.mikogo.com

 


How to get 50GB free online storage

August 6, 2009 14:56 by Aleksandar

I came across ADrive offering free online storage of 50GB. It has a lot of interesting features and ensures that you have access to your data irrespective of your location. That means I can access all my data from any location without carrying USB flash drives and worrying about encryption and loss of data. Check this out.

http://www.adrive.com/

ADrive has a simple interface. You can edit your documents and spreadsheets online without the need to save them to your harddrive. You can also upload complete directories and folders to your account using ADrive's Java uploader. However, there is a limit of 2GB per upload.

It is easy to share your ADrive files. ADrive will generate links for your files to share by email. You can also unshare your files if you want to. The search bar makes it easy for you to locate your stored files. You can also transfer files from external websites and download or share them.

Signature and Premium users are also assured ad-free experience. ADrive is also planning to include features such as image gallery, media player, and folder sharing.

Nice alternative is Mozy. Simple, automatic, Secure online backup. 2 GB of 100% free online backup for your photos, music, and other files. No credit cards, no monthly payments or fees, and no expiration. Check it out here

https://mozy.com/?ref=6AF7R6


One more reason why I will never support, use or love Apple, Mac or iPhone

August 4, 2009 22:13 by Aleksandar

Usually I do not post this kind of stuff but I could not resist.

http://www.riverturn.com/blog/?p=455

http://www.riverturn.com/blog/?p=465


Tags: , ,
Categories: General
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

How to solve mystery of not sent CallerID via SIP in Asterisk

July 7, 2009 19:59 by Aleksandar

Today I was helping my colleague to find a reason why outgoing calls did not send out correct CallerID and all calls are shown as private on destination device.

First we checked the extensions.conf which does decent job and looks like this:

[forward]
exten => _X.,1,NoOp("going to do a forward to number")
exten => _X.,n,SetCallerPres(allowed)
exten => _X.,n,Set(CALLERID(num)=${IF($["${CALLERID(num):0:1}" = "0"]?"${CALLERID(num):1}":"${CALLERID(num)}")})
exten => _X.,n,Set(CALLERID(num)=${IF($["${CALLERID(num):0:1}" = "0"]?"${CALLERID(num):1}":"${CALLERID(num)}")})
exten => _X.,n,Set(CALLERID(num)=${IF($["${CALLERID(num):0:2}" = "31"]?"00${CALLERID(num)}":"${CALLERID(num)}")})
exten => _X.,n,Set(CALLERID(num)=${IF($["${CALLERID(num):0:4}" = "0031"]?"${CALLERID(num)}":"0031${CALLERID(num)}")})
exten => _X.,n,Set(CALLERID(name)=${CALLERID(num)})
exten => _X.,n,NoOp("************************ dialing ******************************************")
exten => _X.,n,NoOp(${CALLERID(all)})
exten => _X.,n,Dial(SIP/voipprovider/${DTNUM},25,r)
exten => _X.,n,Playback(silence/1)
exten => _X.,n,Dial(ZAP/r2/${DTNUM},15,r)
exten => _X.,n,NoOp("going to try once with backup number")
exten => _X.,n,Playback(silence/1)
exten => _X.,n,Dial(SIP/voipprovider/${DTBNUM},25,r)
exten => _X.,n,Playback(silence/1)
exten => _X.,n,Hangup

exten => s,1,NoOp("s 1 End")
exten => s,n,Hangup

exten => h,1,NoOp("h 1 End")
exten => h,n,DeadAGI(end_call.agi)
exten => h,n,Hangup

exten => t,1,NoOp("t 1 End")
exten => t,n,Hangup


Actual problem is setting in Sip.conf

[voipprovider]
username=***** <---- put your own stuff here
secret=****** <---- put your own stuff here
type=peer
qualify=no
nat=yes
insecure=very
host=sip.voicetrading.com
fromuser=someusername  <--- problem is here

canreinvite=no
allow=alaw
dtmfmode=inband
realm=voicetrading.com


Due to this one line which sets the fromuser value all outgoing calls had hidden/private CallerID. After removing this line code in extensions started working properly and all calls started to have correct CallerID.