mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
* src/mod_announce.erl: Bugfix (thanks to Christophe Romain)
SVN Revision: 992
This commit is contained in:
parent
e000cbb034
commit
7ad9874dba
33
ChangeLog
33
ChangeLog
@ -1,3 +1,7 @@
|
|||||||
|
2007-11-27 Alexey Shchepin <alexey@process-one.net>
|
||||||
|
|
||||||
|
* src/mod_announce.erl: Bugfix (thanks to Christophe Romain)
|
||||||
|
|
||||||
2007-11-27 Badlop <badlop@process-one.net>
|
2007-11-27 Badlop <badlop@process-one.net>
|
||||||
|
|
||||||
* doc/guide.tex: Added clarification about LDAP default port
|
* doc/guide.tex: Added clarification about LDAP default port
|
||||||
@ -9,23 +13,24 @@
|
|||||||
* src/mod_vcard_odbc.erl: Likewise.
|
* src/mod_vcard_odbc.erl: Likewise.
|
||||||
* doc/guide.tex: Updated documentation.
|
* doc/guide.tex: Updated documentation.
|
||||||
|
|
||||||
* src/mod_muc/mod_muc_room.erl: Don't show the room name as
|
* src/mod_muc/mod_muc_room.erl: Don't show the room name as the
|
||||||
the room description (EJAB-382).
|
room description (EJAB-382).
|
||||||
|
|
||||||
2007-11-26 Badlop <badlop@process-one.net>
|
2007-11-26 Badlop <badlop@process-one.net>
|
||||||
|
|
||||||
* src/ejabberd.cfg.example: Added example configuration of databases.
|
* src/ejabberd.cfg.example: Added example configuration of
|
||||||
|
databases.
|
||||||
|
|
||||||
* doc/guide.tex: Fixed several typos.
|
* doc/guide.tex: Fixed several typos.
|
||||||
|
|
||||||
* src/ejabberd_config.erl: Print error when the configuration
|
* src/ejabberd_config.erl: Print error when the configuration
|
||||||
requires ODBC, MySQL or PostgreSQL libraries but are not
|
requires ODBC, MySQL or PostgreSQL libraries but are not installed
|
||||||
installed (EJAB-210).
|
(EJAB-210).
|
||||||
|
|
||||||
* src/web/ejabberd_web_admin.erl: Added a favicon (EJAB-379).
|
* src/web/ejabberd_web_admin.erl: Added a favicon (EJAB-379).
|
||||||
|
|
||||||
* src/msgs/wa.msg: New Walon translation (thanks to
|
* src/msgs/wa.msg: New Walon translation (thanks to Pablo
|
||||||
Pablo Saratxaga) (EJAB-374).
|
Saratxaga) (EJAB-374).
|
||||||
|
|
||||||
* doc/guide.tex: Describe how ejabberd treats ejabberd.cfg file
|
* doc/guide.tex: Describe how ejabberd treats ejabberd.cfg file
|
||||||
(EJAB-384).
|
(EJAB-384).
|
||||||
@ -41,15 +46,15 @@
|
|||||||
(EJAB-247).
|
(EJAB-247).
|
||||||
|
|
||||||
* src/ejabberdctl.template: Removed bashisms (EJAB-399). Set
|
* src/ejabberdctl.template: Removed bashisms (EJAB-399). Set
|
||||||
environment variables instead of passing parameters when
|
environment variables instead of passing parameters when calling
|
||||||
calling erl (EJAB-421). Write erl_crash.dump in the log/
|
erl (EJAB-421). Write erl_crash.dump in the log/ directory, with
|
||||||
directory, with unique filename (EJAB-433).
|
unique filename (EJAB-433).
|
||||||
|
|
||||||
* src/ejabberd_ctl.erl: Improvements in the help messages
|
* src/ejabberd_ctl.erl: Improvements in the help messages
|
||||||
(EJAB-399).
|
(EJAB-399).
|
||||||
|
|
||||||
* doc/guide.tex: Improvements in sections ejabberdctl, and
|
* doc/guide.tex: Improvements in sections ejabberdctl, and Install
|
||||||
Install from Source (EJAB-399).
|
from Source (EJAB-399).
|
||||||
|
|
||||||
2007-11-25 Alexey Shchepin <alexey@process-one.net>
|
2007-11-25 Alexey Shchepin <alexey@process-one.net>
|
||||||
|
|
||||||
@ -77,8 +82,8 @@
|
|||||||
|
|
||||||
2007-11-05 Mickael Remond <mremond@process-one.net>
|
2007-11-05 Mickael Remond <mremond@process-one.net>
|
||||||
|
|
||||||
* src/ejabberd_config.erl: Refactoring: Move internal
|
* src/ejabberd_config.erl: Refactoring: Move internal data
|
||||||
data structure to an include file.
|
structure to an include file.
|
||||||
* src/ejabberd_config.hrl: Likewise.
|
* src/ejabberd_config.hrl: Likewise.
|
||||||
|
|
||||||
2007-11-03 Mickael Remond <mremond@process-one.net>
|
2007-11-03 Mickael Remond <mremond@process-one.net>
|
||||||
|
@ -101,7 +101,7 @@ stop(Host) ->
|
|||||||
ejabberd_hooks:delete(disco_local_items, Host, ?MODULE, disco_items, 50),
|
ejabberd_hooks:delete(disco_local_items, Host, ?MODULE, disco_items, 50),
|
||||||
ejabberd_hooks:delete(local_send_to_resource_hook, Host,
|
ejabberd_hooks:delete(local_send_to_resource_hook, Host,
|
||||||
?MODULE, announce, 50),
|
?MODULE, announce, 50),
|
||||||
ejabberd_hooks:delete(sm_register_connection_hook, Host,
|
ejabberd_hooks:delete(user_available_hook, Host,
|
||||||
?MODULE, send_motd, 50),
|
?MODULE, send_motd, 50),
|
||||||
Proc = gen_mod:get_module_proc(Host, ?PROCNAME),
|
Proc = gen_mod:get_module_proc(Host, ?PROCNAME),
|
||||||
exit(whereis(Proc), stop),
|
exit(whereis(Proc), stop),
|
||||||
|
Loading…
Reference in New Issue
Block a user