Adding notes how to configure spell checking

This commit is contained in:
2021-01-20 13:25:04 +01:00
parent d4cdff72c4
commit a1cc1c7f2d

View File

@@ -92,15 +92,27 @@ step_10_info() { echo "Configuration notes"; }
step_10_alias() { ALIAS="notes"; } step_10_alias() { ALIAS="notes"; }
step_10() { step_10() {
echo "# smtp port if missing after installation" echo "# smtp port if missing after installation"
echo ' // SMTP port (default is 25; use 587 for STARTTLS or 465 for the' echo" [$RC_LOC/config/config.inc.php]"
echo ' // deprecated SSL over SMTP (aka SMTPS))' echo ' // SMTP port (default is 25; use 587 for STARTTLS or 465 for the'
echo " \$config['smtp_port'] = 465;" echo ' // deprecated SSL over SMTP (aka SMTPS))'
echo " \$config['smtp_port'] = 465;"
echo echo
echo "# Enable two factor auth (installed with step config) for all user" echo "# Enable two factor auth (installed with step config) for all user"
echo " [$RC_LOC/plugins/twofactor_gauthenticator/config.inc.php]" echo " [$RC_LOC/plugins/twofactor_gauthenticator/config.inc.php]"
echo " $rcmail_config['users_allowed_2FA'] = array('.*');" echo " $rcmail_config['users_allowed_2FA'] = array('.*');"
echo echo
echo "# Todo install pspell spell check engine" echo "# Add mobile skin to roundcube"
echo " cd ${RC_LOC}"
echo " git clone https://github.com/messagerie-melanie2/Roundcube-Skin-Melanie2-Larry-Mobile.git skins/melanie2_larry_mobile"
echo "# Install pspell and aspell spell check engine"
echo " apt install php7.x-pspell aspell-en aspell-de"
echo
echo " [$RC_LOC/config/config.inc.php]"
echo " \$config['spellcheck_engine'] = 'pspell';"
echo " \$config['spellcheck_languages'] = array("
echo " 'en' => 'English',"
echo " 'de' => 'Deutsch',"
echo " );"
} }
step_20_info() { step_20_info() {