home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / defaults.generic.inc < prev    next >
Encoding:
Text File  |  2003-07-06  |  1.9 KB  |  89 lines

  1. <?php
  2.  
  3. /*
  4.     Default colors.  Used for login page, however,
  5.     may be changed by user for customized looks.
  6. */
  7. $default_colors=array(
  8.     "tool_bg"=>"#222244",
  9.     "tool_link"=>"#FFFFFF",
  10.     "folder_bg"=>"#222244",
  11.     "folder_link"=>"#FFFFFF",
  12.     "main_bg"=>"#f0f0f0",
  13.     "main_hilite"=>"#b1b1b9",
  14.     "main_text"=>"#000000",
  15.     "main_link"=>"#222222",
  16.     "main_head_bg" => "#222244",
  17.     "main_head_txt" => "#FFFFFF",
  18.     "main_darkbg" => "#444466",
  19.     "main_light_txt" => "#FFFFFF",
  20.     "quotes"=>"blue",
  21.     "font_family"=>"",
  22.     "font_size"=>"12",
  23.     "small_font_size"=>"10",
  24.     "menu_font_size"=>"12",
  25.     "folderlist_font_size"=>"12"
  26. );
  27. $init["my_colors"] = $default_colors;
  28.  
  29.  
  30. /*
  31.     Default prefernce values.  Note that
  32.     these values may be changed by the user
  33.     through the prefs panel
  34. */
  35. $default_prefs=array(
  36.     "colorize_quotes"=>1,
  37.     "detect_links"=>1,
  38.     "view_max"=>15,
  39.     "show_size"=>1,
  40.     "save_sent"=>0,
  41.     "sent_box_name"=>"",
  42.     "delete_trash"=>0,
  43.     "trash_name"=>"",
  44.     "rootdir"=>$rootdir,
  45.     "user_name"=>"",
  46.     "email_address"=>"",
  47.     "signature1"=>"",
  48.     "show_sig1"=>0,
  49.     "lang"=>$lang,
  50.     "charset"=>$lang_charset,
  51.     "sort_field"=>"DATE",
  52.     "sort_order"=>"DESC",
  53.     "list_folders"=>1,
  54.     "view_inside"=>1,
  55.     "timezone"=>0,
  56.     "html_in_frame"=>0,
  57.     "show_images_inline"=>0,
  58.     "showContacts"=>0,
  59.     "showCC"=>1,
  60.     "closeAfterSend"=>1,
  61.     "showNav"=>1,
  62.     "folderlistWidth"=>150,
  63.     "hideUnsubscribed"=>0,
  64.     "compose_inside"=>"",
  65.     "show_quota"=>"",
  66.     "showNumUnread"=>"",
  67.     "refresh_folderlist"=>"",
  68.     "folderlist_interval"=>"150",
  69.     "radar_interval"=>"150",
  70.     "main_toolbar"=>"b",
  71.     "alt_identities"=>"",
  72.     "main_cols" => "csfdzam",
  73.     "clock_system"=>12,
  74.     "nav_no_flag"=>0
  75. );
  76. $init["my_prefs"] = $default_prefs;
  77.  
  78.  
  79. /*
  80.     init_from_address
  81.     Used to generate "From" and/or "Sender" header addresses,
  82.     if host is different from domain.  If host is mail.domain.com
  83.     but mail should be addressed to @domain.com, set this value
  84.     to "%u@domains.com".  Default is blank, which is the same as
  85.     "%u@%h".
  86. */
  87. $init_from_address = ""; //for "user@host"
  88.  
  89. ?>