poprepend.inc
上传用户:xuanqunsh
上传日期:2007-01-04
资源大小:58k
文件大小:2k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. # ---------------------------------------------------------------
  3. # phpop
  4. # A WWW based POP3 basic mail user agent (MUA)
  5. # Copyright (C) 1999  Padraic Renaghan
  6. # Licensed under terms of GNU General Public License
  7. # (see http://www.renaghan.com/phpop/source/LICENSE)
  8. # ---------------------------------------------------------------
  9. # $Id: poprepend.inc,v 1.4 2000/04/12 23:23:20 prenagha Exp $
  10. # ---------------------------------------------------------------
  11. # the following files are required for the correct
  12. # operation of PHPLIB and phpop
  13. #
  14. # when using a database for session storage, uncomment
  15. # the following two lines
  16. require("db_mysql.inc");  /* Change this to match your database. */
  17. require("ct_sql.inc");    /* Change this to match your data storage container. */
  18. # if you try and use the dbm file method for session storage,
  19. # uncomment this next line.
  20. #require("ct_dbm.inc");    /* Change this to match your data storage container. */
  21. require("session.inc");   /* Required for everything below.      */
  22. require("auth.inc");      /* Disable this, if you are not using authentication. */
  23. include("class.FastTemplate.inc"); /* template based HTML processing */
  24. include("class.Validator.inc"); /* common data validation routines */
  25. include("class.pop3.inc"); /* POP3 access class */
  26. require("poplocal.inc");  /* Required, contains your local configuration. */
  27. require("phpop.inc");     /* Application custom settings */
  28. require("page.inc");      /* Required, contains the page management functions. */
  29. require("email.inc");     /* Email send functions. */
  30. ?>