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');
?>
|