added To: field
[squirrelmail.git] / config / config.php
index 166587e3315979d8e79e6e5b58eed79a5c230cf5..dfbb4e3d8b49f5124744ef6fe185a241a68326bf 100644 (file)
@@ -7,6 +7,18 @@ $org_name = "Operation Mobilization";
 
 /* The server that your imap server is on */
 $imapServerAddress = "adam.usa.om.org";
+$imapPort = 143;
+
+/* The domain where your email address is.  
+ * EX:  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 = "usa.om.org";
+
+/* Your SMTP server and port number (usually the same as the IMAP server) */
+$smtpServerAddress = "adam.usa.om.org";
+$smtpPort = 25;
 
 /* This is displayed right after they log in */
 $motd = "  Welcome to OM's webmail system, SquirrelMail.  We are currently in beta, and have not yet released a full version of SquirrelMail.  Please feel free to look around, and please report any bugs to <A HREF=\"mailto:nathan@usa.om.org\">Nathan</A> or <A HREF=\"mailto:luke@usa.om.org\">Luke</A>.";
@@ -51,7 +63,4 @@ $special_folders[1] = $trash_folder;
 $special_folders[2] = "INBOX.Sent";
 $special_folders[3] = "INBOX.Drafts";
 $special_folders[4] = "INBOX.Templates";
-
-/** This is the max chars before a line wrap on plain text messages */
-$wrap_max = 80;
 ?>