Browse Source

Remove tabs and fix org height/width (thanks to Craig Kelley)

simond 23 years ago
parent
commit
18d4237db2
1 changed files with 10 additions and 10 deletions
  1. 10 10
      config/conf.pl

+ 10 - 10
config/conf.pl

@@ -663,13 +663,13 @@ sub command2a {
     if ( $new_org_logo_width eq '' ) {
         $new_org_logo_width = $org_logo_width;
     }
-    if ( $new_org_logo_height > 0 ) {
-    	print "Height: [$WHT$org_logo_height$NRM]: $WHT";
-    	$new_org_logo_height = <STDIN>;
-    	$new_org_logo_height =~ tr/0-9//cd;  # only want digits!
+    if ( $new_org_logo_width > 0 ) {
+        print "Height: [$WHT$org_logo_height$NRM]: $WHT";
+        $new_org_logo_height = <STDIN>;
+        $new_org_logo_height =~ tr/0-9//cd;  # only want digits!
         $new_org_logo_height = $org_logo_height;
     } else {
-	$new_org_logo_height = 0;
+        $new_org_logo_height = 0;
     }
     return ($new_org_logo_width, $new_org_logo_height);
 }
@@ -1040,14 +1040,14 @@ sub command21 {
         $new_default_folder_prefix = "";
     } else {
         # add the trailing delimiter only if we know what the server is.
-	if ($optional_delimiter and $optional_delimiter ne 'detect') {
+        if ($optional_delimiter and $optional_delimiter ne 'detect') {
            $new_default_folder_prefix =~ s/${optional_delimiter}*$/$optional_delimiter/;
-	} elsif ($imap_server_type eq 'cyrus' or
-	         $imap_server_type eq 'courier') {
+        } elsif ($imap_server_type eq 'cyrus' or
+                 $imap_server_type eq 'courier') {
            $new_default_folder_prefix =~ s/\.*$/\./;
-	} elsif ($imap_server_type eq 'uw') {
+        } elsif ($imap_server_type eq 'uw') {
            $new_default_folder_prefix =~ s/\/*$/\//;
-	}
+        }
     }
     return $new_default_folder_prefix;
 }