This function allows you to keep track all sent and received messages. YOu can check if sent messages were successfully delivered because the software enters also the result codes of delivery reports into the database.
During installation the script mysmsd will be copied to /usr/local/bin/mysmsd. This script adds a new entry to a table in the sql database whenever you sent or received a message.
Install this script as an eventhandler in /etc/smsd.conf.
Please ensure that you have the following programs installed:
mysql daemon
mysql client
formail
sed
cut
Modify the script /usr/local/bin/mysmsd> if you use a different database than the default. The password may be empty if the user who starts smsd does not need a password to log into the mysql database.
Create a log database with the following structure
| Field | Type | Null | Key | Default | Extra |
+-------------+----------+------+-----+---------+----------------+
| id | int(11) | | PRI | NULL | auto_increment |
| type | char(16) | YES | | NULL | |
| sent | datetime | YES | | NULL | |
| received | datetime | YES | | NULL | |
| sender | char(32) | YES | | NULL | |
| receiver | char(32) | YES | | NULL | |
| status | char(3) | YES | | NULL | |
| msgid | char(3) | YES | | NULL | |
+-------------+----------+------+-----+---------+----------------+
If you are searching for a graphical sql client then try the mysql navigator or kmysql.
But you can also use the mysql command line client.
This is an example table with one of each possible event types:
| id | type | sent | received | sender | receiver | status | msgid |
+----+----------+---------------------+---------------------+--------------+--------------+--------+-------+
| 1 | RECEIVED | 2000-02-21 22:26:23 | 2002-06-06 12:16:23 | 491721234567 | MODEM1 | NULL | NULL |
| 2 | SENT | 2002-06-06 12:16:34 | 2002-06-06 12:16:59 | somebody | 491721234567 | 0 | 117 |
| 3 | FAILED | 2002-06-06 12:16:48 | NULL | somebody | 491721234567 | NULL | NULL |
+----+----------+---------------------+---------------------+--------------+--------------+--------+-------+
The book describes this much more in detail. If you are not familiar with mysql then the book will be very useful for you.