From: Michael M Slusarz Date: Thu, 19 Mar 2009 10:33:22 +0000 (-0600) Subject: Improve documentation for header config file. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4c1f25dd591ab53fe667b96eb58d4956d11dc259;p=horde.git Improve documentation for header config file. --- diff --git a/imp/config/header.php.dist b/imp/config/header.php.dist index f60005af5..7bde6ec94 100644 --- a/imp/config/header.php.dist +++ b/imp/config/header.php.dist @@ -3,18 +3,23 @@ * 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. + * KEY: Header name (must be in US-ASCII charset)) + * VALUE: Header data (must be in US-ASCII charset) * * $Id$ */ -$_header = array(); +$_header = array( -/* Add your custom entries below this line. */ + // Add information on organization to which the sender belongs. + // Not standardized for use in e-mail, but generally recognized. + // See RFC 2076 [3.7]; RFC 1036 [2.2.8] + //'Organization' => 'Example Corp.', -// Add the IP of the remote browser -//$_header['X-Originating-IP'] = $_SERVER['REMOTE_ADDR']; + // Add the IP of the remote browser + //'X-Originating-IP' => $_SERVER['REMOTE_ADDR'], -// Add the Browser information of the remote browser -//$_header['X-Remote-Browser'] = $_SERVER['HTTP_USER_AGENT']; + // Add the Browser information of the remote browser + //'X-Remote-Browser' => $_SERVER['HTTP_USER_AGENT'], + +);