commit:     83204c35ec21f6ec3b8f744e11cd92f43bf9ff2f
Author:     Vadim A. Misbakh-Soloviov <git <AT> mva <DOT> name>
AuthorDate: Tue Jan  5 16:23:47 2016 +0000
Commit:     Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Tue Jan  5 16:23:47 2016 +0000
URL:        https://gitweb.gentoo.org/proj/lua.git/commit/?id=83204c35

prosody-modules: bump; scripts: pm_bumper: added;

Signed-off-by: Vadim A. Misbakh-Soloviov <git <AT> mva.name>

 Documentation/scripts/prosody-modules_bumper.lua   | 213 +++++++++++++++
 net-im/prosody-modules/metadata.xml                | 300 +++++++++++----------
 net-im/prosody-modules/prosody-modules-9999.ebuild |  93 ++++---
 3 files changed, 420 insertions(+), 186 deletions(-)

diff --git a/Documentation/scripts/prosody-modules_bumper.lua 
b/Documentation/scripts/prosody-modules_bumper.lua
new file mode 100755
index 0000000..ccba722
--- /dev/null
+++ b/Documentation/scripts/prosody-modules_bumper.lua
@@ -0,0 +1,213 @@
+#!/usr/bin/env luajit
+--[[
+if type(arg) ~= "table" then
+       error"Something wrong with Lua installation (unable to handle 
arguments)"
+end
+
+local p = require"posix";
+local uid = p.getuid();
+
+local cmd = {};
+table.insert(cmd,arg[-1])
+arg[-1]=nil
+
+for _,opt in pairs(arg) do
+       table.insert(cmd,opt);
+end
+cmd=table.concat(cmd," ")
+
+if tonumber(uid) ~= 250 then
+       assert(not(arg[#arg]:match("under_sudo_portage")),"Broken Gentoo 
installation (portage not UID=250)")
+       local exitcode=os.execute("sudo -u portage "..cmd.." 
#under_sudo_portage")
+       os.exit(exitcode);
+end
+]]
+local cURL = require"cURL";
+local html = require"htmlparser"
+--local lfs  = require"lfs"
+
+math.randomseed(tonumber(math.randomseed(os.time()) or os.time())+os.time()); 
-- randomize
+
+local st;
+local env_filename = os.tmpname();
+
+st = os.execute("emerge --info > "..env_filename)
+assert(st==0,"emerge --info failed")
+local env_fd=io.open(env_filename)
+local op,pt;
+for line in env_fd:lines() do
+       local mop=line:match([=[location: (/.*lua)]=]);
+       local mpt=line:match([=[PORTAGE_TMPDIR=['"](/.*)['"]]=]);
+       if mop then
+               op=mop;
+       elseif mpt then
+               pt=mpt;
+       end
+end
+env_fd:close();
+os.remove(env_filename)
+
+assert(op~=nil,"Unable to get Lua overlay path from emerge --info")
+assert(pt~=nil,"Unable to get PORTAGE_TMPDIR from emerge --info")
+
+local UAs = {
+  "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20130101 Firefox/37.0"; 
-- Firefox 37, Windows 7, 64bit
+  "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:37.0) Gecko/20130101 
Firefox/37.0"; -- Firefox 37, Ubuntu 12, 32bit
+  "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.22 (KHTML, like Gecko) 
Chrome/41.0.2272.118 Safari/537.22"; -- Chrome 34, Windows 7, 64bit
+  "Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) 
Chrome/43.0.2357.10 Safari/537.22"; -- Chrome 34, Windows XP
+  "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.22 (KHTML, 
like Gecko) Chrome/42.0.2311.82 Safari/537.22"; -- Chrome 25, Mac OS 10.7
+  "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.22 (KHTML, like Gecko) 
Chrome/43.0.2537.10 Safari/537.22"; -- Chrome 25, Linux, 64bit
+  "Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.22 (KHTML, like Gecko) 
Chrome/43.0.2537.10 Safari/537.22"; -- Chrome 25, Linux, 32bit
+  "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)"; -- 
Internet Explorer 9, Windows 7, 64bit
+  "Mozilla/5.0 (compatible; MSIE 11.0; Windows NT 8.1; WOW64; Trident/7.0)"; 
-- Internet Explorer 11, Windows 8.1, 64bit
+  "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.17 
(KHTML, like Gecko) Version/6.0.2 Safari/536.26.17"; -- Safari, Mac OS 10.8
+}
+
+local headers = {
+       "Accept: text/*",
+       "Accept-Language: ru,en",
+       "Accept-Charset: utf-8,cp1251,koi8-r,iso-8859-5,*",
+       "Cache-Control: no-cache"
+}
+
+local modules = {}
+local e_p = op.."/net-im/prosody-modules/prosody-modules-9999.ebuild";
+local md_p = op.."/net-im/prosody-modules/metadata.xml";
+local function ebuild(ph)
+       return os.execute("sudo -u portage ebuild "..e_p.." "..ph.." 
>/dev/null");
+end
+
+assert(ebuild"clean unpack","Failed to fetch modules")
+--for mod in 
lfs.dir(pt.."/portage/net-im/prosody-modules-9999/work/prosody-modules-9999") do
+for mod in io.popen([[sudo -u portage find 
]]..pt..[[/portage/net-im/prosody-modules-9999/work/prosody-modules-9999 
-maxdepth 1 -mindepth 1 -type d -name 'mod_*']]):lines() do
+       table.insert(modules,mod:match("mod_(.*)"));
+end
+table.sort(modules);
+assert(ebuild"clean","Failed to cleanup modules")
+
+local function wrap(str, limit, indent, indent1)
+       local indent = indent or ""
+       local indent1 = indent1 or indent
+       local limit = limit or 72
+       local here = 1-#indent1
+       return indent1..str:gsub("(%s+)()(%S+)()",
+               function(sp, st, word, fi)
+                       if fi-here > limit then
+                               here = st - #indent
+                               return "\n"..indent..word
+                       end
+               end)
+end
+
+local eol="\n"
+local temp_fd,err=io.tmpfile();
+assert(temp_fd,err);
+
+local function manage_ebuild()
+local eb_fd,err=io.open(e_p);
+assert(eb_fd,err);
+local inside=false;
+for line in eb_fd:lines() do
+       if line:match([[^PROSODY_MODULES]]) then
+               temp_fd:write(line);
+               temp_fd:write(eol)
+               inside=true;
+       elseif inside and (line:match([[^"$]])) then
+               inside=false;
+               temp_fd:write("\t");
+               temp_fd:write((wrap(table.concat(modules," 
")):gsub(eol,eol.."\t")));
+               temp_fd:write(eol);
+               temp_fd:write(line);
+               temp_fd:write(eol);
+       elseif inside and (line:match("^\t")) then
+               local nop;
+       else
+               temp_fd:write(line);
+               temp_fd:write(eol);
+       end
+end
+
+temp_fd:flush();
+assert(temp_fd:seek("set")==0,"WARNING: OS is broken!")
+eb_fd:close();
+
+local eb_fd,err=io.open(e_p,"w+");
+assert(eb_fd,err);
+
+for line in temp_fd:lines() do
+       eb_fd:write(line..eol)
+end
+assert(temp_fd:seek("set")==0,"WARNING: OS is broken!")
+eb_fd:close();
+end
+manage_ebuild();
+
+local c = cURL.easy_init()
+c:setopt_httpheader(headers)
+c:setopt_cookiefile("")
+c:setopt_followlocation(1)
+
+local function get_flag_desc(flag)
+       local buf,desc="","";
+       local base_url="https://modules.prosody.im/mod_"..flag..".html";;
+
+       c:setopt_useragent(UAs[math.random(1,#UAs)]);
+       c:setopt_url(base_url);
+       c:setopt_writefunction(function(result) buf=buf..result; return true; 
end);
+       c:perform();
+
+       local dom=html.parse(buf)('div.container.container-fluid div.col-md-8 
p');
+
+       if #dom>0 then
+               desc=dom[1]:getcontent();
+       end
+
+       desc=desc and 
desc:gsub([=[(href=["'])(mod_[^"']+.html)(["'])]=],"%1https://modules.prosody.im/%2%3";)
+
+       return desc or "No documentation yet :("
+end
+
+local function manage_metadata()
+local md_fd,err=io.open(md_p);
+assert(md_fd,err);
+local inside=false;
+for line in md_fd:lines() do
+       if line:match([[<use>]]) then
+               temp_fd:write(line);
+               temp_fd:write(eol)
+               inside=true;
+       elseif inside and (line:match([[</use>]])) then
+               inside=false;
+               for _,mod in ipairs(modules) do
+                       temp_fd:write("\t<flag 
name='"..mod.."'>"..get_flag_desc(mod).."</flag>");
+                       temp_fd:write(eol);
+               end
+--             temp_fd:write((wrap(table.concat(modules," 
")):gsub(eol,eol.."\t")));
+               temp_fd:write(eol);
+               temp_fd:write(line);
+               temp_fd:write(eol);
+       elseif inside and (line:match("<flag")) then
+               local nop;
+       else
+               temp_fd:write(line);
+               temp_fd:write(eol);
+       end
+end
+
+temp_fd:flush();
+assert(temp_fd:seek("set")==0,"WARNING: OS is broken!")
+md_fd:close();
+
+local md_fd,err=io.open(md_p,"w+");
+assert(md_fd,err);
+
+for line in temp_fd:lines() do
+       md_fd:write(line..eol)
+end
+assert(temp_fd:seek("set")==0,"WARNING: OS is broken!")
+md_fd:close();
+end
+manage_metadata();
+
+c:close();
+os.exit(0);

diff --git a/net-im/prosody-modules/metadata.xml 
b/net-im/prosody-modules/metadata.xml
index 0143920..a3319d7 100644
--- a/net-im/prosody-modules/metadata.xml
+++ b/net-im/prosody-modules/metadata.xml
@@ -10,195 +10,219 @@
 </maintainer>
 <longdescription>Prosody IM server's community-writen modules</longdescription>
 <use>
-       <flag name='addressing'>This module is a partial implementation of <a 
href="http://xmpp.org/extensions/xep-0033.html"; rel="nofollow">XEP-0033: 
Extended Stanza Addressing</a>.</flag>
-       <flag name='adhoc_account_management'>This module adds an ad-hoc 
command that lets an user change their password.  This is useful for clients 
that don`t have support for <a href="http://xmpp.org/extensions/xep-0077.html"; 
rel="nofollow">XEP-0077</a> style password changing.  In the future, it may 
provide other account management commands.</flag>
+
+
+       <flag name='addressing'>This module is a partial implementation of <a 
href="http://xmpp.org/extensions/xep-0033.html";>XEP-0033: Extended Stanza 
Addressing</a>.</flag>
+       <flag name='adhoc_account_management'>This module adds an ad-hoc 
command that lets an user change their password. This is useful for clients 
that don't have support for <a 
href="http://xmpp.org/extensions/xep-0077.html";>XEP-0077</a> style password 
changing. In the future, it may provide other account management 
commands.</flag>
+       <flag name='adhoc_blacklist'>This module provides the <em>Edit 
Blacklist</em> ad-hoc command described in <a 
href="http://xmpp.org/extensions/xep-0133.html#edit-blacklist";>XEP-0133</a> and 
also performs the actual blocking of incoming and outgoing server-to-server 
connections.</flag>
+       <flag name='admin_blocklist'>This module uses the blocklists set by 
admins for blocking s2s connections.</flag>
        <flag name='admin_message'>This module provides a console over XMPP. 
All the commands of the mod_admin_telnet module are available from an XMPP 
client.</flag>
-       <flag name='admin_probe'>No module description on upstream wiki 
yet.</flag>
+       <flag name='admin_probe'>This module lets server administrators send 
<code>&lt;presence type=&quot;probe&quot;/&gt;</code> to any local user and 
receive their presence in response, bypassing roster checks.</flag>
        <flag name='admin_web'>This module provides a basic web administration 
interface. It currently gives you access to Ad-Hoc commands on any virtual host 
or component that you are set as an administrator for in the Prosody config 
file. It also provides a live list of all S2S and C2S connections.</flag>
+       <flag name='alias'>This module allows you to set up aliases that alert 
people who try to contact them or add them to their roster what your actual JID 
is. This is useful for changing JIDs, or just in the case where you own both 
example.com and example.net, and want people who contact y...@example.com to be 
alerted to contact you at y...@example.net instead.</flag>
        <flag name='auth_any'>This module accepts any username and password, 
which can be useful for testing.</flag>
        <flag name='auth_ccert'>This module implements PKI-style client 
certificate authentication. You will therefore need your own Certificate 
Authority. How to set that up is beyond the current scope of this 
document.</flag>
-       <flag name='auth_custom_http'>No module description on upstream wiki 
yet.</flag>
+       <flag name='auth_custom_http'>To authenticate users, this module does a 
<code>POST</code> request to a configured URL with a JSON payload. It is not 
async so requests block the server until answered.</flag>
        <flag name='auth_dovecot'>This is a Prosody authentication plugin which 
uses Dovecot as the backend.</flag>
        <flag name='auth_external'>Allow client authentication to be handled by 
an external script/process.</flag>
        <flag name='auth_ha1'>This module authenticates users against hashed 
credentials stored in a plain text file. The format is the same as that used by 
reTurnServer.</flag>
-       <flag name='auth_http_async'>No module description on upstream wiki 
yet.</flag>
-       <flag name='auth_imap'>No module description on upstream wiki 
yet.</flag>
-       <flag name='auth_internal_yubikey'>A <a 
href="http://www.yubico.com/yubikey"; rel="nofollow">YubiKey</a> is a small USB 
one-time-password (OTP) generator.</flag>
+       <flag name='auth_http_async'>This is an experimental authentication 
module that does an asynchronous HTTP call to verify username and 
password.</flag>
+       <flag name='auth_imap'>This is a Prosody authentication plugin which 
uses a generic IMAP server as the backend.</flag>
+       <flag name='auth_internal_yubikey'>A <a 
href="http://www.yubico.com/yubikey";>YubiKey</a> is a small USB 
one-time-password (OTP) generator.</flag>
        <flag name='auth_joomla'>This module allows you to authenticate against 
an Joomla database.</flag>
        <flag name='auth_ldap'>This is a Prosody authentication plugin which 
uses LDAP as the backend.</flag>
-       <flag name='auth_ldap2'>See <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_lib_ldap";>mod_lib_ldap</a>
 for more information.</flag>
+       <flag name='auth_ldap2'>See <a 
href="https://modules.prosody.im/mod_lib_ldap.html";>mod_lib_ldap</a> for more 
information.</flag>
        <flag name='auth_pam'>This module makes Prosody authenticate users 
against PAM (Linux Pluggable Authentication Modules)</flag>
        <flag name='auth_phpbb3'>This module allows you to authenticate against 
an PHPBB3 database.</flag>
        <flag name='auth_sql'>Allow client authentication to be handled by an 
SQL database query.</flag>
        <flag name='auth_wordpress'>This module allows you to authenticate 
against an Wordpress database.</flag>
-       <flag name='auto_accept_subscriptions'>In some environments where all 
users on the system have mutual trust in each other, it`s sometimes fine to 
skip the usual authorization process to add someone to your contact list and 
see their status.</flag>
+       <flag name='auto_accept_subscriptions'>In some environments where all 
users on the system have mutual trust in each other, it's sometimes fine to 
skip the usual authorization process to add someone to your contact list and 
see their status.</flag>
        <flag name='auto_activate_hosts'>By default Prosody does not 
automatically activate/deactivate hosts when they are added to and removed from 
the configuration.</flag>
-       <flag name='bidi'>This module implements <a 
href="http://xmpp.org/extensions/xep-0288.html"; rel="nofollow">XEP-0288: 
Bidirectional Server-to-Server Connections</a>.  It allows servers to use a 
single connection for sending stanzas to each other, instead of two connections 
(one for stanzas in each direction).</flag>
+       <flag name='benchmark_storage'>To benchmark 
<code>mod_storage_internal</code>:</flag>
+       <flag name='bidi'>This module implements <a 
href="http://xmpp.org/extensions/xep-0288.html";>XEP-0288: Bidirectional 
Server-to-Server Connections</a>. It allows servers to use a single connection 
for sending stanzas to each other, instead of two connections (one for stanzas 
in each direction).</flag>
+       <flag name='block_registrations'>On a server with public registration 
it is usually desirable to prevent registration of certain &quot;reserved&quot; 
accounts, such as &quot;admin&quot;.</flag>
+       <flag name='block_s2s_subscriptions'>No documentation yet :(</flag>
+       <flag name='block_strangers'>No documentation yet :(</flag>
+       <flag name='block_subscribes'>No documentation yet :(</flag>
+       <flag name='block_subscriptions'>No documentation yet :(</flag>
        <flag name='blocking'>Privacy lists are a widely implemented protocol 
for instructing your server on blocking communications with selected users and 
services.</flag>
-       <flag name='block_registrations'>On a server with public registration 
it is usually desirable to prevent registration of certain "reserved" accounts, 
such as "admin".</flag>
-       <flag name='block_s2s_subscriptions'>No module description on upstream 
wiki yet.</flag>
-       <flag name='block_strangers'>No module description on upstream wiki 
yet.</flag>
-       <flag name='block_subscribes'>No module description on upstream wiki 
yet.</flag>
-       <flag name='block_subscriptions'>No module description on upstream wiki 
yet.</flag>
-       <flag name='broadcast'>This module largely duplicates the functionality 
of the standard mod_announce that is included with Prosody. It was developed 
for compatibility with some clients (e.g. iChat) that do not support ad-hoc 
commands or sending to JIDs with the format 
`example.com/announce/online`.</flag>
+       <flag name='broadcast'>This module largely duplicates the functionality 
of the standard mod_announce that is included with Prosody. It was developed 
for compatibility with some clients (e.g. iChat) that do not support ad-hoc 
commands or sending to JIDs with the format 
'example.com/announce/online'.</flag>
        <flag name='c2s_conn_throttle'>This module allows to throttle those 
client connections which exceed a n*seconds limit.</flag>
        <flag name='c2s_limit_sessions'>This module lets you limit number of 
resources a user may connect.</flag>
        <flag name='candy'>This is a very simple demo module showing how to 
serve a BOSH-using web app from prosody.</flag>
-       <flag name='captcha_registration'>Prosody-captcha is a little 
modification of prosody`s "mod_register.lua" module that provides captcha 
protection for registration form.</flag>
-       <flag name='carbons'>This module implements <a 
href="http://xmpp.org/extensions/xep-0280.html"; rel="nofollow">XEP-0280: 
Message Carbons</a>, allowing users to maintain a shared and synchronized view 
of all conversations across all their online clients and devices.</flag>
-       <flag name='carbons_adhoc'>No module description on upstream wiki 
yet.</flag>
-       <flag name='carbons_copies'>No module description on upstream wiki 
yet.</flag>
-       <flag name='checkcerts'>This module periodically checks your 
certificate to see if it is about to expire soon.  The time before expiry is 
printed in the logs.  About a week before a certificate expires, reminder 
messages will be sent to admins.</flag>
-       <flag name='client_certs'><a 
href="http://xmpp.org/extensions/xep-0257.html"; rel="nofollow">XEP-0257</a> 
specifies a protocol for clients to store and manage client side certificates. 
When a client presents a stored client side certificate during the TLS 
handshake, it can log in without supplying a password (using SASL EXTERNAL). 
This makes it possible to have multiple devices accessing an account, without 
any of them needing to know the password, and makes it easier to revoke access 
for a single device.</flag>
-       <flag name='compat_bind'>No module description on upstream wiki 
yet.</flag>
-       <flag name='compat_muc_admin'>No module description on upstream wiki 
yet.</flag>
-       <flag name='compat_vcard'>No module description on upstream wiki 
yet.</flag>
-       <flag name='component_client'>No module description on upstream wiki 
yet.</flag>
+       <flag name='captcha_registration'>Prosody-captcha is a little 
modification of prosody's &quot;mod_register.lua&quot; module that provides 
captcha protection for registration form.</flag>
+       <flag name='carbons'>This module implements <a 
href="http://xmpp.org/extensions/xep-0280.html";>XEP-0280: Message Carbons</a>, 
allowing users to maintain a shared and synchronized view of all conversations 
across all their online clients and devices.</flag>
+       <flag name='carbons_adhoc'>No documentation yet :(</flag>
+       <flag name='carbons_copies'>No documentation yet :(</flag>
+       <flag name='checkcerts'>This module periodically checks your 
certificate to see if it is about to expire soon. The time before expiry is 
printed in the logs. About a week before a certificate expires, reminder 
messages will be sent to admins.</flag>
+       <flag name='client_certs'><a 
href="http://xmpp.org/extensions/xep-0257.html";>XEP-0257</a> specifies a 
protocol for clients to store and manage client side certificates. When a 
client presents a stored client side certificate during the TLS handshake, it 
can log in without supplying a password (using SASL EXTERNAL). This makes it 
possible to have multiple devices accessing an account, without any of them 
needing to know the password, and makes it easier to revoke access for a single 
device.</flag>
+       <flag name='cloud_notify'>This is an implementation of the server bits 
of <a href="http://xmpp.org/extensions/xep-0357.html";>XEP-0357: Push 
Notifications</a>. It allows clients to register an &quot;app server&quot; 
which is notified about new messages while the user is offline or disconnected. 
Implementation of the &quot;app server&quot; is not included<a href="#fn1" 
class="footnoteRef" id="fnref1"><sup>1</sup></a>.</flag>
+       <flag name='compact_resource'>No documentation yet :(</flag>
+       <flag name='compat_bind'>No documentation yet :(</flag>
+       <flag name='compat_dialback'>This module provides a workaround for 
servers that do not set the <code>to</code> attribute on stream headers, which 
is required per <a 
href="https://tools.ietf.org/html/rfc6120";>RFC6120</a>:</flag>
+       <flag name='compat_muc_admin'>Adds compatibility for old 
clients/libraries attempting to change affiliations and retrieve 'em sending 
the &lt; http://jabber.org/protocol/muc#owner &gt; xmlns instead of &lt; 
http://jabber.org/protocol/muc#admin &gt;.</flag>
+       <flag name='compat_vcard'>No documentation yet :(</flag>
+       <flag name='component_client'>No documentation yet :(</flag>
        <flag name='component_roundrobin'>This module enables multiple 
instances of external components to connect at the same time, and does 
round-robin load-balancing of incoming stanzas.</flag>
        <flag name='conformance_restricted'>This module sends processing 
instructions, comments, DTDs and a non predefined entity (defined by the DTD) 
to the requesting entity.</flag>
-       <flag name='couchdb'>This is an experimental Prosody backend for 
CouchDB.</flag>
-       <flag name='csi'>This module implements Client State Indication, a way 
for mobile clients  to tell the server that they are sitting in someones pocket 
and would  rather not get some less urgent things pushed to it.</flag>
-       <flag name='csi_compat'>This module implements the google:queue 
protocol and maps it to <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_csi";>mod_csi</a> 
events.</flag>
-       <flag name='data_access'>This module gives HTTP access to prosody’s 
storage mechanism.  It uses normal HTTP verbs and <a 
href="http://tools.ietf.org/html/rfc2617"; rel="nofollow">Basic HTTP 
authentication</a>, so you could call it RESTful if you like buzzwords.</flag>
-       <flag name='default_bookmarks'>This module allows you to add default 
bookmarks for users.  It only kicks in when the user has no existing bookmarks, 
so users are free to add, change or remove them.</flag>
-       <flag name='default_vcard'>It is possible for the user to supply more 
than just a username and password when creating an account using <a 
href="https://prosody.im/doc/modules/mod_register"; 
rel="nofollow">mod_register</a>. This module automatically copies over that 
data to the user`s vcard.</flag>
+       <flag name='couchdb'><em><strong>Note:</strong> This module needs 
updating to the 0.8 storage module API.</em></flag>
+       <flag name='csi'>This module implements <a 
href="http://xmpp.org/extensions/xep-0352.html";>Client State Indication</a>, a 
way for mobile clients to tell the server that they are sitting in someones 
pocket and would rather not get some less urgent things pushed to it.</flag>
+       <flag name='csi_compat'>This module implements the google:queue 
protocol and maps it to <a 
href="https://modules.prosody.im/mod_csi.html";>mod_csi</a> events.</flag>
+       <flag name='data_access'>This module gives HTTP access to prosody’s 
storage mechanism. It uses normal HTTP verbs and <a 
href="http://tools.ietf.org/html/rfc2617";>Basic HTTP authentication</a>, so you 
could call it RESTful if you like buzzwords.</flag>
+       <flag name='default_bookmarks'>This module allows you to add default 
bookmarks for users. It only kicks in when the user has no existing bookmarks, 
so users are free to add, change or remove them.</flag>
+       <flag name='default_vcard'>It is possible for the user to supply more 
than just a username and password when creating an account using <a 
href="https://prosody.im/doc/modules/mod_register";>mod_register</a>. This 
module automatically copies over that data to the user's vcard.</flag>
+       <flag name='delegation'>Namespace Delegation is an extension which 
allows server to delegate some features handling to an entity/component. 
Typical use case is an external PEP service, but it can be used more generally 
when your prefered server lack one internal feature and you found an external 
component which can do it.</flag>
        <flag name='disable_tls'>This module can be used to prevent Prosody 
from offering TLS on client ports that you specify. This can be useful to work 
around buggy clients when transport security is not required.</flag>
        <flag name='discoitems'>This Prosody plugin lets you manually override 
the service discovery items for a host.</flag>
        <flag name='dwd'>This module implements an optimization of the Dialback 
protocol, by skipping the dialback step for servers presenting a valid 
certificate.</flag>
        <flag name='email_pass'>This module aims to help in the procedure of 
user password restoration. To start the restoration, the user must go to an URL 
provided by this module, fill the JID and email and submit the request.</flag>
-       <flag name='extdisco'>No module description on upstream wiki yet.</flag>
-       <flag name='filter_chatstates'>No module description on upstream wiki 
yet.</flag>
-       <flag name='firewall'>A firewall is an invaluable tool in the 
sysadmin`s toolbox. However while low-level firewalls such as iptables and pf 
are incredibly good at what they do, they are generally not able to handle 
application-layer rules.</flag>
-       <flag name='flash_policy'>This Prosody plugin adds support for flash 
socket policies. When connecting with a flash client (from a webpage, not an 
exe) to prosody the flash client requests for an xml "file" on port 584 or the 
connecting port (5222 in the case of default xmpp). Responding on port 584 is 
tricky because it requires root priviliges to set up a socket on a port < 
1024.</flag>
-       <flag name='group_bookmarks'><a 
href="http://prosody.im/doc/modules/mod_groups"; rel="nofollow">mod_groups</a> 
allows you to insert contacts into users` contact lists. Well 
mod_group_bookmarks allows you to insert chatrooms into the user`s bookmarks. 
These are fetched by their client and automatically joined when the log 
in.</flag>
-       <flag name='host_blacklist'>No module description on upstream wiki 
yet.</flag>
-       <flag name='host_guard'>No module description on upstream wiki 
yet.</flag>
-       <flag name='http_altconnect'>No module description on upstream wiki 
yet.</flag>
-       <flag name='http_dir_listing'>This module generates directory listings 
when invoked by <tt>mod_http_files</tt>. See <a 
href="http://prosody.im/doc/modules/mod_http_files"; 
rel="nofollow">documentation on `mod_http_files`</a>.</flag>
-       <flag name='http_favicon'>This simple module serves a 
<tt>favicon.ico</tt> from prosodys HTTP server and nothing else.</flag>
-       <flag name='http_index'>No module description on upstream wiki 
yet.</flag>
-       <flag name='http_muc_log'>This module provides a built-in web interface 
to view chatroom logs stored by <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_mam_muc";>mod_mam_muc</a>.</flag>
-       <flag name='http_user_count'>No module description on upstream wiki 
yet.</flag>
-       <flag name='idlecompat'>This module adds <a 
href="http://xmpp.org/extensions/xep-0319.html"; rel="nofollow">XEP-0319</a> 
idle tags to presence stanzas containing <a 
href="http://xmpp.org/extensions/xep-0012.html"; rel="nofollow">XEP-0012: Last 
Activity</a> tags for idle indication (e.g. supported by libpurple clients). It 
works on outgoing and incoming presence stanzas.</flag>
-       <flag name='incidents_handling'>This module implements <a 
href="http://xmpp.org/extensions/xep-0268.html"; 
rel="nofollow">XEP-268</a>.</flag>
-       <flag name='inotify_reload'>No module description on upstream wiki 
yet.</flag>
-       <flag name='ipcheck'>Sometimes for various reasons a client might want 
to know its IP address as it appears to the server. This <a 
href="http://xmpp.org/extensions/xep-0279.html"; rel="nofollow">simple XEP</a> 
allows the client to ask the server for the IP address it is connected 
from.</flag>
+       <flag name='extdisco'>This module adds support for <a 
href="http://xmpp.org/extensions/xep-0215.html";>XEP-0215: External Service 
Discovery</a>, which lets Prosody advertise non-XMPP services.</flag>
+       <flag name='fallback_vcard'>No documentation yet :(</flag>
+       <flag name='filter_chatstates'>Some mobile XMPP client developers 
consider <a href="http://xmpp.org/extensions/xep-0085.html";>Chat State 
Notifications</a> to be a waste of power and bandwidth, especially when the 
user is not actively looking at their device. This module will filter them out 
while the session is considered inactive. It depends on <a 
href="/mod_csi.html">mod_csi</a> for deciding when to begin and end 
filtering.</flag>
+       <flag name='firewall'><strong>Note:</strong> mod_firewall is in its 
very early stages. This documentation is liable to change, and some described 
functionality may be missing, incomplete or contain bugs. Feedback is welcome 
in the comments section at the bottom of this page.</flag>
+       <flag name='flash_policy'>This Prosody plugin adds support for flash 
socket policies. When connecting with a flash client (from a webpage, not an 
exe) to prosody the flash client requests for an xml &quot;file&quot; on port 
584 or the connecting port (5222 in the case of default xmpp). Responding on 
port 584 is tricky because it requires root priviliges to set up a socket on a 
port &lt; 1024.</flag>
+       <flag name='group_bookmarks'><a 
href="http://prosody.im/doc/modules/mod_groups";>mod_groups</a> allows you to 
insert contacts into users' contact lists. Well mod_group_bookmarks allows you 
to insert chatrooms into the user's bookmarks. These are fetched by their 
client and automatically joined when the log in.</flag>
+       <flag name='host_blacklist'>No documentation yet :(</flag>
+       <flag name='host_guard'>As often it's undesiderable to employ only 
whitelisting logics in public environments, this module let's you more 
selectively restrict access to your hosts (component or server host) either 
disallowing access completely (with optional exceptions) or blacklisting 
certain sources.</flag>
+       <flag name='http_altconnect'>No documentation yet :(</flag>
+       <flag name='http_dir_listing'>This module generates directory listings 
when invoked by <code>mod_http_files</code>. See <a 
href="http://prosody.im/doc/modules/mod_http_files";>documentation on 
<code>mod_http_files</code></a>.</flag>
+       <flag name='http_favicon'>This simple module serves a 
<code>favicon.ico</code> from prosodys HTTP server and nothing else.</flag>
+       <flag name='http_index'>This module produces a list of enabled HTTP 
&quot;apps&quot; exposed from Prosody at <code>http://example.org:5280/</code>, 
e.g. mod_http_muc_log, mod_http_files or mod_admin_web. If you think Prosodys 
default &quot;root&quot; web page (a 404 error usually) is boring, this might 
be the module for you! :)</flag>
+       <flag name='http_logging'>No documentation yet :(</flag>
+       <flag name='http_muc_log'>This module provides a built-in web interface 
to view chatroom logs stored by <a 
href="/mod_mam_muc.html">mod_mam_muc</a>.</flag>
+       <flag name='http_upload'>This module implements <a 
href="http://xmpp.org/extensions/xep-0363.html";>XEP-0363</a>, which lets 
clients upload files over HTTP.</flag>
+       <flag name='http_user_count'>No documentation yet :(</flag>
+       <flag name='idlecompat'>This module adds <a 
href="http://xmpp.org/extensions/xep-0319.html";>XEP-0319</a> idle tags to 
presence stanzas containing <a 
href="http://xmpp.org/extensions/xep-0012.html";>XEP-0012: Last Activity</a> 
tags for idle indication (e.g. supported by libpurple clients). It works on 
outgoing and incoming presence stanzas.</flag>
+       <flag name='incidents_handling'>This module implements <a 
href="http://xmpp.org/extensions/xep-0268.html";>XEP-268</a>.</flag>
+       <flag name='inotify_reload'>No documentation yet :(</flag>
+       <flag name='ipcheck'>Sometimes for various reasons a client might want 
to know its IP address as it appears to the server. This <a 
href="http://xmpp.org/extensions/xep-0279.html";>simple XEP</a> allows the 
client to ask the server for the IP address it is connected from.</flag>
        <flag name='isolate_host'>In some environments it is desirable to 
isolate one or more hosts, and prevent communication with external, or even 
other internal domains.</flag>
-       <flag name='jid_prep'>This is a plugin that implements the JID prep 
protocol defined in <a href="http://xmpp.org/extensions/inbox/jidprep.html"; 
rel="nofollow">http://xmpp.org/extensions/inbox/jidprep.html</a></flag>
-       <flag name='json_streams'>This plugin encodes XMPP as JSON. This is an 
implementation of <a href="http://xmpp.org/extensions/xep-0295.html"; 
rel="nofollow">XEP-0295: JSON Encodings for XMPP</a>.</flag>
+       <flag name='jid_prep'>This is a plugin that implements the JID prep 
protocol defined in http://xmpp.org/extensions/inbox/jidprep.html</flag>
+       <flag name='json_streams'>This plugin encodes XMPP as JSON. This is an 
implementation of <a href="http://xmpp.org/extensions/xep-0295.html";>XEP-0295: 
JSON Encodings for XMPP</a>.</flag>
        <flag name='lastlog'>Simple module that stores the timestamp of when a 
user logs in.</flag>
-       <flag name='latex'>This module intercepts messages between users and 
into chatrooms, and attaches a links to a rendered version of any <a 
href="http://en.wikipedia.org/wiki/LaTeX"; rel="nofollow">LaTeX</a> in the 
message. This requires client support for <a 
href="http://xmpp.org/extensions/xep-0071.html"; rel="nofollow">XHTML-IM</a>, 
and fetching images via HTTP.</flag>
-       <flag name='lib_ldap'>This module is used by other modules to access an 
LDAP server.  It`s pretty useless on its own; you should use it if you want to 
write your own LDAP-related module, or if you want to use one of mine (<a 
href="https://code.google.com/p/prosody-modules/wiki/mod_auth_ldap2";>mod_auth_ldap2</a>,
 <a 
href="/p/prosody-modules/wiki/mod_storage_ldap">mod_storage_ldap</a>).</flag>
-       <flag name='limit_auth'>No module description on upstream wiki 
yet.</flag>
+       <flag name='latex'>This module intercepts messages between users and 
into chatrooms, and attaches a links to a rendered version of any <a 
href="http://en.wikipedia.org/wiki/LaTeX";>LaTeX</a> in the message. This 
requires client support for <a 
href="http://xmpp.org/extensions/xep-0071.html";>XHTML-IM</a>, and fetching 
images via HTTP.</flag>
+       <flag name='lib_ldap'>This module is used by other modules to access an 
LDAP server. It's pretty useless on its own; you should use it if you want to 
write your own LDAP-related module, or if you want to use one of mine (<a 
href="https://modules.prosody.im/mod_auth_ldap2.html";>mod_auth_ldap2</a>, <a 
href="https://modules.prosody.im/mod_storage_ldap.html";>mod_storage_ldap</a>).</flag>
+       <flag name='limit_auth'>This module lets you put a per-IP limit on the 
number of failed authentication attempts.</flag>
        <flag name='limits'>On some servers, especially public ones, it is 
desired to make sure that everyone gets their fair share of system resources 
(and no more).</flag>
-       <flag name='list_inactive'>No module description on upstream wiki 
yet.</flag>
-       <flag name='listusers'>No module description on upstream wiki 
yet.</flag>
-       <flag name='log_auth'>Prosody doesn`t write IP addresses to its log 
file by default for privacy reasons (unless debug logging is enabled).</flag>
-       <flag name='log_events'>No module description on upstream wiki 
yet.</flag>
-       <flag name='log_messages_sql'>No module description on upstream wiki 
yet.</flag>
-       <flag name='log_sasl_mech'>No module description on upstream wiki 
yet.</flag>
-       <flag name='mam'>Implementation of <a 
href="http://xmpp.org/extensions/xep-0313.html"; rel="nofollow">XEP-0313: 
Message Archive Management</a>.</flag>
+       <flag name='list_inactive'>No documentation yet :(</flag>
+       <flag name='listusers'>No documentation yet :(</flag>
+       <flag name='log_auth'>Prosody doesn't write IP addresses to its log 
file by default for privacy reasons (unless debug logging is enabled).</flag>
+       <flag name='log_events'>No documentation yet :(</flag>
+       <flag name='log_mark'>This module sends <code>-- MARK --</code> to the 
log once per minute. This may be useful to give a sense of how busy the server 
is or see that logging and timers are still working.</flag>
+       <flag name='log_messages_sql'>No documentation yet :(</flag>
+       <flag name='log_rate'>If you ever wanted to collect statistics on the 
number of log messages, this is the module for you!</flag>
+       <flag name='log_sasl_mech'>No documentation yet :(</flag>
+       <flag name='log_slow_events'>No documentation yet :(</flag>
+       <flag name='mam'>Implementation of <a 
href="http://xmpp.org/extensions/xep-0313.html";>XEP-0313: Message Archive 
Management</a>.</flag>
        <flag name='mam_adhoc'>This module complements mod_mam by allowing 
clients to change archiving preferences through an Ad-hoc command.</flag>
-       <flag name='mam_archive'>Implementation of <a 
href="http://xmpp.org/extensions/xep-0136.html"; rel="nofollow">XEP-0136: 
Message Archiving</a> for <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_mam";>mod_mam</a>.</flag>
-       <flag name='mam_muc'>This module logs the conversation of chatrooms 
running on the server to Prosody`s archive storage. To access them you will 
need a client with support for <a 
href="http://xmpp.org/extensions/xep-0313.html"; rel="nofollow">XEP-0313: 
Message Archive Management</a> or a module such as <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_http_muc_log";>mod_http_muc_log</a>.</flag>
-       <flag name='mam_muc_sql'>No module description on upstream wiki 
yet.</flag>
-       <flag name='mam_sql'>Implementation of (an older version of) <a 
href="http://xmpp.org/extensions/xep-0313.html"; rel="nofollow">XEP-0313: 
Message Archive Management</a> backed by a SQL database.  Like <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_mam";>mod_mam</a>, but 
using SQL.</flag>
-       <flag name='manifesto'>This module informs users about the XMPP Test 
day and whether their contacts are affected.  For mor info about the test day, 
see <a href="https://stpeter.im/journal/1496.html"; 
rel="nofollow">https://stpeter.im/journal/1496.html</a></flag>
-       <flag name='measure_memory'>No module description on upstream wiki 
yet.</flag>
-       <flag name='message_logging'>Often service administrators need to log 
their users` messages for reasons such as auditing and compliance. This module 
simply logs user messages to simple text files, which can be easily searched, 
archived or removed on a regular basis.</flag>
-       <flag name='motd_sequential'>mod_motd_sequential is a variant of <a 
href="https://prosody.im/doc/modules/mod_motd"; rel="nofollow">mod_motd</a> that 
lets you specify a sequence of MOTD messages instead of a single static one.  
Each message is only sent once and the module keeps track of who as seen which 
message.</flag>
+       <flag name='mam_archive'>Implementation of <a 
href="http://xmpp.org/extensions/xep-0136.html";>XEP-0136: Message Archiving</a> 
for <a href="https://modules.prosody.im/mod_mam.html";>mod_mam</a>.</flag>
+       <flag name='mam_muc'>This module logs the conversation of chatrooms 
running on the server to Prosody's archive storage. To access them you will 
need a client with support for <a 
href="http://xmpp.org/extensions/xep-0313.html";>XEP-0313: Message Archive 
Management</a> or a module such as <a 
href="/mod_http_muc_log.html">mod_http_muc_log</a>.</flag>
+       <flag name='mamsub'>No documentation yet :(</flag>
+       <flag name='manifesto'>This module informs users about the XMPP Test 
day and whether their contacts are affected. For mor info about the test day, 
see <a href="https://stpeter.im/journal/1496.html"; 
class="uri">https://stpeter.im/journal/1496.html</a></flag>
+       <flag name='measure_cpu'>This module measures CPU usage and reports 
using Prosody 0.10 APIs</flag>
+       <flag name='measure_memory'>This module measures memory usage and 
reports using Prosody 0.10 APIs</flag>
+       <flag name='message_logging'>Often service administrators need to log 
their users' messages for reasons such as auditing and compliance. This module 
simply logs user messages to simple text files, which can be easily searched, 
archived or removed on a regular basis.</flag>
+       <flag name='migrate'>This module adds a command to 
<code>prosodyctl</code> for copying data between storage drivers.</flag>
+       <flag name='motd_sequential'>mod_motd_sequential is a variant of <a 
href="https://prosody.im/doc/modules/mod_motd";>mod_motd</a> that lets you 
specify a sequence of MOTD messages instead of a single static one. Each 
message is only sent once and the module keeps track of who as seen which 
message.</flag>
+       <flag name='muc_access_control'>No documentation yet :(</flag>
        <flag name='muc_ban_ip'>One frequent complaint about XMPP chatrooms 
(MUCs) compared to IRC is the inability for a room admin to ban a user based on 
their IP address. This is because an XMPP user is not identified on the network 
by their IP address, only their JID.</flag>
        <flag name='muc_config_restrict'>Sometimes, especially on public 
services, you may want to allow people to create their own rooms, but prevent 
some options from being modified by normal users.</flag>
-       <flag name='muc_intercom'>No module description on upstream wiki 
yet.</flag>
-       <flag name='muc_limits'>This module allows you to control the maximum 
rate of `events` in a MUC room. This makes it useful to prevent room floods 
(whether malicious or accidental).</flag>
-       <flag name='muc_log'>This module logs the conversation of chatrooms 
running on the server to Prosody`s data store. To view them you will need a 
module such as <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_muc_log_http";>mod_muc_log_http</a>.</flag>
-       <flag name='muc_log_http'>This module provides a built-in web interface 
to view chatroom logs stored by <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_muc_log";>mod_muc_log</a>.</flag>
-       <flag name='muc_restrict_rooms'>This module allows disabling room 
creation based on regexp patterns defined in configuration. </flag>
-       <flag name='munin'>No module description on upstream wiki yet.</flag>
+       <flag name='muc_intercom'>No documentation yet :(</flag>
+       <flag name='muc_limits'>This module allows you to control the maximum 
rate of 'events' in a MUC room. This makes it useful to prevent room floods 
(whether malicious or accidental).</flag>
+       <flag name='muc_log'>This module logs the conversation of chatrooms 
running on the server to Prosody's data store. To view them you will need a 
module such as <a 
href="https://modules.prosody.im/mod_muc_log_http.html";>mod_muc_log_http</a>.</flag>
+       <flag name='muc_log_http'>This module provides a built-in web interface 
to view chatroom logs stored by <a 
href="https://modules.prosody.im/mod_muc_log.html";>mod_muc_log</a>.</flag>
+       <flag name='muc_restrict_rooms'>This module allows disabling room 
creation based on regexp patterns defined in configuration.</flag>
+       <flag name='munin'>This module implements the Munin reporting protocol, 
allowing you to collect statistics directly from Prosody into Munin.</flag>
        <flag name='net_dovecotauth'>mod_net_dovecotauth is a server 
implementation of the Dovecot authentication protocol. It allows you to 
authenticate eg Postfix against your Prosody installation.</flag>
-       <flag name='offline_email'>Quite often when I am out and about, I`m not 
able to connect to Jabber. It is usually much more likely I can access my email 
though (whether via the web, or a mobile client).</flag>
-       <flag name='onhold'>Enable mod_onhold to allow temporarily placing 
messages from particular JIDs "on hold" -- i.e. store them, but do not deliver 
them until the hold status is taken away.</flag>
+       <flag name='offline_email'>Quite often when I am out and about, I'm not 
able to connect to Jabber. It is usually much more likely I can access my email 
though (whether via the web, or a mobile client).</flag>
+       <flag name='onhold'>Enable mod_onhold to allow temporarily placing 
messages from particular JIDs &quot;on hold&quot; -- i.e. store them, but do 
not deliver them until the hold status is taken away.</flag>
        <flag name='onions'>This plugin allows Prosody to connect to other 
servers that are running as a Tor hidden service. Running Prosody on a hidden 
service works without this module, this module is only necessary to allow 
Prosody to federate to hidden XMPP servers.</flag>
-       <flag name='openid'><a href="http://openid.net/"; 
rel="nofollow">OpenID</a> is an decentralized authentication mechanism for the 
Web.  mod_openid turns Prosody into an OpenID <i>provider</i>, allowing users 
to use their Prosody credentials to authenticate with various third party 
websites.</flag>
-       <flag name='password_policy'>No module description on upstream wiki 
yet.</flag>
-       <flag name='pastebin'>Pastebins are used very often in IM, especially 
in chat rooms. You have a long log or command output which you need to send to 
someone over IM, and don`t want to fill their message window with it. Put it on 
a pastebin site, and give them the URL instead, simple.</flag>
-       <flag name='pep_vcard_avatar'>No module description on upstream wiki 
yet.</flag>
-       <flag name='post_msg'>Sometimes it`s useful to have different 
interfaces to access XMPP.</flag>
+       <flag name='openid'><a href="http://openid.net/";>OpenID</a> is an 
decentralized authentication mechanism for the Web. mod_openid turns Prosody 
into an OpenID <em>provider</em>, allowing users to use their Prosody 
credentials to authenticate with various third party websites.</flag>
+       <flag name='password_policy'>No documentation yet :(</flag>
+       <flag name='pastebin'>Pastebins are used very often in IM, especially 
in chat rooms. You have a long log or command output which you need to send to 
someone over IM, and don't want to fill their message window with it. Put it on 
a pastebin site, and give them the URL instead, simple.</flag>
+       <flag name='pep_vcard_avatar'>This module pushes the users nickname and 
avatar from vCards into PEP, or into vCards from PEP. This allows interop 
between older clients that use <a 
href="http://xmpp.org/extensions/xep-0153.html";>XEP-0153: vCard-Based 
Avatars</a> to see the avatars of clients that use <a 
href="http://xmpp.org/extensions/xep-0084.html";>XEP-0084: User Avatar</a> and 
vice versa.</flag>
+       <flag name='post_msg'>Sometimes it's useful to have different 
interfaces to access XMPP.</flag>
+       <flag name='presence_cache'>This module stores presence from users 
contact even when they are offline, so that the client can see who is online 
faster when they sign in, and won't have to wait for remote servers to 
reply.</flag>
        <flag name='privacy_lists'>Privacy lists are a flexible method for 
blocking communications.</flag>
        <flag name='private_adhoc'>This is a very simple module which 
implements an adhoc commant toretrieves the users private XML data.</flag>
-       <flag name='profile'>This module provides a replacement for mod_vcard.  
In addition to the ageing protocol defined by <a 
href="http://xmpp.org/extensions/xep-0054.html"; rel="nofollow">XEP-0054</a>, it 
also supports the <a href="http://xmpp.org/extensions/xep-0292.html"; 
rel="nofollow">new vCard 4 based protocol</a> and integrates with <a 
href="http://xmpp.org/extensions/xep-0163.html"; rel="nofollow">Personal 
Eventing Protocol</a>.  The vCard 4, <a 
href="http://xmpp.org/extensions/xep-0084.html"; rel="nofollow">User Avatar</a> 
and <a href="http://xmpp.org/extensions/xep-0172.html"; rel="nofollow">User 
Nickname</a> PEP nodes are updated when the vCard is changed..</flag>
-       <flag name='proxy65_whitelist'>No module description on upstream wiki 
yet.</flag>
-       <flag name='pubsub_eventsource'><a 
href="https://en.wikipedia.org/wiki/Server-sent_events"; 
rel="nofollow">Server-Sent Events</a> is a simple HTTP/line-based protocol 
supported in HTML5, making it easy to receive a stream of "events" in realtime 
using the Javascript <a 
href="https://developer.mozilla.org/en-US/docs/Web/API/EventSource"; 
rel="nofollow">EventSource API</a>.</flag>
+       <flag name='privilege'>Privileged Entity is an extension which allows 
entity/component to have privileged access to server (set/get roster, send 
message on behalf of server, access presence informations). It can be used to 
build services independently of server (e.g.: PEP service).</flag>
+       <flag name='proctitle'>This module sets the process name to 
<code>prosody</code> so it shows up as such instead of <code>lua</code> in 
process management tools.</flag>
+       <flag name='profile'>This module provides a replacement for mod_vcard. 
In addition to the ageing protocol defined by <a 
href="http://xmpp.org/extensions/xep-0054.html";>XEP-0054</a>, it also supports 
the <a href="http://xmpp.org/extensions/xep-0292.html";>new vCard 4 based 
protocol</a> and integrates with <a 
href="http://xmpp.org/extensions/xep-0163.html";>Personal Eventing Protocol</a>. 
The vCard 4, <a href="http://xmpp.org/extensions/xep-0084.html";>User Avatar</a> 
and <a href="http://xmpp.org/extensions/xep-0172.html";>User Nickname</a> PEP 
nodes are updated when the vCard is changed..</flag>
+       <flag name='proxy65_whitelist'>This module attempts to restrict use of 
non-whitelisted XEP-0065 proxies.</flag>
+       <flag name='pubsub_eventsource'><a 
href="https://en.wikipedia.org/wiki/Server-sent_events";>Server-Sent Events</a> 
is a simple HTTP/line-based protocol supported in HTML5, making it easy to 
receive a stream of &quot;events&quot; in realtime using the Javascript <a 
href="https://developer.mozilla.org/en-US/docs/Web/API/EventSource";>EventSource 
API</a>.</flag>
        <flag name='pubsub_feeds'>This module allows Prosody to fetch Atom and 
RSS feeds for you, and push new results to subscribers over XMPP.</flag>
        <flag name='pubsub_github'>This module accepts Github web hooks and 
publishes them to a local pubsub component for XMPP clients to subscribe 
to.</flag>
-       <flag name='pubsub_googlecode'>No module description on upstream wiki 
yet.</flag>
-       <flag name='pubsub_hub'>This module implements a <a 
href="http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html"; 
rel="nofollow">PubSubHubbub</a> (PuSH) hub, allowing PuSH clients to subscribe 
to local XMPP <a href="http://xmpp.org/extensions/xep-0060.html"; 
rel="nofollow">Publish-Subscribe</a> nodes stored by <a 
href="http://prosody.im/doc/modules/mod_pubsub"; 
rel="nofollow">mod_pubsub</a>.</flag>
-       <flag name='pubsub_mqtt'><a href="http://mqtt.org/"; 
rel="nofollow">MQTT</a> is a lightweight binary pubsub protocol suited to 
embedded devices. This module provides a way for MQTT clients to connect to 
Prosody and publish or subscribe to local pubsub nodes.</flag>
-       <flag name='pubsub_pivotaltracker'>No module description on upstream 
wiki yet.</flag>
-       <flag name='pubsub_post'>No module description on upstream wiki 
yet.</flag>
-       <flag name='pubsub_twitter'>Twitter has an open `realtime` search API, 
but it requires polling (within their rate limits). This module allows Prosody 
to poll for you, and push new results to subscribers over XMPP.</flag>
-       <flag name='query_client_ver'>No module description on upstream wiki 
yet.</flag>
-       <flag name='rawdebug'>No module description on upstream wiki yet.</flag>
-       <flag name='readonly'>No module description on upstream wiki yet.</flag>
-       <flag name='register_json'>This module let`s you activate a httpserver 
interface to handle data from webforms with POST and Base64 encoded JSON.</flag>
-       <flag name='register_redirect'>Registration Redirect as explained in 
the <a href="http://xmpp.org/extensions/xep-0077.html#redirect"; 
rel="nofollow">IBR XEP</a>.</flag>
-       <flag name='register_web'>There are various reasons to prefer web 
registration instead of "in-band" account registration over XMPP. For example 
the lack of CAPTCHA support in clients and servers.</flag>
+       <flag name='pubsub_hub'>This module implements a <a 
href="http://pubsubhubbub.googlecode.com/svn/trunk/pubsubhubbub-core-0.3.html";>PubSubHubbub</a>
 (PuSH) hub, allowing PuSH clients to subscribe to local XMPP <a 
href="http://xmpp.org/extensions/xep-0060.html";>Publish-Subscribe</a> nodes 
stored by <a href="http://prosody.im/doc/modules/mod_pubsub";>mod_pubsub</a> and 
receive real time updates to feeds.</flag>
+       <flag name='pubsub_mqtt'><a href="http://mqtt.org/";>MQTT</a> is a 
lightweight binary pubsub protocol suited to embedded devices. This module 
provides a way for MQTT clients to connect to Prosody and publish or subscribe 
to local pubsub nodes.</flag>
+       <flag name='pubsub_pivotaltracker'>No documentation yet :(</flag>
+       <flag name='pubsub_post'>No documentation yet :(</flag>
+       <flag name='pubsub_twitter'>Twitter has an open 'realtime' search API, 
but it requires polling (within their rate limits). This module allows Prosody 
to poll for you, and push new results to subscribers over XMPP.</flag>
+       <flag name='query_client_ver'>No documentation yet :(</flag>
+       <flag name='rawdebug'>Sometimes it is useful to get the raw XML logs 
from clients for debugging purposes, but some clients don't expose this. This 
command lets you activate this on specific sessions.</flag>
+       <flag name='readonly'>No documentation yet :(</flag>
+       <flag name='register_json'>This module let's you activate a httpserver 
interface to handle data from webforms with POST and Base64 encoded JSON.</flag>
+       <flag name='register_redirect'>Registration Redirect as explained in 
the <a href="http://xmpp.org/extensions/xep-0077.html#redirect";>IBR 
XEP</a>.</flag>
+       <flag name='register_web'>There are various reasons to prefer web 
registration instead of &quot;in-band&quot; account registration over XMPP. For 
example the lack of CAPTCHA support in clients and servers.</flag>
        <flag name='reload_modules'>By default Prosody does not reload modules 
at runtime unless instructed to via one of its admin interfaces. However 
sometimes you want to easily reload a module to apply new settings when the 
config changes.</flag>
-       <flag name='remote_roster'>No module description on upstream wiki 
yet.</flag>
-       <flag name='require_otr'><a href="https://otr.cypherpunks.ca/"; 
rel="nofollow">OTR, "Off The Record"</a>, encryption allows clients to encrypt 
messages such that the server cannot read/modify them.</flag>
-       <flag name='roster_allinall'>This module is similar in purpouse to 
mod_groups, for when you want all users on the server to be in each others 
roster.  </flag>
+       <flag name='remote_roster'>This module adds support for <a 
href="http://xmpp.org/extensions/xep-0321.html";>XEP-0321: Remote Roster 
Management</a> which is commonly used to allow components such as transports to 
modify the rosters of local users.</flag>
+       <flag name='require_otr'><a href="https://otr.cypherpunks.ca/";>OTR, 
&quot;Off The Record&quot;</a>, encryption allows clients to encrypt messages 
such that the server cannot read/modify them.</flag>
+       <flag name='roster_allinall'>This module is similar in purpouse to 
mod_groups, for when you want all users on the server to be in each others 
roster.</flag>
        <flag name='roster_command'>This module allows you to perform various 
actions on user rosters via prosodyctl.</flag>
-       <flag name='s2s_auth_compat'>This module is a workaround for servers 
that try to do s2s authentication with certificates and SASL EXTERNAL, but do 
not send correct stream headers.  Notably Openfire versions since 3.7 or 
3.8.</flag>
-       <flag name='s2s_auth_dane'>This module implements DANE as described in 
<a href="http://tools.ietf.org/html/draft-miller-xmpp-dnssec-prooftype"; 
rel="nofollow">Using DNS Security Extensions (DNSSEC) and DNS-based 
Authentication of Named Entities (DANE) as a Prooftype for XMPP Domain Name 
Associations</a>.</flag>
+       <flag name='s2s_auth_compat'>This module is a workaround for servers 
that try to do s2s authentication with certificates and SASL EXTERNAL, but do 
not send correct stream headers. Notably Openfire versions since 3.7 or 
3.8.</flag>
+       <flag name='s2s_auth_dane'>This module implements DANE as described in 
<a href="http://tools.ietf.org/html/draft-miller-xmpp-dnssec-prooftype";>Using 
DNS Security Extensions (DNSSEC) and DNS-based Authentication of Named Entities 
(DANE) as a Prooftype for XMPP Domain Name Associations</a>.</flag>
        <flag name='s2s_auth_fingerprint'>This module allows you to manually 
pin certificate fingerprints of remote servers.</flag>
-       <flag name='s2s_auth_monkeysphere'><a 
href="http://web.monkeysphere.info/"; rel="nofollow">Monkeysphere</a> is a 
project aiming to introduce PGP`s web of trust to protocols such as SSH and TLS 
(which XMPP uses).</flag>
-       <flag name='s2s_blacklist'>No module description on upstream wiki 
yet.</flag>
+       <flag name='s2s_auth_monkeysphere'><a 
href="http://web.monkeysphere.info/";>Monkeysphere</a> is a project aiming to 
introduce PGP's web of trust to protocols such as SSH and TLS (which XMPP 
uses).</flag>
+       <flag name='s2s_blacklist'>No documentation yet :(</flag>
        <flag name='s2s_idle_timeout'>Some people find it preferable to close 
server-to-server connections after they have been silent for a while.</flag>
-       <flag name='s2s_keepalive'>No module description on upstream wiki 
yet.</flag>
-       <flag name='s2s_keysize_policy'>No module description on upstream wiki 
yet.</flag>
-       <flag name='s2s_log_certs'>This module produces info level log messages 
with the certificate status and fingerprint every time an s2s connection is 
established.  It can also optionally store this in persistant storage.</flag>
-       <flag name='s2s_never_encrypt_blacklist'>No module description on 
upstream wiki yet.</flag>
-       <flag name='s2soutinjection'>No module description on upstream wiki 
yet.</flag>
-       <flag name='s2s_reload_newcomponent'>Currently, module:reload command 
in console doesn`t load new components. This module will automatically load the 
new components (if any) when the config:reload command is run in the 
console.</flag>
-       <flag name='s2s_whitelist'>No module description on upstream wiki 
yet.</flag>
-       <flag name='saslauth_muc'>No module description on upstream wiki 
yet.</flag>
-       <flag name='saslname'>This module implements <a 
href="http://xmpp.org/extensions/xep-0233.html"; rel="nofollow">XEP-0233: 
Domain-Based Service Names in XMPP SASL Negotiation</a>.</flag>
-       <flag name='seclabels'>This module implements <a 
href="http://xmpp.org/extensions/xep-0258.htmla"; rel="nofollow">XEP-0258: 
Security Labels in XMPP</a>.</flag>
+       <flag name='s2s_keepalive'>This module periodically sends XEP-0199 ping 
requests to remote servers to keep your connection alive.</flag>
+       <flag name='s2s_keysize_policy'>This module sets the security status of 
s2s connections to invalid if their key is too small and their certificate was 
issued after 2014, per CA/B Forum guidelines.</flag>
+       <flag name='s2s_log_certs'>This module produces info level log messages 
with the certificate status and fingerprint every time an s2s connection is 
established. It can also optionally store this in persistant storage.</flag>
+       <flag name='s2s_never_encrypt_blacklist'>Let's you stop Prosody from 
sending &lt;starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'&gt; feature to 
choppy/buggy servers which therefore would fail to re-negotiate and use a 
secure stream. (e.g. <a 
href="http://issues.igniterealtime.org/browse/OF-405";>OpenFire 3.7.0</a>)</flag>
+       <flag name='s2s_reload_newcomponent'>Currently, module:reload command 
in console doesn't load new components. This module will automatically load the 
new components (if any) when the config:reload command is run in the 
console.</flag>
+       <flag name='s2s_whitelist'>No documentation yet :(</flag>
+       <flag name='s2soutinjection'>No documentation yet :(</flag>
+       <flag name='saslauth_muc'>No documentation yet :(</flag>
+       <flag name='saslname'>This module implements <a 
href="http://xmpp.org/extensions/xep-0233.html";>XEP-0233: Domain-Based Service 
Names in XMPP SASL Negotiation</a>.</flag>
+       <flag name='seclabels'>This module implements <a 
href="http://xmpp.org/extensions/xep-0258.htmla";>XEP-0258: Security Labels in 
XMPP</a>.</flag>
        <flag name='secure_interfaces'>Sometimes you might run clients without 
encryption on the same machine or LAN as Prosody - and you want Prosody to 
treat them as secure (e.g. allowing plaintext authentication) even though they 
are not encrypted.</flag>
-       <flag name='server_contact_info'>This module implements <a 
href="http://xmpp.org/extensions/xep-0157.html"; rel="nofollow">XEP-0157: 
Contact Addresses for XMPP Services</a>.</flag>
-       <flag name='server_status'>This module fetches the current status of 
configured hosts and/or stanza statistics from <a 
href="http://code.google.com/p/prosody-modules/wiki/mod_stanza_counter#"; 
rel="nofollow">mod_stanza_counter</a>. And outputs it in either XML or JSON 
format.</flag>
-       <flag name='service_directories'>No module description on upstream wiki 
yet.</flag>
+       <flag name='server_contact_info'>This module implements <a 
href="http://xmpp.org/extensions/xep-0157.html";>XEP-0157: Contact Addresses for 
XMPP Services</a>.</flag>
+       <flag name='server_status'>This module fetches the current status of 
configured hosts and/or stanza statistics from <a 
href="http://code.google.com/p/prosody-modules/wiki/mod_stanza_counter#";>mod_stanza_counter</a>.
 And outputs it in either XML or JSON format.</flag>
+       <flag name='service_directories'>No documentation yet :(</flag>
        <flag name='sift'>SIFT is a technology to allow clients to filter 
incoming traffic on the server. This helps save bandwidth, etc.</flag>
        <flag name='smacks'>By default XMPP is as reliable as your network is. 
Unfortunately in some cases that is not very reliable - in some network 
conditions disconnects can be frequent and message loss can occur.</flag>
+       <flag name='smacks_offline'>No documentation yet :(</flag>
        <flag name='sms_clickatell'>This module provides and SMS gateway 
component which uses the Clickatell HTTP API to deliver text messages. See 
clickatell.com for details on their services. Note that at present, this is 
entirely one way: replies will either go nowhere or as sms to the source number 
you specify.</flag>
        <flag name='srvinjection'>This Prosody plugin lets you manually 
override SRV records used for a remote host.</flag>
-       <flag name='sslv3_warn'>No module description on upstream wiki 
yet.</flag>
+       <flag name='sslv3_warn'>No documentation yet :(</flag>
        <flag name='stanza_counter'>This module counts incoming and outgoing 
stanzas from when the instance started, and makes the data available to other 
modules by creating a global prosody. object</flag>
-       <flag name='statistics'>No module description on upstream wiki 
yet.</flag>
-       <flag name='statistics_auth'>No module description on upstream wiki 
yet.</flag>
-       <flag name='statistics_cputotal'>No module description on upstream wiki 
yet.</flag>
-       <flag name='statistics_mem'>No module description on upstream wiki 
yet.</flag>
-       <flag name='statistics_statsd'>No module description on upstream wiki 
yet.</flag>
-       <flag name='statsd'>No module description on upstream wiki yet.</flag>
-       <flag name='storage_gdbm'>No module description on upstream wiki 
yet.</flag>
-       <flag name='storage_ldap'>See <a 
href="https://code.google.com/p/prosody-modules/wiki/mod_lib_ldap";>mod_lib_ldap</a>
 for more information.</flag>
+       <flag name='statistics'>No documentation yet :(</flag>
+       <flag name='statistics_auth'>No documentation yet :(</flag>
+       <flag name='statistics_cputotal'>No documentation yet :(</flag>
+       <flag name='statistics_mem'>No documentation yet :(</flag>
+       <flag name='statistics_statsd'>No documentation yet :(</flag>
+       <flag name='statsd'>No documentation yet :(</flag>
+       <flag name='storage_gdbm'>This is a storage module using GNU DBM as 
backend. It supports archives.</flag>
+       <flag name='storage_ldap'>See <a 
href="https://modules.prosody.im/mod_lib_ldap.html";>mod_lib_ldap</a> for more 
information.</flag>
+       <flag name='storage_lmdb'>This is a storage module using OpenLDAP 
Lightning Memory-Mapped Database as backend.</flag>
        <flag name='storage_memory'>This module acts as a normal storage module 
for Prosody, but saves all data in memory only. All data is lost when the 
server stops. This makes it useful for testing, or certain specialized 
applications.</flag>
-       <flag name='storage_mongodb'>This is a storage backend that uses 
MongoDB. Depends on <a href="https://github.com/mwild1/luamongo"; 
rel="nofollow">luamongo bindings</a></flag>
-       <flag name='storage_muc_log'><a 
href="https://code.google.com/p/prosody-modules/wiki/mod_muc_log";>mod_muc_log</a>
 provided logging of chatrooms running on the server to Prosody`s data store. 
This module gives access to this data using the 0.10+ stanza archive API, 
allowing legacy log data to be used with <a 
href="/p/prosody-modules/wiki/mod_mam_muc">mod_mam_muc</a> and <a 
href="/p/prosody-modules/wiki/mod_http_muc_log">mod_http_muc_log</a>.</flag>
-       <flag name='storage_multi'>No module description on upstream wiki 
yet.</flag>
-       <flag name='streamstats'>No module description on upstream wiki 
yet.</flag>
-       <flag name='strict_https'>This module implements <a 
href="https://tools.ietf.org/html/rfc6797"; rel="nofollow">HTTP Strict Transport 
Security</a> and responds to all non-HTTPS requests with a <tt>301 Moved 
Permanently</tt> redirect to the HTTPS equivalent of the path.</flag>
+       <flag name='storage_mongodb'>This is a storage backend that uses 
MongoDB. Depends on <a href="https://github.com/mwild1/luamongo";>luamongo 
bindings</a></flag>
+       <flag name='storage_muc_log'><a 
href="https://modules.prosody.im/mod_muc_log.html";>mod_muc_log</a> provided 
logging of chatrooms running on the server to Prosody's data store. This module 
gives access to this data using the 0.10+ stanza archive API, allowing legacy 
log data to be used with <a 
href="https://modules.prosody.im/mod_mam_muc.html";>mod_mam_muc</a> and <a 
href="https://modules.prosody.im/mod_http_muc_log.html";>mod_http_muc_log</a>.</flag>
+       <flag name='storage_multi'>This module attemtps to provide a storage 
driver that is really multiple storage drivers. This could be used for storage 
error tolerance or caching of data in a faster storage driver.</flag>
+       <flag name='storage_xmlarchive'>This module implements stanza archives 
using files, similar to the default &quot;internal&quot; storage.</flag>
+       <flag name='streamstats'>No documentation yet :(</flag>
+       <flag name='strict_https'>This module implements <a 
href="https://tools.ietf.org/html/rfc6797";>HTTP Strict Transport Security</a> 
and responds to all non-HTTPS requests with a <code>301 Moved 
Permanently</code> redirect to the HTTPS equivalent of the path.</flag>
        <flag name='support_contact'>This Prosody plugin adds a default contact 
to newly registered accounts.</flag>
        <flag name='swedishchef'>This module does some conversions on message 
bodys passed through it causing them to look like our beloved swedish chef had 
typed them.</flag>
        <flag name='tcpproxy'>It happens occasionally that I would like to use 
the XMPP server as a generic proxy for connecting to another service. It is 
especially awkward in some environments, and impossible in (for example) 
Javascript inside a web browser.</flag>
-       <flag name='telnet_tlsinfo'>This module adds two commands to the telnet 
console, <tt>c2s:showtls()</tt> and <tt>s2s:showtls()</tt>.  These commands 
shows TLS parameters, such as ciphers and key agreement protocols, of all c2s 
or s2s connections.</flag>
-       <flag name='throttle_presence'>For most people `presence` (status 
changes) of contacts make up most of the traffic received by their client. 
However much of the time it is not essential to have highly accurate presence 
information.</flag>
-       <flag name='tls_policy'>No module description on upstream wiki 
yet.</flag>
-       <flag name='turncredentials'>No module description on upstream wiki 
yet.</flag>
-       <flag name='twitter'>Twitter has simple API to use, so I tried to deal 
with it via Prosody. I didn`t manage to finish this module, but it is nice 
example of component that accepts registrations, unregistrations, does HTTP 
polling and so on. Maybe someone will finnish this idea.</flag>
-       <flag name='uptime_presence'>No module description on upstream wiki 
yet.</flag>
-       <flag name='vjud'>Basic implementation of <a 
href="http://xmpp.org/extensions/xep-0055.html"; rel="nofollow">XEP-0055: Jabber 
Search</a>.</flag>
+       <flag name='telnet_tlsinfo'>This module adds two commands to the telnet 
console, <code>c2s:showtls()</code> and <code>s2s:showtls()</code>. These 
commands shows TLS parameters, such as ciphers and key agreement protocols, of 
all c2s or s2s connections.</flag>
+       <flag name='throttle_presence'>For most people 'presence' (status 
changes) of contacts make up most of the traffic received by their client. 
However much of the time it is not essential to have highly accurate presence 
information.</flag>
+       <flag name='tls_policy'>This module arose from discussions at the XMPP 
Summit about enforcing better ciphers in TLS. It may seem attractive to 
disallow some insecure ciphers or require forward secrecy, but doing this at 
the TLS level would the user with an unhelpful &quot;Encryption failed&quot; 
message. This module does this enforcing at the application level, allowing 
better error messages.</flag>
+       <flag name='turncredentials'>No documentation yet :(</flag>
+       <flag name='twitter'>Twitter has simple API to use, so I tried to deal 
with it via Prosody. I didn't manage to finish this module, but it is nice 
example of component that accepts registrations, unregistrations, does HTTP 
polling and so on. Maybe someone will finnish this idea.</flag>
+       <flag name='uptime_presence'>This module simply responds to a presence 
probe sent to the server with a presence staza containing a timestamp from when 
the server started.</flag>
+       <flag name='vjud'>Basic implementation of <a 
href="http://xmpp.org/extensions/xep-0055.html";>XEP-0055: Jabber 
Search</a>.</flag>
        <flag name='watchuntrusted'>Similar to mod_watchregistrations, this 
module warns admins when an s2s connection fails due for encryption or trust 
reasons.</flag>
        <flag name='webpresence'>Quite often you may want to publish your 
Jabber status to your blog or website. mod_webpresence allows you to do exactly 
this.</flag>
+
 </use>
 </pkgmetadata>

diff --git a/net-im/prosody-modules/prosody-modules-9999.ebuild 
b/net-im/prosody-modules/prosody-modules-9999.ebuild
index 19ac3df..7e1c514 100644
--- a/net-im/prosody-modules/prosody-modules-9999.ebuild
+++ b/net-im/prosody-modules/prosody-modules-9999.ebuild
@@ -7,7 +7,7 @@ EAPI="5"
 inherit eutils multilib mercurial
 
 DESCRIPTION="Add-on modules for Prosody IM Server written in Lua."
-HOMEPAGE="https://prosody-modules.googlecode.com/";
+HOMEPAGE="https://modules.prosody.im/";
 EHG_REPO_URI="https://hg.prosody.im/prosody-modules";
 
 LICENSE="MIT"
@@ -17,49 +17,50 @@ KEYWORDS=""
 IUSE="misc luajit"
 
 PROSODY_MODULES="
-       addressing adhoc_account_management admin_message admin_probe
-       admin_web auth_any auth_ccert auth_custom_http auth_dovecot
-       auth_external auth_ha1 auth_http_async auth_imap
-       auth_internal_yubikey auth_joomla auth_ldap auth_ldap2 auth_pam
-       auth_phpbb3 auth_sql auth_wordpress auto_accept_subscriptions
-       auto_activate_hosts bidi blocking block_registrations
+       addressing adhoc_account_management adhoc_blacklist admin_blocklist
+       admin_message admin_probe admin_web alias auth_any auth_ccert
+       auth_custom_http auth_dovecot auth_external auth_ha1 auth_http_async
+       auth_imap auth_internal_yubikey auth_joomla auth_ldap auth_ldap2
+       auth_pam auth_phpbb3 auth_sql auth_wordpress auto_accept_subscriptions
+       auto_activate_hosts benchmark_storage bidi block_registrations
        block_s2s_subscriptions block_strangers block_subscribes
-       block_subscriptions broadcast c2s_conn_throttle c2s_limit_sessions
-       candy captcha_registration carbons carbons_adhoc carbons_copies
-       checkcerts client_certs compat_bind compat_muc_admin compat_vcard
-       component_client component_roundrobin conformance_restricted
-       couchdb csi csi_compat data_access default_bookmarks default_vcard
-       disable_tls discoitems dwd email_pass extdisco filter_chatstates
-       firewall flash_policy group_bookmarks host_blacklist host_guard
-       http_altconnect http_dir_listing http_favicon http_index
-       http_muc_log http_user_count idlecompat incidents_handling
-       inotify_reload ipcheck isolate_host jid_prep json_streams lastlog
-       latex lib_ldap limit_auth limits list_inactive listusers log_auth
-       log_events log_messages_sql log_sasl_mech mam mam_adhoc
-       mam_archive mam_muc mam_muc_sql mam_sql manifesto measure_memory
-       message_logging motd_sequential muc_ban_ip muc_config_restrict
-       muc_intercom muc_limits muc_log muc_log_http muc_restrict_rooms
-       munin net_dovecotauth offline_email onhold onions openid
-       password_policy pastebin pep_vcard_avatar post_msg privacy_lists
-       private_adhoc profile proxy65_whitelist pubsub_eventsource
-       pubsub_feeds pubsub_github pubsub_googlecode pubsub_hub
-       pubsub_mqtt pubsub_pivotaltracker pubsub_post pubsub_twitter
-       query_client_ver rawdebug readonly register_json register_redirect
-       register_web reload_modules remote_roster require_otr
-       roster_allinall roster_command s2s_auth_compat s2s_auth_dane
-       s2s_auth_fingerprint s2s_auth_monkeysphere s2s_blacklist
-       s2s_idle_timeout s2s_keepalive s2s_keysize_policy s2s_log_certs
-       s2s_never_encrypt_blacklist s2soutinjection
-       s2s_reload_newcomponent s2s_whitelist saslauth_muc saslname
-       seclabels secure_interfaces server_contact_info server_status
-       service_directories sift smacks sms_clickatell srvinjection
-       sslv3_warn stanza_counter statistics statistics_auth
-       statistics_cputotal statistics_mem statistics_statsd statsd
-       storage_gdbm storage_ldap storage_memory storage_mongodb
-       storage_muc_log storage_multi streamstats strict_https
-       support_contact swedishchef tcpproxy telnet_tlsinfo
-       throttle_presence tls_policy turncredentials twitter
-       uptime_presence vjud watchuntrusted webpresence
+       block_subscriptions blocking broadcast c2s_conn_throttle
+       c2s_limit_sessions candy captcha_registration carbons carbons_adhoc
+       carbons_copies checkcerts client_certs cloud_notify compact_resource
+       compat_bind compat_dialback compat_muc_admin compat_vcard
+       component_client component_roundrobin conformance_restricted couchdb csi
+       csi_compat data_access default_bookmarks default_vcard delegation
+       disable_tls discoitems dwd email_pass extdisco fallback_vcard
+       filter_chatstates firewall flash_policy group_bookmarks host_blacklist
+       host_guard http_altconnect http_dir_listing http_favicon http_index
+       http_logging http_muc_log http_upload http_user_count idlecompat
+       incidents_handling inotify_reload ipcheck isolate_host jid_prep
+       json_streams lastlog latex lib_ldap limit_auth limits list_inactive
+       listusers log_auth log_events log_mark log_messages_sql log_rate
+       log_sasl_mech log_slow_events mam mam_adhoc mam_archive mam_muc mamsub
+       manifesto measure_cpu measure_memory message_logging migrate
+       motd_sequential muc_access_control muc_ban_ip muc_config_restrict
+       muc_intercom muc_limits muc_log muc_log_http muc_restrict_rooms munin
+       net_dovecotauth offline_email onhold onions openid password_policy
+       pastebin pep_vcard_avatar post_msg presence_cache privacy_lists
+       private_adhoc privilege proctitle profile proxy65_whitelist
+       pubsub_eventsource pubsub_feeds pubsub_github pubsub_hub pubsub_mqtt
+       pubsub_pivotaltracker pubsub_post pubsub_twitter query_client_ver
+       rawdebug readonly register_json register_redirect register_web
+       reload_modules remote_roster require_otr roster_allinall roster_command
+       s2s_auth_compat s2s_auth_dane s2s_auth_fingerprint s2s_auth_monkeysphere
+       s2s_blacklist s2s_idle_timeout s2s_keepalive s2s_keysize_policy
+       s2s_log_certs s2s_never_encrypt_blacklist s2s_reload_newcomponent
+       s2s_whitelist s2soutinjection saslauth_muc saslname seclabels
+       secure_interfaces server_contact_info server_status service_directories
+       sift smacks smacks_offline sms_clickatell srvinjection sslv3_warn
+       stanza_counter statistics statistics_auth statistics_cputotal
+       statistics_mem statistics_statsd statsd storage_gdbm storage_ldap
+       storage_lmdb storage_memory storage_mongodb storage_muc_log
+       storage_multi storage_xmlarchive streamstats strict_https
+       support_contact swedishchef tcpproxy telnet_tlsinfo throttle_presence
+       tls_policy turncredentials twitter uptime_presence vjud watchuntrusted
+       webpresence
 "
 
 
@@ -108,10 +109,6 @@ RDEPEND="
        prosody_modules_auth_custom_http? (
                dev-lua/luasocket
        )
-       prosody_modules_mam_muc_sql? (
-               dev-lua/luasocket
-               dev-lua/luadbi
-       )
        prosody_modules_checkcerts? (
                dev-lua/luasec
        )
@@ -132,7 +129,7 @@ RDEPEND="
                dev-lua/luasocket
                dev-lua/luafilesystem
        )
-       prosody_modules_mam_sql? (
+       prosody_modules_log_messages_sql? (
                dev-lua/luasocket
                dev-lua/luadbi
        )

Reply via email to