What is IMP?
============
-:Contact: imp@lists.horde.org
+:Contact: imp@lists.horde.org
.. contents:: Contents
.. section-numbering::
# Enter a list of words that will be filtered. Only put one word on each
# line. Comments are allowed. A comment starts with a '#' and ends at the
# end of the line.
-#
poop
<?php
/**
- * $Id$
- *
* This file will allow you to set headers to append to outgoing mail messages.
*
* To add a new header item, simply add a new entry to the $_header array.
* The "key" should be the header name.
* The "value" should be the header data.
*
- * Example entries:
- *
- * // Add the IP of the remote browser
- * $_header['X-Originating-IP'] = $_SERVER['REMOTE_ADDR'];
- *
- * // Add the Browser information of the remote browser
- * $_header['X-Remote-Browser'] = $_SERVER['HTTP_USER_AGENT'];
+ * $Id$
*/
$_header = array();
/* Add your custom entries below this line. */
+
+// Add the IP of the remote browser
+//$_header['X-Originating-IP'] = $_SERVER['REMOTE_ADDR'];
+
+// Add the Browser information of the remote browser
+//$_header['X-Remote-Browser'] = $_SERVER['HTTP_USER_AGENT'];
<?php
/**
- * $Id$
- *
* IMP Hooks configuration file.
*
* THE HOOKS PROVIDED IN THIS FILE ARE EXAMPLES ONLY. DO NOT ENABLE THEM
* TO MATCH YOUR SPECIFIC NEEDS AND SYSTEM ENVIRONMENT.
*
* For more information please see the horde/config/hooks.php.dist file.
+ *
+ * $Id$
*/
// Here is an example signature hook function to set the signature from the
<?php
/**
- * $Id$
- *
* This file lets you extend IMP's menu with your own items.
*
* To add a new menu item, simply add a new entry to the $_menu array.
* 'separator'. It should look like this:
*
* $_menu[] = 'separator';
+ *
+ * $Id$
*/
$_menu = array();
<?php
/**
- * $Id$
- *
* Decide which output drivers you want to activate for the IMP application.
* Settings in this file override settings in horde/config/mime_drivers.php.
* All drivers configured in that file, but not configured here, will also
* to download the part. Don't set the parameter, or set to 0, to disable
* this check.
*
+ * $Id$
+ */
+
+/**
* The available drivers are:
* --------------------------
* alternative multipart/alternative parts
-<!-- This file contains any "Message Of The Day" Type information -->
-<!-- It will be included below the log-in form on the login page. -->
-
<?php
/**
+ * This file contains any "Message Of The Day" Type information.
+ * It will be included below the login form on the login page.
+ *
+ * $Id$
+ */
+
+/**
* Example code for switching between HTTP and HTTPS.
* Contributed by: James <james@james-web.net>
- * To use, unncomment and modify these variables:
+ * To use, uncomment and modify these variables:
*
* $SERVER_SSL_PORT - Port on which your SSL server listens (Usually 443)
* $SERVER_HTTP_PORT - Port on which your HTTP server listens (Usually 80)
// echo '<br /><div align="center" class="light">';
//
// switch ($port) {
-// case $SERVER_SSL_PORT:
-// echo _("You are currently using Secure HTTPS<br />");
-// break;
+// case $SERVER_SSL_PORT:
+// echo _("You are currently using Secure HTTPS<br />");
+// break;
//
-// case $SERVER_HTTP_PORT:
-// echo _("You are currently using Standard HTTP<br />");
-// break;
+// case $SERVER_HTTP_PORT:
+// echo _("You are currently using Standard HTTP<br />");
+// break;
// }
//
// echo '<a class="small" href="' . $SERVER_HTTP_URL . '" target="_parent">' . _("Click here for Standard HTTP") . '</a> - <a class="small" href="' . $SERVER_SSL_URL . '" target="_parent">' . _("Click here for Secure HTTPS") . '</a></div>';
<?php
/**
- * $Id$
- *
* Dynamic portal configuration page.
*
* Format: An array named $dimp_block_list
* 'domid' => A DOM ID to assign to the containing block
* 'tag' => A tag name to add to the template array. Allows
* the use of <if:block.tag> in custom template files.
+ *
+ * $Id$
*/
$collection = new Horde_Block_Collection();
<?php
/**
- * $Id$
- *
* See horde/config/prefs.php for documentation on the structure of this file.
+ *
+ * $Id$
*/
// Make sure that constants are defined.
<?php
/**
- * $Id$
- *
* This file specifies which mail servers people using your installation of
* IMP can login to.
*
* IMAP server must support the LANGUAGE extensions for this setting to
* have an effect. By default, IMAP messages are output in the IMAP
* server default language.
+ *
+ * $Id$
*/
/* Any entries whose key value ('foo' in $servers['foo']) begin with '_'
<?php
/**
- * $Id$
- *
* This file defines a custom list of words that will be added to the spell
* checker dictionary.
+ *
+ * $Id$
*/
/* Default list (English). */
Installing IMP 5.0
====================
-:Contact: imp@lists.horde.org
+:Contact: imp@lists.horde.org
.. contents:: Contents
.. section-numbering::
http://www.horde.org/mirrors.php
-Bleeding-edge development versions of IMP are available via CVS; see the file
+Bleeding-edge development versions of IMP are available via Git; see the file
`horde/docs/HACKING`_ in the Horde distribution, or the website
-http://www.horde.org/source/, for information on accessing the Horde CVS
+http://www.horde.org/source/, for information on accessing the Horde Git
repository.
IMP Development TODO List
===========================
-:Last update: $Date: 2008/03/22 10:45:36 $
-:Revision: $Revision: 1.30 $
-:Contact: imp@lists.horde.org
+:Contact: imp@lists.horde.org
-In no particular order:
-
-- Don't render large MIME parts.
- Print all messages in a mailbox.
Upgrading IMP
===============
-:Last update: $Date: 2008/10/20 03:54:39 $
-:Revision: $Revision: 1.33 $
-:Contact: imp@lists.horde.org
+:Contact: imp@lists.horde.org
These are instructions to upgrade from earlier IMP versions.