File: header.php.dist

package info (click to toggle)
imp4 4.1.3-4
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 14,988 kB
  • ctags: 3,720
  • sloc: xml: 17,038; php: 16,350; makefile: 64
file content (22 lines) | stat: -rw-r--r-- 658 bytes parent folder | download
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.2 2005/12/11 01:38:04 slusarz 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. */