From a1cc1c7f2d0fa3731bab75e0b04cd6d868bd111a Mon Sep 17 00:00:00 2001 From: Martin Winkler Date: Wed, 20 Jan 2021 13:25:04 +0100 Subject: [PATCH] Adding notes how to configure spell checking --- seqs/roundcube.sh | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/seqs/roundcube.sh b/seqs/roundcube.sh index 469094e..3ff7a89 100755 --- a/seqs/roundcube.sh +++ b/seqs/roundcube.sh @@ -92,15 +92,27 @@ step_10_info() { echo "Configuration notes"; } step_10_alias() { ALIAS="notes"; } step_10() { echo "# smtp port if missing after installation" - echo ' // SMTP port (default is 25; use 587 for STARTTLS or 465 for the' - echo ' // deprecated SSL over SMTP (aka SMTPS))' - echo " \$config['smtp_port'] = 465;" + echo" [$RC_LOC/config/config.inc.php]" + echo ' // SMTP port (default is 25; use 587 for STARTTLS or 465 for the' + echo ' // deprecated SSL over SMTP (aka SMTPS))' + echo " \$config['smtp_port'] = 465;" echo echo "# Enable two factor auth (installed with step config) for all user" echo " [$RC_LOC/plugins/twofactor_gauthenticator/config.inc.php]" echo " $rcmail_config['users_allowed_2FA'] = array('.*');" 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() {