25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-12-20 17:27:00 +01:00

Add command to update PubSub table of ejabberd trunk SVN.

If you use ejabberd trunk SVN, run this command:
ejabberdctl rename_default_nodeplugin

SVN Revision: 2531
This commit is contained in:
Badlop 2009-08-25 15:23:23 +00:00
parent f303a40973
commit 64976e18b3
2 changed files with 10 additions and 0 deletions

View File

@ -50,6 +50,7 @@
- Added option s2s_dns_options to define DNS timeout and retries - Added option s2s_dns_options to define DNS timeout and retries
- Added option ERL_OPTIONS to ejabberdctl.cfg - Added option ERL_OPTIONS to ejabberdctl.cfg
- Added option FIREWALL_WINDOW to ejabberdctl.cfg - Added option FIREWALL_WINDOW to ejabberdctl.cfg
- Added option EJABBERD_PID_PATH to ejabberdctl.cfg
- Deleted option user_max_messages of mod_offline - Deleted option user_max_messages of mod_offline
- Check certfiles are readable on server start and listener start - Check certfiles are readable on server start and listener start
- Config file management mix file reading and sanity check - Config file management mix file reading and sanity check
@ -147,6 +148,7 @@
no need to use root account to. no need to use root account to.
- Only try to install epam if pam was enabled in configure script - Only try to install epam if pam was enabled in configure script
- Spool, config and log dirs: owner writes, group reads, others do nothing. - Spool, config and log dirs: owner writes, group reads, others do nothing.
- Provides an example ejabberd.init file
* S2S * S2S
- Option to define s2s outgoing behaviour: IPv4, IPv6 and timeout - Option to define s2s outgoing behaviour: IPv4, IPv6 and timeout
@ -213,6 +215,9 @@
- mod_offline has a new option: access_max_user_messages. - mod_offline has a new option: access_max_user_messages.
The old option user_max_messages is no longer supported. The old option user_max_messages is no longer supported.
- If you upgrade from ejabberd trunk SVN, you must execute this:
$ ejabberdctl rename_default_nodeplugin
- Default installation directories changed a bit: - Default installation directories changed a bit:
* The Mnesia spool files that were previously stored in * The Mnesia spool files that were previously stored in
/var/lib/ejabberd/db/NODENAME/* /var/lib/ejabberd/db/NODENAME/*

View File

@ -136,6 +136,11 @@ commands() ->
module = ?MODULE, function = delete_old_messages, module = ?MODULE, function = delete_old_messages,
args = [{days, integer}], result = {res, rescode}}, args = [{days, integer}], result = {res, rescode}},
#ejabberd_commands{name = rename_default_nodeplugin, tags = [mnesia],
desc = "Update PubSub table from ejabberd trunk SVN to 2.1.0",
module = mod_pubsub, function = rename_default_nodeplugin,
args = [], result = {res, rescode}},
#ejabberd_commands{name = mnesia_change_nodename, tags = [mnesia], #ejabberd_commands{name = mnesia_change_nodename, tags = [mnesia],
desc = "Change the erlang node name in a backup file", desc = "Change the erlang node name in a backup file",
module = ?MODULE, function = mnesia_change_nodename, module = ?MODULE, function = mnesia_change_nodename,