| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- 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</script>\n";
-
- - echo "<H2>" . _("Your password has successfully been changed.") . "</H2>\n";
- - echo '<div align=center>' . _("Please") . '<a href="' . SM_PATH .
- + echo "<H2><div align=center>" . _("Your password has successfully been changed.") . "</div></H2>\n";
- + echo '<div align=center>' . _("Please, ") . '<a href="' . SM_PATH .
- 'src/signout.php?chg_sasl_passwd" TARGET=_top>' .
- _("logout and log back in using your new password.") . "</div>\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 "<br><b>" . _("Your password has been changed. This requires that you logout and then log back in with the new password.") .
- - "<br><p><br>\n" . _("Logging out automagically") . ".<br><br>\n";
- + echo "<center>" .
- + "<br /><b>" . _("Your password has been changed.") .
- + "</b><br />" . _("This requires that you logout and then") .
- + "<br />" . _("log back in with the new password.") .
- + "<br /><br />" . _("Logging out automatically...") .
- + "</center><br /><br /><br />\n";
-
- /* Switch back to the SquirrelMail domain */
- textdomain('squirrelmail');
|