~ubuntu-branches/ubuntu/precise/ejabberd/precise-proposed

« back to all changes in this revision

Viewing changes to src/jlib.hrl

  • Committer: Bazaar Package Importer
  • Author(s): Konstantin Khomoutov, Konstantin Khomoutov
  • Date: 2010-07-26 20:36:14 UTC
  • mfrom: (1.1.15 upstream)
  • Revision ID: james.westby@ubuntu.com-20100726203614-s3asj0k5ym3bxhdw
Tags: 2.1.4-1
[ Konstantin Khomoutov ]
* Do not prevent ejabberd_debug from being installed and used
  as this was implemented upstream as the default behavior.
* Add build dependency on erlang-parsetools.
* Add 'sharedscripts' option to logrotate config.
* Update VCS references in control file to point to git.deb.at.
* Add group sticky bit to permissions on the log directory --
  this should make log files owned by the group "adm".
* Explicitly set umask to 027 before starting erl.
* Add patch with fix for EJAB-953 (closes: #590389).
* Fix call to setup_ejabberd in postinst.
* Fix owner/permissions for log files when upgrading.
* Minor fixes and clarifications in ejabberdctl.8 manual page.
* Refresh reopen-log.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
-define(NS_DISCO_ITEMS,  "http://jabber.org/protocol/disco#items").
23
23
-define(NS_DISCO_INFO,   "http://jabber.org/protocol/disco#info").
24
24
-define(NS_VCARD,        "vcard-temp").
 
25
-define(NS_VCARD_UPDATE, "vcard-temp:x:update").
25
26
-define(NS_AUTH,         "jabber:iq:auth").
26
27
-define(NS_AUTH_ERROR,   "jabber:iq:auth:error").
27
28
-define(NS_REGISTER,     "jabber:iq:register").
140
141
        ?STANZA_ERROR("407", "auth",   "subscription-required")).
141
142
-define(ERR_UNEXPECTED_REQUEST,
142
143
        ?STANZA_ERROR("400", "wait",   "unexpected-request")).
 
144
-define(ERR_UNEXPECTED_REQUEST_CANCEL,
 
145
  ?STANZA_ERROR("401", "cancel", "unexpected-request")).
143
146
%-define(ERR_,
144
147
%       ?STANZA_ERROR("", "", "")).
145
148