|
@@ -6953,21 +6953,27 @@ function update_prosody_modules {
|
6953
|
6953
|
|
6954
|
6954
|
# message archive management
|
6955
|
6955
|
# https://modules.prosody.im/mod_mam.html
|
|
6956
|
+ # Allows you to download your previous messages onto a new client
|
|
6957
|
+ # This only applies if you are not using forward secret crypto
|
|
6958
|
+ # such as OTR or OMEMO (eg. OpenPGP)
|
6956
|
6959
|
if [ -d $INSTALL_DIR/prosody-modules/mod_mam ]; then
|
6957
|
6960
|
cp $INSTALL_DIR/prosody-modules/mod_mam/*.lua /usr/lib/prosody/modules
|
6958
|
6961
|
fi
|
6959
|
6962
|
|
6960
|
6963
|
# Client State Indication
|
|
6964
|
+ # Notifies the server if the app is in the background or not
|
6961
|
6965
|
if [ -d $INSTALL_DIR/prosody-modules/mod_csi ]; then
|
6962
|
6966
|
cp $INSTALL_DIR/prosody-modules/mod_csi/*.lua /usr/lib/prosody/modules
|
6963
|
6967
|
fi
|
6964
|
6968
|
|
6965
|
6969
|
# Message Carbons
|
|
6970
|
+ # Ensures all messages get delivered to all clients (if you have a mobile and desktop client)
|
6966
|
6971
|
if [ -d $INSTALL_DIR/prosody-modules/mod_carbons ]; then
|
6967
|
6972
|
cp $INSTALL_DIR/prosody-modules/mod_carbons/*.lua /usr/lib/prosody/modules
|
6968
|
6973
|
fi
|
6969
|
6974
|
|
6970
|
6975
|
# Stream management
|
|
6976
|
+ # Helps mobile apps recover when a device switches networks.
|
6971
|
6977
|
if [ -d $INSTALL_DIR/prosody-modules/mod_smacks ]; then
|
6972
|
6978
|
cp $INSTALL_DIR/prosody-modules/mod_smacks/*.lua /usr/lib/prosody/modules
|
6973
|
6979
|
fi
|