Mercurial > prosody-modules
annotate mod_log_messages_sql/README.markdown @ 2395:2e641ab995b3
mod_cloud_notify: added code to respond to the new event "smacks-ack-delayed" issued by mod_smacks when acks are delayed for a certain amount of time. This allows to send out notification requests before the read timeout or connection close event really happens, thus allowing conversations to be smoother.
| author | tmolitor <thilo@eightysoft.de> |
|---|---|
| date | Thu, 24 Nov 2016 01:15:08 +0100 |
| parents | 35ae59a8196d |
| children | a216be9b1d6e |
| rev | line source |
|---|---|
| 2323 | 1 This module logs messages to a SQL database. |
| 2 | |
| 3 SQL connection options are configured in a `message_log_sql` option, | |
| 4 which has the same syntax as the `sql` option for | |
| 5 [mod_storage_sql][doc:modules:mod_storage_sql]. | |
| 6 | |
| 7 You will need to create the following table in the configured database: | |
| 8 | |
| 9 ``` sql | |
| 10 CREATE TABLE `prosodyarchive` ( | |
| 11 `host` TEXT, | |
| 12 `user` TEXT, | |
| 13 `store` TEXT, | |
| 14 `id` INTEGER PRIMARY KEY AUTOINCREMENT, | |
| 15 `when` INTEGER, | |
| 16 `with` TEXT, | |
| 17 `resource` TEXT, | |
| 18 `stanza` TEXT); | |
| 19 ``` |
