Archives : June-2011
If you are using MySQL or MariaDB, this table schema for CDR table could be useful: CREATE TABLE `cdr` (`calldate` datetime NOT NULL DEFAULT 0000-00-00 00:00:00,`clid` varchar(80) COLLATE utf8_unicode_ci NOT NULL,`src` varchar(80) COLLATE utf8_unicode..
If you are using MySQL or MariaDB, this is the table schema for CEL ODBC backed:CREATE TABLE `cel` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,`e..
So, I finally got some time out to write about Asterisk and post some (hopefully relevant and useful) tips about it. The idea is to increase my understanding of Asterisk while at the same time post things that might help someone out there.There are s..
Ive been working with a set of SlackBuilds that might be helpful for people that want to install Asterisk 1.4/1.8 from source, but,maintaining the possibility to easily (painlessly) update/upgrade/uninstall/patch/recompile Asterisk.The Scripts are loca..
__sync_fetch_and_add is just a built in function (you dont have to include anything to use them) for managing atomic variables when developing multithread applications in C++. There are several functions for working with atomic variables.An atomic varia..
I am trying to configure the meetme conference (asterisk 1.8) to play a random sound file from a specific directory prior to it dropping the caller into the conference itself. i am able to successfully get it to play a specific file prior to enter..
In order to know the current call details you can follow one of the following suggestions that were discussed on the Asterisk Users mailing list:Parse the output of core show channels verbose. Remember that the field Channel should be unique, in ..
Is echo cancellation automatically disabled upon recognition of CNG tone? Does faxdetect=incoming sends a call to fax extension when CNG tone is detected? Whats the purpose of faxdetect=ou..