Here's my requirement: I want to run a server preferably on linux that has a number to which a user can call and talk something and get his message recorded for later use. As I expect my number of users to be high, I want the server to handle multiple number of call connections from different users.<p>Can someone suggest a good way to get this done? Is this what call center softwares are about?
Unless you have a very, very, very high tolerance for pain, you should be using Twilio. It abstracts away the entire telephony piece of that puzzle and lets you interface with it using, basically, standard web programming tricks, callbacks, and REST APIs. You don't have to worry about phone lines, concurrency (except as relates to a web application), etc.<p>Acceptable alternatives on the same model include Tropo and Plivo.<p>If you're dead-set on running your own telephone equipment, then get a book on Asterisk and may God have mercy on your soul.<p>(Context: I'm a boring ol' systems engineer who runs several hundred users sending thousands of messages a day from an only modestly complicated Rails app which uses Twilio. Up until a few days ago it fit comfortably on a 2 GB VPS. We use Twilio to provide users with numbers that they can call in and record messages on, and then we do interesting things to those recordings and then repurpose them in a scalable fashion.)