Mercurial > prosody-modules
view mod_log_messages_sql/README.markdown @ 3106:1fe7da46e915
mod_auto_answer_disco_info: Don’t traceback on iqs coming from mod_muc.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 08 Jun 2018 15:25:27 +0200 |
parents | a216be9b1d6e |
children | 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`·