Fix broken PEP in prosody

This commit is contained in:
Bob Mottram 2017-01-07 11:56:07 +00:00
parent 1f7165ece3
commit 40ec74c329
1 changed files with 2 additions and 2 deletions

View File

@ -383,7 +383,6 @@ function xmpp_modules {
echo ' "dialback"; -- s2s dialback support' >> $filename
echo ' "disco"; -- Service discovery' >> $filename
echo ' "private"; -- Private XML storage (for room bookmarks, etc.)' >> $filename
echo ' "vcard"; -- Allow users to set vCards' >> $filename
echo ' "version"; -- Replies to server version requests' >> $filename
echo ' "uptime"; -- Report how long server has been running' >> $filename
echo ' "time"; -- Let others know the time here on this server' >> $filename
@ -401,7 +400,8 @@ function xmpp_modules {
echo ' "carbons_copies"; -- Message carbons' >> $filename
echo ' "smacks"; -- Stream management' >> $filename
echo ' "smacks_offline"; -- Stream management' >> $filename
echo ' "pep"; -- Personal Eventing Protocol (to support OMEMO)' >> $filename
echo ' "profile"; -- Personal Eventing Protocol (to support OMEMO)' >> $filename
echo ' "e2e_policy"; -- To support OMEMO' >> $filename
echo ' "pep_vcard_avatar"; -- Personal Eventing Protocol (to support OMEMO)' >> $filename
echo ' "blocklist"; -- Privacy lists' >> $filename
echo ' "privacy_lists"; -- Privacy lists' >> $filename