X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=config%2Fconfig.php;h=dfda9dac2c054600b6219b9669b2b97a7e861432;hb=ae394964f5658989c429ef4f4212c2da09735d6c;hp=90b02c3b4d6b770f06794e2c244617814d0b6875;hpb=a8648d7595198531956248bdef0639ce3f965ac3;p=squirrelmail.git diff --git a/config/config.php b/config/config.php index 90b02c3b..dfda9dac 100644 --- a/config/config.php +++ b/config/config.php @@ -17,12 +17,17 @@ // Example: in "luke@usa.om.org", usa.om.org is the domain. // this is for all the messages sent out. Reply address // is generated by $username@$domain - $domain = "localhost"; + $domain = "initio.no"; // Your SMTP server and port number (usually the same as the IMAP server) $smtpServerAddress = "localhost"; $smtpPort = 25; +// Uncomment this if you want to deliver locally using sendmail instead +// of connecting to a SMTP-server + $useSendmail = true; + $sendmail_path = "/usr/sbin/sendmail"; + // This is displayed right after they log in $motd = "You are using SquirrelMail's web-based email client. If you run into any bugs or have suggestions, please report them to our mailing list"; @@ -51,6 +56,14 @@ $theme[3]["PATH"] = "../config/slashdot_theme.php"; $theme[3]["NAME"] = "Slashdot"; + $theme[4]["PATH"] = "../config/purple_theme.php"; + $theme[4]["NAME"] = "Purple"; + + $theme[5]["PATH"] = "../config/forest_theme.php"; + $theme[5]["NAME"] = "Forest"; + + $theme[6]["PATH"] = "../config/ice_theme.php"; + $theme[6]["NAME"] = "Ice"; // Whether or not to use a special color for special folders. If not, special // folders will be the same color as the other folders @@ -73,7 +86,7 @@ $default_move_to_trash = true; $trash_folder = "INBOX.Trash"; - $default_auto_expunge = true; + $auto_expunge = true; // Special Folders are folders that can't be manipulated like normal user created // folders can. A couple of examples would be "INBOX.Trash", "INBOX.Drafts". We have @@ -120,4 +133,6 @@ // $data_dir = "../data/"; $data_dir = "../data/"; + + $attachment_dir = $data_dir; ?>