Software /
code /
prosody-modules
File
mod_log_messages_sql/README.markdown @ 2668:f8fc79b3051a
mod_pep_plus: Import from Prosody trunk ae3c5abb3336
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 04 Apr 2017 15:09:04 +0100 |
parent | 2406:a216be9b1d6e |
child | 3438:b74c86d137c9 |
line wrap: on
line source
# Introduction This module logs messages to a SQL database. SQL connection options are configured in a `message_log_sql` option, which has the same syntax as the `sql` option for [mod_storage_sql][doc:modules:mod_storage_sql]. # Usage You will need to create the following table in the configured database: ``` sql CREATE TABLE `prosodyarchive` ( `host` TEXT, `user` TEXT, `store` TEXT, `id` INTEGER PRIMARY KEY AUTOINCREMENT, `when` INTEGER, `with` TEXT, `resource` TEXT, `stanza` TEXT); ``` # Compatibility Does *NOT* work with 0.10 due to a conflict with the new archiving support in `mod_storage_sql`·