I installed the froums and they seem to work fine. But I keep getting mailing errors on the forums. the site sends mail fine.
I guess what im asking is do i need to edit any settings in the emailer.php or SMTP.php to make the site use the mail function. This is what im using for mail server. http://www.qksoft.com/qk-smtp-server/
Here is an example of a mass email attempt
Then when posting
Another one posting
this is line 239 of emailer.php include('includes/smtp.' . $phpEx);
Line 242 of emailer.php $result = smtpmail($to, $this->subject, $this->msg, $this->extra_headers);
---------------------------------------------------------------------------
Line 153 of smtp.php // Wait for reply
Line 154 of SMTP.PHP server_parse($socket, "220", __LINE__);
line 174 of smtp.php fputs($socket, "HELO " . $board_config['smtp_host'] . "\r\n");
Line 175 of SMTP.php server_parse($socket, "220", __LINE__);
What i find odd although i could be wrong, is that smtp.php should not be included if use smtp is set to no, i have to wonder is the $use_smtp var is getting killed, are you by chance using BBtoNuke 2.0.10? if so open your common.php file and check if the first function in it is called function unset_vars, if yes post it.
common.pnp in the forum admin section reads ***************************************************************************/
$forum_admin = "1";
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
<?php
/***************************************************************************
* common.php
* -------------------
* begin : Saturday, Feb 23, 2001
* copyright : (C) 2001 The phpBB Group
* email : support@phpbb.com
*
* $Id: common.php,v 1.74.2.13 2004/07/15 18:00:34 acydburn Exp $
*
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}