mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
efcddb3e8f
- SECURITY: Close an XSS hole exploited via the Content-type header of malicious emails. - Fix conversion of folder names in some non-ascii charsets with buggy iconv implementations. - Filter out <base> tags when viewing HTML messages (Bug #10). - Encode subject when saving as draft.
36 lines
1.2 KiB
Plaintext
36 lines
1.2 KiB
Plaintext
--- config/servers.php.dist.orig Sun May 30 11:35:13 2004
|
|
+++ config/servers.php.dist Fri Jun 4 22:01:32 2004
|
|
@@ -33,7 +33,7 @@
|
|
* is on.
|
|
*
|
|
* folders: The folder path for the IMAP server. i.e. UW IMAP
|
|
- * generally looks to "mail/" while Cyrus and Courier put folders
|
|
+ * generally looks to "Mail/" while Cyrus and Courier put folders
|
|
* under "INBOX." (note the trailing dot. IMPORTANT: Use this only if
|
|
* you want to restrict users to this subfolder. If you set this to
|
|
* 'INBOX.' with Cyrus or Courier-IMAPd, then users will not be able
|
|
@@ -87,14 +87,17 @@
|
|
|
|
$servers['imap'] = array(
|
|
'name' => 'IMAP Server',
|
|
- 'server' => 'imap.example.com',
|
|
- 'protocol' => 'imap/notls',
|
|
- 'port' => 143,
|
|
- 'folders' => 'mail/',
|
|
+// 'server' => 'imap.example.com',
|
|
+ 'server' => 'localhost',
|
|
+ 'protocol' => '%%PROTOCOL%%',
|
|
+ 'port' => %%IMAPPORT%%,
|
|
+ 'folders' => 'Mail/',
|
|
'namespace' => '',
|
|
'maildomain' => 'example.com',
|
|
- 'smtphost' => 'smtp.example.com',
|
|
- 'realm' => 'example.com',
|
|
+// 'smtphost' => 'smtp.example.com',
|
|
+ 'smtphost' => 'localhost',
|
|
+// 'realm' => 'example.com',
|
|
+ 'realm' => '',
|
|
'preferred' => ''
|
|
);
|
|
|