squirrelmail/squirrelmail.patch

Sat, 24 Mar 2012 21:40:49 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 24 Mar 2012 21:40:49 +0100
changeset 414
fd611cde817f
parent 159
5524672ebbe7
permissions
-rw-r--r--

Introduce many changes to the buildconf and source code including:
(01) clean up, update, and partially update default config files,
(02) seems that Melware is unable to perform release engineering so
update chan_capi to new daily snapshot to solve echo problems,
(03) correct Asterisk inadequate hard coded gmime version check,
(04) force postgresql pthreads linkage to solve build problem,
(05) remove buggy hard coded LibXML configure definitions,
(06) remove local architecture specification to allow GCC
internal logic to determine proper CPU type instead,
(07) remove vendor sound install target causing uncontrolled
downloads and non RPM managed file installation,
(08) solve long outstanding bug in tcptls causing Asterisk
to ignore any intermediate CA certificate signatures,
(09) back out Digium engineering team's bright idea of replacing the
very portable and pervasive POSIX rand(1) with ast_random(), and
then not even implementing it causing all references to fail in
platforms not providing the very new POSIX.1-2008 mkdtemp(3)
function only distributed by BSD and some Linux,
(10) withdraw advanced linker symbol manipulations from SVR5 builds
until either Binutils supports hybrid versioned and anonymous
linker scripts or GCC stops hard coding versioned linker scripts,
(11) correct missing library linkage, some tailored to a specific OS,
(12) remove outdated logic for the no longer distributed gmime-config(1),
(13) remove local gmime buildconf hacks now that Asterisk has corrected
their own build configuration to almost portably support gmime,
(14) solve build problems relating to undetected LibXML paths,
(15) correct erroneous out of tree include definitions,
(16) improve some variable and comment naming,
(17) simplify sound language path hierarchy creation,
and correct australian english installation logic.

michael@157 1 Index: functions/display_messages.php
michael@157 2 --- functions/display_messages.php.orig 2005-03-21 23:18:32 +0100
michael@157 3 +++ functions/display_messages.php 2005-07-30 21:15:29 +0200
michael@159 4 @@ -97,8 +97,8 @@
michael@157 5 "\"$width_and_height /><br />\n";
michael@157 6 }
michael@157 7 echo ( $hide_sm_attributions ? '' :
michael@157 8 - '<small>' . sprintf (_("SquirrelMail version %s"), $version) . '<br />'.
michael@157 9 - _("By the SquirrelMail Project Team") . "<br /></small>\n" ).
michael@157 10 + '<br />'.
michael@157 11 + "<br />\n" ).
michael@157 12 '<table cellspacing="1" cellpadding="0" bgcolor="'.$color[1].'" width="70%">'.
michael@157 13 '<tr><td>'.
michael@157 14 '<table width="100%" border="0" bgcolor="'.$color[4].'" align="center">'.
michael@157 15 Index: functions/imap_general.php
michael@157 16 --- functions/imap_general.php.orig 2005-05-20 12:37:34 +0200
michael@157 17 +++ functions/imap_general.php 2005-07-30 21:14:27 +0200
michael@352 18 @@ -618,6 +618,7 @@
michael@157 19
michael@157 20 set_up_language($squirrelmail_language, true);
michael@157 21 include_once(SM_PATH . 'functions/display_messages.php' );
michael@157 22 + do_hook('invalid_login'); /* used with squirrelmail_logger */
michael@157 23 sqsession_destroy();
michael@157 24 /* terminate the session nicely */
michael@157 25 sqimap_logout($imap_stream);
michael@157 26 Index: src/login.php
michael@157 27 --- src/login.php.orig 2005-06-22 15:45:35 +0200
michael@157 28 +++ src/login.php 2005-07-30 21:15:39 +0200
michael@352 29 @@ -198,8 +198,8 @@
michael@157 30 ' /><br />' . "\n"
michael@157 31 : '' ).
michael@157 32 ( (isset($hide_sm_attributions) && $hide_sm_attributions) ? '' :
michael@157 33 - '<small>' . sprintf (_("SquirrelMail version %s"), $version) . '<br />' ."\n".
michael@157 34 - ' ' . _("By the SquirrelMail Project Team") . '<br /></small>' . "\n" ) .
michael@157 35 + '<br />' ."\n".
michael@157 36 + '<br />' . "\n" ) .
michael@157 37 html_tag( 'table',
michael@157 38 html_tag( 'tr',
michael@157 39 html_tag( 'td',
michael@157 40 Index: src/right_main.php
michael@157 41 --- src/right_main.php.orig 2005-06-15 23:12:05 +0200
michael@157 42 +++ src/right_main.php 2005-07-30 21:14:27 +0200
michael@352 43 @@ -194,6 +194,7 @@
michael@157 44 )
michael@157 45 ) ,
michael@157 46 'center', $color[9], 'width="70%" cellpadding="0" cellspacing="3" border="0"' );
michael@157 47 + echo "<br />\n";
michael@157 48 }
michael@157 49 }
michael@157 50 }

mercurial