Rename mod_mam to mod_mam_mnesia

Rename mod_mam so that users can continue to run it until we provide an
upgrade path to the mod_mam version shipped with ejabberd 15.06.
This commit is contained in:
Holger Weiss 2015-06-25 21:08:56 +02:00
parent 76c6d17d4b
commit 932987447d
6 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
mod_mam - Message Archive Management (XEP-0313)
mod_mam_mnesia - Message Archive Management (XEP-0313)
Author: Holger Weiss <holger@zedat.fu-berlin.de>
Requirements: ejabberd 14.12 or newer
@ -19,7 +19,7 @@ synchronization of multiple clients.
In order to use this module with the default settings, add the following
line to the 'modules' section of your ejabberd.yml file:
mod_mam: {}
mod_mam_mnesia: {}
The configurable options are:

View File

@ -1,5 +1,5 @@
Feature requests for mod_mam
Feature requests for mod_mam_mnesia
- Add ODBC support.
- Support archiving preferences (XEP-0313, section 6).

View File

@ -1,4 +1,4 @@
modules:
mod_mam:
mod_mam_mnesia:
default_page_size: 25
max_page_size: 100

View File

@ -1,5 +1,5 @@
%%%----------------------------------------------------------------------
%%% File : mod_mam.erl
%%% File : mod_mam_mnesia.erl
%%% Author : Holger Weiss <holger@zedat.fu-berlin.de>
%%% Purpose : Message Archive Management (XEP-0313)
%%% Created : 25 Jan 2015 by Holger Weiss <holger@zedat.fu-berlin.de>
@ -23,7 +23,7 @@
%%%
%%%----------------------------------------------------------------------
-module(mod_mam).
-module(mod_mam_mnesia).
-author('holger@zedat.fu-berlin.de').
-define(NS_MAM, <<"urn:xmpp:mam:0">>).