mail_config.php
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. <?php
  2. // +-------------------------------------------------------------+
  3. // | DeskPRO v [2.0.1 Production]
  4. // | Copyright (C) 2001 - 2004 Headstart Solutions Limited
  5. // | Supplied by WTN-WDYL
  6. // | Nullified by WTN-WDYL
  7. // | Distribution via WebForum, ForumRU and associated file dumps
  8. // +-------------------------------------------------------------+
  9. // | DESKPRO IS NOT FREE SOFTWARE
  10. // +-------------------------------------------------------------+
  11. // | License ID : Full Enterprise License =) ...
  12. // | License Owner : WTN-WDYL Team
  13. // +-------------------------------------------------------------+
  14. // | $RCSfile: mail_config.php,v $
  15. // | $Date: 2004/02/10 01:34:25 $
  16. // | $Revision: 1.19 $
  17. // +-------------------------------------------------------------+
  18. // | File Details:
  19. // | - Mail gateway basic configuration
  20. // +-------------------------------------------------------------+
  21. error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
  22. ini_set('memory_limit', '16M');
  23. /********************************************************************************
  24. * Change the directive below to use the correct path to your DeskPRO *
  25. * includes folder. If you have not moved directories the default path will *
  26. * be correct *
  27. * *
  28. * The path can be relative, for example: *
  29. *   define('INCLUDE_PATH', './../includes/'); *
  30. * *
  31. * Or it can be absolute, for example: *
  32. *   define('INCLUDE_PATH', '/home/domain/public_html/includes/'); *
  33. * *
  34. * Remember to configure gateway accounts and POP3 accounts in the admin control *
  35. * panel after setting these options. *
  36. ********************************************************************************/
  37. define('INCLUDE_PATH', './../includes/');
  38. // method for collection mail; specify either POP3 or PIPE
  39. define('GATEWAY_METHOD', 'POP3');
  40. // file folder collection (this is for debugging)
  41. define('FILE_PATH', './emails/');
  42. ?>