isdn2dbox - on a call sends notification to dbox
isdn2dbox README
to install see INSTALL
if you wants to start this program without args please edit:
src/include/conf.h
if you intend to use MySQL
create a table with something like:
CREATE DATABASE isdn2dbox;
USE isdn2dbox;
CREATE TABLE addressbook
(
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
name CHAR(50) DEFAULT "unknow",
number CHAR(50) UNIQUE,
lastcall DATETIME NOT NULL
);
if You change anynumber name (database, table, column)
change it in src/include/mysql_conf.h
although see src/include/mysql_conf.h and edit it
WARRNING: name, number, lastcall must exist. don't care about lastcall column isdn2dbox will care
See ChangeLog
enjoy
cappa
Go back