aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-26 22:03:10 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-09-26 22:03:10 +0000
commit527b4d2896d4d1344f4bc4dad75d163a2a42b029 (patch)
tree4c32c4f598d97824d7c72aba960c2cefe85ccd25 /doc
parent81ea65303b659573bf244e0d5d5d2adbb45747e7 (diff)
Remove MySQL support from default Asterisk in accordance with new MySQL library licensing
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1550 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/README.mysql15
-rwxr-xr-xdoc/cdr_mysql.txt29
2 files changed, 15 insertions, 29 deletions
diff --git a/doc/README.mysql b/doc/README.mysql
new file mode 100755
index 000000000..27adaa956
--- /dev/null
+++ b/doc/README.mysql
@@ -0,0 +1,15 @@
+MYSQL LICENSING UPDATE
+======================
+We were recently contacted by MySQL and informed that the MySQL client
+libraries are now under GPL license and not LGPL license as before.
+
+Since Asterisk does allow exceptions to GPL, we are removing MySQL support
+from standard Asterisk. We will, where appropriate, make it available via
+a separate package which will only be usable when Asterisk is used completely
+within GPL (i.e. not in conjunction with G.729, OpenH.323, etc). We
+apologize for the confusion.
+
+You may find this in the new "asterisk-addons" package.
+
+Mark Spencer
+Digium
diff --git a/doc/cdr_mysql.txt b/doc/cdr_mysql.txt
deleted file mode 100755
index 5c3fffdee..000000000
--- a/doc/cdr_mysql.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-Call Detail Recording for MySQL
-===============================
-
-Usage:
-======
-
-Include the module in your modules.conf. Change the database hostname, database name, username, and password in cdr_mysql.conf.
-
-Create a table called cdr under the database name you will be using the following schema.
-
-CREATE TABLE cdr (
- calldate datetime NOT NULL default '0000-00-00 00:00:00',
- clid varchar(45) NOT NULL default '',
- src varchar(45) NOT NULL default '',
- dst varchar(45) NOT NULL default '',
- dcontext varchar(45) NOT NULL default '',
- channel varchar(45) NOT NULL default '',
- dstchannel varchar(45) NOT NULL default '',
- lastapp varchar(45) NOT NULL default '',
- lastdata varchar(45) NOT NULL default '',
- duration int(11) NOT NULL default '0',
- billsec int(11) NOT NULL default '0',
- disposition varchar(45) NOT NULL default '',
- amaflags int(11) NOT NULL default '0',
- accountcode varchar(45) NOT NULL default '',
- uniqueid varchar(45) NOT NULL default ''
-);
-
-The calls will automatically be logged as long as the module is loaded.