File: settings.php.sample

package info (click to toggle)
php-net-imap 1%3A1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 328 kB
  • sloc: php: 3,899; xml: 395; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 561 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4: */

/**
 * Connection settings for testing
 *
 * PHP version 5
 *
 * LICENSE:  GPL.
 *
 * @category    Net
 * @package     Net_IMAP
 * @author      Sebastian Ebling <hudeldudel@php.net>
 * @copyright   2006 Sebastian Ebling
 * @license     http://www.gnu.org/copyleft/gpl.html
 * @version     CVS: $Id$
 * @link        http://pear.php.net/package/Net_IMAP/
 */


/**
 * Connection settings
 */
define('HOST',  'testhost');
define('PORT',  '143');
define('USER',  'testuser');
define('PASS',  'testpass');

?>