Update of /cvsroot/squirrelmail/squirrelmail/config
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv21352/config
Modified Files:
conf.pl
Log Message:
ignore msg copy errors when messages are deleted. Most common error is related
to quota issues. Updated function tries to copy message to trash and then tags
it as deleted. If we can store message in trash, message is stored. If we can't,
trash folder is bypassed.
added version information to two configuration variables
Index: conf.pl
===================================================================
RCS file: /cvsroot/squirrelmail/squirrelmail/config/conf.pl,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -w -r1.260 -r1.261
--- conf.pl 29 Sep 2006 17:08:49 -0000 1.260
+++ conf.pl 30 Sep 2006 09:49:08 -0000 1.261
@@ -357,8 +357,6 @@
$frame_top = "_top" if ( !$frame_top );
$provider_uri = '' if ( !$provider_uri );
$provider_name = '' if ( !$provider_name );
-$edit_identity = 'true' if ( !$edit_identity );
-$edit_name = 'true' if ( !$edit_name );
$no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
$allow_charset_search = 'true' if ( !$allow_charset_search );
$allow_advanced_search = 0 if ( !$allow_advanced_search) ;
@@ -371,6 +369,9 @@
# since 1.2.0
$hide_sm_attributions = 'false' if ( !$hide_sm_attributions );
+# since 1.2.5
+$edit_identity = 'true' if ( !$edit_identity );
+$edit_name = 'true' if ( !$edit_name );
# since 1.4.0
$use_smtp_tls= 'false' if ( !$use_smtp_tls);
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
|