home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / base.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  405 b   |  16 lines

  1. <?php
  2.  
  3. require_once "Mail/Queue.php";
  4.  
  5. $db_options['type']       = 'db';
  6. $db_options['dsn']        = 'mysql://user:password@host/database';
  7. $db_options['mail_table'] = 'mail_queue';
  8.  
  9. $mail_options['driver']   = 'smtp';
  10. $mail_options['host']     = 'your_server_smtp.com';
  11. $mail_options['port']     = 25;
  12. $mail_options['auth']     = false;
  13. $mail_options['username'] = '';
  14. $mail_options['password'] = '';
  15.  
  16. ?>