Remove obsolete UID support conf.pl code.
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 13 Mar 2004 13:51:02 +0000 (13:51 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 13 Mar 2004 13:51:02 +0000 (13:51 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@6772 7612ce4b-ef26-0410-bec9-ea0150e637f0

config/conf.pl

index 6fde9147fa26cfc9dabfaad05aae388bc44bceae..5ea3300ac28d76a4e5f369cd6b481003383e89b3 100755 (executable)
@@ -2223,26 +2223,7 @@ sub command314 {
     return $allow_charset_search;
 }
 
-sub command315 {
-    ## OBSOLETE - UID support is now always enabled
-    return "true";
-    print "This option allows you to enable unique identifier (UID) support.\n";
-    print "\n";
-
-    if ( lc($uid_support) eq "true" ) {
-        $default_value = "y";
-    } else {
-        $default_value = "n";
-    }
-    print "Enable Unique identifier (UID) support? (y/n) [$WHT$default_value$NRM]: $WHT";
-    $uid_support = <STDIN>;
-    if ( ( $uid_support =~ /^y\n/i ) || ( ( $uid_support =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
-        $uid_support = "true";
-    } else {
-        $uid_support = "false";
-    }
-    return $uid_support;
-}
+# command315 (UID support) obsoleted.
 
 sub command316 {
        print "This option allows you to change the name of the PHP session used\n";