X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=config%2Fconfig.php;h=dfda9dac2c054600b6219b9669b2b97a7e861432;hp=a18227d9911e8d0eb8bb8bd00b6be068fbc2c1ad;hb=4da27e4fe5b4d123738277b4f4dc058f7de8a16a;hpb=aa7670815099eebee6121ea8f95e36c9265c1e91 diff --git a/config/config.php b/config/config.php index a18227d9..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"; @@ -81,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 @@ -128,4 +133,6 @@ // $data_dir = "../data/"; $data_dir = "../data/"; + + $attachment_dir = $data_dir; ?>