mail_config.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
- <?php
- // +-------------------------------------------------------------+
- // | DeskPRO v [2.0.1 Production]
- // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
- // | Supplied by WTN-WDYL
- // | Nullified by WTN-WDYL
- // | Distribution via WebForum, ForumRU and associated file dumps
- // +-------------------------------------------------------------+
- // | DESKPRO IS NOT FREE SOFTWARE
- // +-------------------------------------------------------------+
- // | License ID : Full Enterprise License =) ...
- // | License Owner : WTN-WDYL Team
- // +-------------------------------------------------------------+
- // | $RCSfile: mail_config.php,v $
- // | $Date: 2004/02/10 01:34:25 $
- // | $Revision: 1.19 $
- // +-------------------------------------------------------------+
- // | File Details:
- // | - Mail gateway basic configuration
- // +-------------------------------------------------------------+
- error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
- ini_set('memory_limit', '16M');
- /********************************************************************************
- * Change the directive below to use the correct path to your DeskPRO *
- * includes folder. If you have not moved directories the default path will *
- * be correct *
- * *
- * The path can be relative, for example: *
- * define('INCLUDE_PATH', './../includes/'); *
- * *
- * Or it can be absolute, for example: *
- * define('INCLUDE_PATH', '/home/domain/public_html/includes/'); *
- * *
- * Remember to configure gateway accounts and POP3 accounts in the admin control *
- * panel after setting these options. *
- ********************************************************************************/
- define('INCLUDE_PATH', './../includes/');
- // method for collection mail; specify either POP3 or PIPE
- define('GATEWAY_METHOD', 'POP3');
- // file folder collection (this is for debugging)
- define('FILE_PATH', './emails/');
- ?>