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 e0557b9e26
commit e5d24089d2
8 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
{'../ejabberd-dev/src/gen_mod', [{outdir, "../ejabberd-dev/ebin"}, {i, "../ejabberd-dev/include"}]}.
{'../ejabberd-dev/src/lager_transform', [{outdir, "../ejabberd-dev/ebin"}, {i, "../ejabberd-dev/include"}]}.
{'../ejabberd-dev/src/lager_util', [{outdir, "../ejabberd-dev/ebin"}, {i, "../ejabberd-dev/include"}]}.
{'src/mod_mam', [{outdir, "ebin"}, {i, "../ejabberd-dev/include"}, {d, 'LAGER'}]}.
{'src/mod_mam_mnesia', [{outdir, "ebin"}, {i, "../ejabberd-dev/include"}, {d, 'LAGER'}]}.

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,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">>).