Index: etc/squirrelmail/config.php diff -Nau etc/squirrelmail/config.php.orig etc/squirrelmail/config.php --- etc/squirrelmail/config.php.orig 2005-03-16 13:02:25 +0100 +++ etc/squirrelmail/config.php 2005-03-16 12:31:51 +0100 @@ -88,6 +88,17 @@ $plugins[13] = 'squirrel_logger'; $plugins[14] = 'translate'; +$plugins[15] = 'addgraphics'; +$plugins[16] = 'check_quota'; +$plugins[17] = 'chg_sasl_passwd'; +$plugins[18] = 'folder_sizes'; +$plugins[19] = 'gpg'; +$plugins[20] = 'ldifimport'; +$plugins[21] = 'pupdate'; +$plugins[22] = 'show_user_and_ip'; +$plugins[23] = 'smallcal'; +$plugins[24] = 'vkeyboard'; + /* NOP, for patch line placeholder (avoids fuzz) */ $theme_css = ''; $theme_default = 0; Index: share/squirrelmail/plugins/gpg/gpg_local_prefs.txt diff -Nau share/squirrelmail/plugins/gpg/gpg_local_prefs.txt.orig share/squirrelmail/plugins/gpg/gpg_local_prefs.txt.php --- share/squirrelmail/plugins/gpg/gpg_local_prefs.txt.orig 2005-03-17 13:05:32.171844020 +0100 +++ share/squirrelmail/plugins/gpg/gpg_local_prefs.txt 2005-03-17 13:06:31.730254296 +0100 @@ -4,7 +4,7 @@ # # $Id: squirrelmail.patch.plugins,v 1.3 2005/03/20 16:06:38 ms Exp $ # -path_to_gpg=/usr/bin/gpg +path_to_gpg=@l_prefix@/bin/gpg allowprivatekeys=true allowkeygeneration=true systemkeyring=false @@ -14,6 +14,6 @@ maxfilesize=100000 allowpassphrasecaching=false insecure_mem_warning=1 -default_keystrength=1024 +default_keystrength=2048 default_keyexpires=2y debug=0 Index: share/squirrelmail/plugins/gpg/setup.php diff -Nau share/squirrelmail/plugins/gpg/setup.php.orig share/squirrelmail/plugins/gpg/setup.php --- share/squirrelmail/plugins/gpg/setup.php.orig 2005-03-18 12:01:39.398171000 +0100 +++ share/squirrelmail/plugins/gpg/setup.php 2005-03-18 12:03:35.986216000 +0100 @@ -14,7 +14,9 @@ * */ if (!defined (SM_PATH)){ - if (file_exists('./gpg_functions.php')){ + if (file_exists('../../../plugins/gpg/gpg_functions.php')){ + define (SM_PATH , '../../../'); + } elseif (file_exists('../../plugins/gpg/gpg_functions.php')){ define (SM_PATH , '../../'); } elseif (file_exists('../plugins/gpg/gpg_functions.php')) { define (SM_PATH, '../'); Index: share/squirrelmail/plugins/chg_sasl_passwd/options.php diff -Nau share/squirrelmail/plugins/chg_sasl_passwd/options.php.orig share/squirrelmail/plugins/chg_sasl_passwd/options.php --- share/squirrelmail/plugins/chg_sasl_passwd/options.php.orig 2005-03-17 21:00:03.157951000 +0100 +++ share/squirrelmail/plugins/chg_sasl_passwd/options.php 2005-03-18 14:16:40.480988000 +0100 @@ -70,8 +70,8 @@ ' "" + dir_path + "/../../src/signout.php?chg_sasl_passwd";' . "', 0);\n" . "//-->\n\n"; - echo "

" . _("Your password has successfully been changed.") . "

\n"; - echo '
' . _("Please") . '
" . _("Your password has successfully been changed.") . "
\n"; + echo '
' . _("Please, ") . '' . _("logout and log back in using your new password.") . "
\n"; } Index: share/squirrelmail/plugins/chg_sasl_passwd/setup.php diff -Nau share/squirrelmail/plugins/chg_sasl_passwd/setup.php.orig share/squirrelmail/plugins/chg_sasl_passwd/setup.php --- share/squirrelmail/plugins/chg_sasl_passwd/setup.php.orig 2005-03-03 00:38:44.000000000 +0100 +++ share/squirrelmail/plugins/chg_sasl_passwd/setup.php 2005-03-18 14:29:52.513613000 +0100 @@ -32,8 +32,12 @@ if (isset($_SERVER['QUERY_STRING']) && stristr($_SERVER['QUERY_STRING'], 'chg_sasl_passwd') ) - echo "
" . _("Your password has been changed. This requires that you logout and then log back in with the new password.") . - "


\n" . _("Logging out automagically") . ".

\n"; + echo "

" . + "
" . _("Your password has been changed.") . + "
" . _("This requires that you logout and then") . + "
" . _("log back in with the new password.") . + "

" . _("Logging out automatically...") . + "



\n"; /* Switch back to the SquirrelMail domain */ textdomain('squirrelmail');