File: header.php.dist

package info (click to toggle)
imp4 4.2-4lenny3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 18,252 kB
  • ctags: 5,316
  • sloc: php: 21,340; xml: 19,302; makefile: 68; sql: 14
file content (22 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
 * $Horde: imp/config/header.php.dist,v 1.1.2.3 2007/12/20 13:59:20 jan Exp $
 *
 * 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'];
 */

$_header = array();

/* Add your custom entries below this line. */