mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
merged log tables, added new log_type (critical).
changed email class a little bit. bug fixed the queue a little bit. git-svn-id: file:///svn/phpbb/trunk@4210 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f31b471ee1
commit
1b320bbb00
10 changed files with 357 additions and 202 deletions
|
@ -101,10 +101,10 @@ if (isset($_POST['submit']))
|
||||||
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
||||||
$emailer = new emailer(true);
|
$emailer = new emailer(true);
|
||||||
|
|
||||||
$extra_headers = 'X-AntiAbuse: Board servername - ' . $config['server_name'] . "\r\n";
|
$extra_headers = 'X-AntiAbuse: Board servername - ' . $config['server_name'] . "\n";
|
||||||
$extra_headers .= 'X-AntiAbuse: User_id - ' . $user->data['user_id'] . "\r\n";
|
$extra_headers .= 'X-AntiAbuse: User_id - ' . $user->data['user_id'] . "\n";
|
||||||
$extra_headers .= 'X-AntiAbuse: Username - ' . $user->data['username'] . "\r\n";
|
$extra_headers .= 'X-AntiAbuse: Username - ' . $user->data['username'] . "\n";
|
||||||
$extra_headers .= 'X-AntiAbuse: User IP - ' . $user->ip . "\r\n";
|
$extra_headers .= 'X-AntiAbuse: User IP - ' . $user->ip . "\n";
|
||||||
|
|
||||||
foreach ($email_list as $lang => $to_ary)
|
foreach ($email_list as $lang => $to_ary)
|
||||||
{
|
{
|
||||||
|
@ -129,7 +129,7 @@ if (isset($_POST['submit']))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$emailer->queue->save();
|
$emailer->mail_queue->save();
|
||||||
unset($email_list);
|
unset($email_list);
|
||||||
|
|
||||||
if ($group_id)
|
if ($group_id)
|
||||||
|
|
|
@ -29,6 +29,7 @@ if (!empty($setmodules))
|
||||||
$filename = basename(__FILE__);
|
$filename = basename(__FILE__);
|
||||||
$module['LOG']['ADMIN_LOGS'] = $filename . "$SID&mode=admin";
|
$module['LOG']['ADMIN_LOGS'] = $filename . "$SID&mode=admin";
|
||||||
$module['LOG']['MOD_LOGS'] = $filename . "$SID&mode=mod";
|
$module['LOG']['MOD_LOGS'] = $filename . "$SID&mode=mod";
|
||||||
|
$module['LOG']['CRITICAL_LOGS'] = $filename . "$SID&mode=critical";
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -59,9 +60,9 @@ $sort_dir = (!empty($_REQUEST['sd'])) ? htmlspecialchars($_REQUEST['sd']) : 'd';
|
||||||
|
|
||||||
|
|
||||||
// Define some vars depending on which logs we're looking at
|
// Define some vars depending on which logs we're looking at
|
||||||
$log_table_sql = ($mode == 'admin') ? LOG_ADMIN_TABLE : LOG_MOD_TABLE;
|
$log_type = ($mode == 'admin') ? LOG_ADMIN : (($mode == 'mod') ? LOG_MOD : LOG_CRITICAL);
|
||||||
$l_title = ($mode == 'admin') ? $user->lang['ADMIN_LOGS'] : $user->lang['MOD_LOGS'];
|
$l_title = $user->lang[strtoupper($mode) . '_LOGS'];
|
||||||
$l_title_explain = ($mode == 'admin') ? $user->lang['ADMIN_LOGS_EXPLAIN'] : $user->lang['MOD_LOGS_EXPLAIN'];
|
$l_title_explain = $user->lang[strtoupper($mode) . '_LOGS_EXPLAIN'];
|
||||||
|
|
||||||
|
|
||||||
// Delete entries if requested and able
|
// Delete entries if requested and able
|
||||||
|
@ -74,10 +75,10 @@ if ((isset($_POST['delmarked']) || isset($_POST['delall'])) && $auth->acl_get('a
|
||||||
{
|
{
|
||||||
$where_sql .= (($where_sql != '') ? ', ' : '') . intval($marked);
|
$where_sql .= (($where_sql != '') ? ', ' : '') . intval($marked);
|
||||||
}
|
}
|
||||||
$where_sql = "WHERE log_id IN ($where_sql)";
|
$where_sql = "WHERE log_type = $log_type AND log_id IN ($where_sql)";
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = "DELETE FROM $table_sql
|
$sql = "DELETE FROM " . LOG_TABLE . "
|
||||||
$where_sql";
|
$where_sql";
|
||||||
$db->sql_query($sql);
|
$db->sql_query($sql);
|
||||||
|
|
||||||
|
|
|
@ -207,7 +207,7 @@ elseif (isset($_GET['pane']) && $_GET['pane'] == 'right')
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
$emailer->use_template('user_remind_inactive', $row['user_lang']);
|
$emailer->use_template('user_remind_inactive', $row['user_lang']);
|
||||||
$emailer->to($row['user_email']);
|
$emailer->to($row['user_email'], $row['username']);
|
||||||
|
|
||||||
$emailer->assign_vars(array(
|
$emailer->assign_vars(array(
|
||||||
'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $config['board_email_sig']),
|
'EMAIL_SIG' => str_replace('<br />', "\n", "-- \n" . $config['board_email_sig']),
|
||||||
|
|
|
@ -105,6 +105,11 @@ define('POST_GLOBAL', 3);
|
||||||
define('TRACK_NORMAL', 0); // not used at the moment
|
define('TRACK_NORMAL', 0); // not used at the moment
|
||||||
define('TRACK_POSTED', 1);
|
define('TRACK_POSTED', 1);
|
||||||
|
|
||||||
|
// Log types
|
||||||
|
define('LOG_ADMIN', 0);
|
||||||
|
define('LOG_MOD', 1);
|
||||||
|
define('LOG_CRITICAL', 2);
|
||||||
|
|
||||||
// Private messaging
|
// Private messaging
|
||||||
define('PRIVMSGS_READ_MAIL', 0);
|
define('PRIVMSGS_READ_MAIL', 0);
|
||||||
define('PRIVMSGS_NEW_MAIL', 1);
|
define('PRIVMSGS_NEW_MAIL', 1);
|
||||||
|
@ -147,8 +152,7 @@ define('GROUPS_TABLE', $table_prefix.'groups');
|
||||||
define('GROUPS_MODERATOR_TABLE', $table_prefix.'groups_moderator');
|
define('GROUPS_MODERATOR_TABLE', $table_prefix.'groups_moderator');
|
||||||
define('ICONS_TABLE', $table_prefix.'icons');
|
define('ICONS_TABLE', $table_prefix.'icons');
|
||||||
define('LANG_TABLE', $table_prefix.'lang');
|
define('LANG_TABLE', $table_prefix.'lang');
|
||||||
define('LOG_ADMIN_TABLE', $table_prefix.'log_admin');
|
define('LOG_TABLE', $table_prefix.'log');
|
||||||
define('LOG_MOD_TABLE', $table_prefix.'log_moderator');
|
|
||||||
define('MODERATOR_TABLE', $table_prefix.'moderator_cache');
|
define('MODERATOR_TABLE', $table_prefix.'moderator_cache');
|
||||||
define('POSTS_TABLE', $table_prefix.'posts');
|
define('POSTS_TABLE', $table_prefix.'posts');
|
||||||
define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
|
define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
|
||||||
|
@ -234,7 +238,7 @@ if (time() - $config['cache_interval'] >= $config['cache_last_gc'])
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Handle email/cron queue.
|
// Handle email/cron queue.
|
||||||
if (time() - $config['queue_interval'] >= $config['last_queue_run'])
|
if (time() - $config['queue_interval'] >= $config['last_queue_run'] && !defined('IN_ADMIN'))
|
||||||
{
|
{
|
||||||
if (file_exists($phpbb_root_path . 'cache/queue.' . $phpEx))
|
if (file_exists($phpbb_root_path . 'cache/queue.' . $phpEx))
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,10 +21,10 @@
|
||||||
|
|
||||||
class emailer
|
class emailer
|
||||||
{
|
{
|
||||||
var $msg, $subject, $extra_headers;
|
var $vars, $msg, $subject, $extra_headers, $encoding;
|
||||||
var $to_addres, $cc_address, $bcc_address;
|
var $addresses;
|
||||||
var $reply_to, $from;
|
var $reply_to, $from;
|
||||||
var $use_queue, $queue;
|
var $use_queue, $mail_queue;
|
||||||
|
|
||||||
var $tpl_msg = array();
|
var $tpl_msg = array();
|
||||||
|
|
||||||
|
@ -35,8 +35,8 @@ class emailer
|
||||||
$this->use_queue = $use_queue;
|
$this->use_queue = $use_queue;
|
||||||
if ($use_queue)
|
if ($use_queue)
|
||||||
{
|
{
|
||||||
$this->queue = new Queue();
|
$this->mail_queue = new queue();
|
||||||
$this->queue->init('emailer', $config['email_package_size']);
|
$this->mail_queue->init('emailer', $config['email_package_size']);
|
||||||
}
|
}
|
||||||
$this->reset();
|
$this->reset();
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,7 @@ class emailer
|
||||||
function reset()
|
function reset()
|
||||||
{
|
{
|
||||||
$this->addresses = array();
|
$this->addresses = array();
|
||||||
$this->vars = $this->msg = $this->extra_headers = $this->replyto = $this->from = '';
|
$this->vars = $this->replyto = $this->from = $this->msg = $this->encoding = $this->extra_headers = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sets an email address to send to
|
// Sets an email address to send to
|
||||||
|
@ -70,14 +70,16 @@ class emailer
|
||||||
$this->addresses['bcc'][$pos]['name'] = trim($realname);
|
$this->addresses['bcc'][$pos]['name'] = trim($realname);
|
||||||
}
|
}
|
||||||
|
|
||||||
function replyto($address)
|
function replyto($address, $realname = '')
|
||||||
{
|
{
|
||||||
$this->replyto = trim($address);
|
$this->replyto = ($realname != '') ? mail_encode(trim($realname)) . ' ' : '';
|
||||||
|
$this->replyto .= '<' . trim($address) . '>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function from($address)
|
function from($address, $realname = '')
|
||||||
{
|
{
|
||||||
$this->from = trim($address);
|
$this->from = ($realname != '') ? mail_encode(trim($realname)) . ' ' : '';
|
||||||
|
$this->from .= '<' . trim($address) . '>';
|
||||||
}
|
}
|
||||||
|
|
||||||
// set up subject for mail
|
// set up subject for mail
|
||||||
|
@ -89,7 +91,7 @@ class emailer
|
||||||
// set up extra mail headers
|
// set up extra mail headers
|
||||||
function headers($headers)
|
function headers($headers)
|
||||||
{
|
{
|
||||||
$this->extra_headers .= trim($headers) . "\r\n";
|
$this->extra_headers .= trim($headers) . "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
function template($template_file, $template_lang = '')
|
function template($template_file, $template_lang = '')
|
||||||
|
@ -140,7 +142,7 @@ class emailer
|
||||||
$this->vars = (empty($this->vars)) ? $vars : $this->vars . $vars;
|
$this->vars = (empty($this->vars)) ? $vars : $this->vars . $vars;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send the mail out to the recipients set previously in var $this->address
|
// Send the mail out to the recipients set previously in var $this->addresses
|
||||||
function send()
|
function send()
|
||||||
{
|
{
|
||||||
global $config, $user, $phpEx, $phpbb_root_path;
|
global $config, $user, $phpEx, $phpbb_root_path;
|
||||||
|
@ -175,7 +177,7 @@ class emailer
|
||||||
if (preg_match('#^(Subject:(.*?))$#m', $this->msg, $match))
|
if (preg_match('#^(Subject:(.*?))$#m', $this->msg, $match))
|
||||||
{
|
{
|
||||||
$this->subject = (trim($match[2]) != '') ? trim($match[2]) : (($this->subject != '') ? $this->subject : $user->lang['NO_SUBJECT']);
|
$this->subject = (trim($match[2]) != '') ? trim($match[2]) : (($this->subject != '') ? $this->subject : $user->lang['NO_SUBJECT']);
|
||||||
$drop_header .= '[\r\n]*?' . preg_quote($match[1], '#');
|
$drop_header .= '[\n]*?' . preg_quote($match[1], '#');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -185,7 +187,7 @@ class emailer
|
||||||
if (preg_match('#^(Charset:(.*?))$#m', $this->msg, $match))
|
if (preg_match('#^(Charset:(.*?))$#m', $this->msg, $match))
|
||||||
{
|
{
|
||||||
$this->encoding = (trim($match[2]) != '') ? trim($match[2]) : trim($user->lang['ENCODING']);
|
$this->encoding = (trim($match[2]) != '') ? trim($match[2]) : trim($user->lang['ENCODING']);
|
||||||
$drop_header .= '[\r\n]*?' . preg_quote($match[1], '#');
|
$drop_header .= '[\n]*?' . preg_quote($match[1], '#');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -203,26 +205,53 @@ class emailer
|
||||||
{
|
{
|
||||||
foreach ($address_ary as $which_ary)
|
foreach ($address_ary as $which_ary)
|
||||||
{
|
{
|
||||||
$$type .= (($$type != '') ? ',' : '') . (($which_ary['name'] != '') ? '"' . $this->encode($which_ary['name']) . '" <' . $which_ary['email'] . '>' : '<' . $which_ary['email'] . '>');
|
$$type .= (($$type != '') ? ',' : '') . (($which_ary['name'] != '') ? mail_encode($which_ary['name']) . ' <' . $which_ary['email'] . '>' : '<' . $which_ary['email'] . '>');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($this->replyto))
|
||||||
|
{
|
||||||
|
$this->replyto = '<' . $config['board_email'] . '>';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (empty($this->from))
|
||||||
|
{
|
||||||
|
$this->from = '<' . $config['board_email'] . '>';
|
||||||
|
}
|
||||||
|
|
||||||
// Build header
|
// Build header
|
||||||
$this->extra_headers = (($this->replyto !='') ? "Reply-to: <$this->replyto>\r\n" : '') . (($this->from != '') ? "From: <$this->from>\r\n" : "From: <" . $config['board_email'] . ">\r\n") . "Return-Path: <" . $config['board_email'] . ">\r\nMessage-ID: <" . md5(uniqid(time())) . "@" . $config['server_name'] . ">\r\nMIME-Version: 1.0\r\nContent-type: text/plain; charset=" . $this->encoding . "\r\nContent-transfer-encoding: 8bit\r\nDate: " . gmdate('D, d M Y H:i:s Z', time()) . "\r\nX-Priority: 3\r\nX-MSMail-Priority: Normal\r\nX-Mailer: PHP\r\nX-MimeOLE: Produced By phpBB2\r\n" . $this->extra_headers . (($cc != '') ? "Cc:$cc\r\n" : '') . (($bcc != '') ? "Bcc:$bcc\r\n" : '');
|
$headers = 'From: ' . $this->from . "\n";
|
||||||
|
$headers .= 'Reply-to: ' . $this->replyto . "\n";
|
||||||
|
$headers .= "Return-Path: <" . $config['board_email'] . ">\n";
|
||||||
|
$headers .= "Sender: <" . $config['board_email'] . ">\n";
|
||||||
|
$headers .= "MIME-Version: 1.0\n";
|
||||||
|
// Message-ID: <" . md5(uniqid(time())) . "@" . $config['server_name'] . ">\n
|
||||||
|
// $headers .= "Date: " . gmdate('D, d M Y H:i:s Z', time()) . "\n";
|
||||||
|
$headers .= "X-Priority: 3\n";
|
||||||
|
$headers .= "X-MSMail-Priority: Normal\n";
|
||||||
|
$headers .= "X-Mailer: PHP\n";
|
||||||
|
$headers .= "X-MimeOLE: Produced By phpBB2\n";
|
||||||
|
$headers .= "Content-type: text/plain; charset=" . $this->encoding . "\n";
|
||||||
|
$headers .= "Content-transfer-encoding: 8bit\n";
|
||||||
|
$headers .= ($this->extra_headers != '') ? $this->extra_headers : '';
|
||||||
|
$headers .= ($cc != '') ? "Cc:$cc\n" : '';
|
||||||
|
$headers .= ($bcc != '') ? "Bcc:$bcc\n" : '';
|
||||||
|
|
||||||
// Send message ... removed $this->encode() from subject for time being
|
// Send message ... removed $this->encode() from subject for time being
|
||||||
if (!$this->use_queue)
|
if (!$this->use_queue)
|
||||||
{
|
{
|
||||||
$result = ($config['smtp_delivery']) ? smtpmail($to, $this->subject, $this->msg, $this->extra_headers) : mail($to, $this->subject, preg_replace("#(?<!\r)\n#s", "\r\n", $this->msg), $this->extra_headers);
|
$mail_to = ($to == '') ? 'Undisclosed-Recipients:;' : $to;
|
||||||
|
$err_msg = '';
|
||||||
|
$result = ($config['smtp_delivery']) ? smtpmail($this->addresses, $this->subject, $this->msg, $err_msg, $headers) : mail($mail_to, $this->subject, preg_replace("#(?<!\r)\n#s", "\n", $this->msg), $headers);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$this->queue->put('emailer', array(
|
$this->mail_queue->put('emailer', array(
|
||||||
'smtp_delivery' => $config['smtp_delivery'],
|
|
||||||
'to' => $to,
|
'to' => $to,
|
||||||
|
'addresses' => $this->addresses,
|
||||||
'subject' => $this->subject,
|
'subject' => $this->subject,
|
||||||
'msg' => $this->msg,
|
'msg' => $this->msg,
|
||||||
'extra_headers' => $this->extra_headers)
|
'extra_headers' => $headers)
|
||||||
);
|
);
|
||||||
|
|
||||||
$result = true;
|
$result = true;
|
||||||
|
@ -231,66 +260,69 @@ class emailer
|
||||||
// Did it work?
|
// Did it work?
|
||||||
if (!$result)
|
if (!$result)
|
||||||
{
|
{
|
||||||
$message = '<u>EMAIL ERROR</u> [ ' . (($config['smtp_delivery']) ? 'SMTP' : 'PHP') . ' ]<br /><br />' . $result . '<br /><br /><u>CALLING PAGE</u><br /><br />' . ((!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF']) . '<br />';
|
$message = '<u>EMAIL ERROR</u> [ ' . (($config['smtp_delivery']) ? 'SMTP' : 'PHP') . ' ]<br /><br />' . $err_msg . '<br /><br /><u>CALLING PAGE</u><br /><br />' . ((!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF']) . '<br />';
|
||||||
|
add_log('critical', 'EMAIL_ERROR', $message);
|
||||||
trigger_error($message, E_USER_ERROR);
|
trigger_error($message, E_USER_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Encodes the given string for proper display for this encoding ... nabbed
|
} // class emailer
|
||||||
// from php.net and modified. There is an alternative encoding method which
|
|
||||||
// may produce less output but it's questionable as to its worth in this
|
// Encodes the given string for proper display for this encoding ... nabbed
|
||||||
// scenario IMO
|
// from php.net and modified. There is an alternative encoding method which
|
||||||
function encode($str)
|
// may produce less output but it's questionable as to its worth in this
|
||||||
|
// scenario IMO
|
||||||
|
function mail_encode($str)
|
||||||
|
{
|
||||||
|
if ($this->encoding == '')
|
||||||
{
|
{
|
||||||
if ($this->encoding == '')
|
return $str;
|
||||||
{
|
|
||||||
return $str;
|
|
||||||
}
|
|
||||||
|
|
||||||
// define start delimimter, end delimiter and spacer
|
|
||||||
$end = "?=";
|
|
||||||
$start = "=?$this->encoding?B?";
|
|
||||||
$spacer = "$end\r\n $start";
|
|
||||||
|
|
||||||
// determine length of encoded text within chunks and ensure length is even
|
|
||||||
$length = 75 - strlen($start) - strlen($end);
|
|
||||||
$length = floor($length / 2) * 2;
|
|
||||||
|
|
||||||
// encode the string and split it into chunks with spacers after each chunk
|
|
||||||
$str = chunk_split(base64_encode($str), $length, $spacer);
|
|
||||||
|
|
||||||
// remove trailing spacer and add start and end delimiters
|
|
||||||
$str = preg_replace('#' . preg_quote($spacer) . '$#', '', $str);
|
|
||||||
|
|
||||||
return $start . $str . $end;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // class emailer
|
// define start delimimter, end delimiter and spacer
|
||||||
|
$end = "?=";
|
||||||
|
$start = "=?$this->encoding?B?";
|
||||||
|
$spacer = "$end\r\n $start";
|
||||||
|
|
||||||
|
// determine length of encoded text within chunks and ensure length is even
|
||||||
|
$length = 75 - strlen($start) - strlen($end);
|
||||||
|
$length = floor($length / 2) * 2;
|
||||||
|
|
||||||
|
// encode the string and split it into chunks with spacers after each chunk
|
||||||
|
$str = chunk_split(base64_encode($str), $length, $spacer);
|
||||||
|
|
||||||
|
// remove trailing spacer and add start and end delimiters
|
||||||
|
$str = preg_replace('#' . preg_quote($spacer) . '$#', '', $str);
|
||||||
|
|
||||||
|
return $start . $str . $end;
|
||||||
|
}
|
||||||
|
|
||||||
// This function has been modified as provided by SirSir to allow multiline responses when
|
// This function has been modified as provided by SirSir to allow multiline responses when
|
||||||
// using SMTP Extensions
|
// using SMTP Extensions
|
||||||
function server_parse($socket, $response)
|
function server_parse($socket, $response)
|
||||||
{
|
{
|
||||||
while (substr($server_response, 3, 1) != ' ')
|
while (substr($server_response, 3, 1) != ' ')
|
||||||
{
|
{
|
||||||
if (!($server_response = fgets($socket, 256)))
|
if (!($server_response = fgets($socket, 256)))
|
||||||
{
|
{
|
||||||
trigger_error('Could not get mail server response codes', E_USER_ERROR);
|
return 'Could not get mail server response codes';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(substr($server_response, 0, 3) == $response))
|
if (!(substr($server_response, 0, 3) == $response))
|
||||||
{
|
{
|
||||||
trigger_error("Ran into problems sending Mail. Response: $server_response", E_USER_ERROR);
|
return "Ran into problems sending Mail. Response: $server_response";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Replacement or substitute for PHP's mail command
|
// Replacement or substitute for PHP's mail command
|
||||||
function smtpmail($mail_to, $subject, $message, $headers = '')
|
function smtpmail($addresses, $subject, $message, &$err_msg, $headers = '')
|
||||||
{
|
{
|
||||||
global $config;
|
global $config, $_SERVER;
|
||||||
|
|
||||||
// Fix any bare linefeeds in the message to make it RFC821 Compliant.
|
// Fix any bare linefeeds in the message to make it RFC821 Compliant.
|
||||||
$message = preg_replace("#(?<!\r)\n#si", "\r\n", $message);
|
$message = preg_replace("#(?<!\r)\n#si", "\r\n", $message);
|
||||||
|
@ -301,7 +333,7 @@ function smtpmail($mail_to, $subject, $message, $headers = '')
|
||||||
{
|
{
|
||||||
if (sizeof($headers) > 1)
|
if (sizeof($headers) > 1)
|
||||||
{
|
{
|
||||||
$headers = join("\r\n", $headers);
|
$headers = join("\n", $headers);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -317,112 +349,183 @@ function smtpmail($mail_to, $subject, $message, $headers = '')
|
||||||
// but we have to grab bcc and cc headers and treat them differently
|
// but we have to grab bcc and cc headers and treat them differently
|
||||||
// Something we really didn't take into consideration originally
|
// Something we really didn't take into consideration originally
|
||||||
$header_array = explode("\r\n", $headers);
|
$header_array = explode("\r\n", $headers);
|
||||||
@reset($header_array);
|
|
||||||
|
|
||||||
$headers = '';
|
$headers = '';
|
||||||
while(list(, $header) = each($header_array))
|
|
||||||
|
foreach ($header_array as $header)
|
||||||
{
|
{
|
||||||
if (preg_match('#^cc:#si', $header))
|
if (preg_match('#^cc:#si', $header) || preg_match('#^bcc:#si', $header))
|
||||||
{
|
{
|
||||||
$cc = preg_replace('#^cc:(.*)#si', '\1', $header);
|
|
||||||
}
|
|
||||||
else if (preg_match('#^bcc:#si', $header))
|
|
||||||
{
|
|
||||||
$bcc = preg_replace('#^bcc:(.*)#si', '\1', $header);
|
|
||||||
$header = '';
|
$header = '';
|
||||||
}
|
}
|
||||||
$headers .= $header . "\r\n";
|
$headers .= ($header != '') ? $header . "\r\n" : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$headers = chop($headers);
|
$headers = chop($headers);
|
||||||
$cc = explode(',', $cc);
|
|
||||||
$bcc = explode(',', $bcc);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trim($subject) == '')
|
if (trim($subject) == '')
|
||||||
{
|
{
|
||||||
trigger_error('No email Subject specified', E_USER_ERROR);
|
$err_msg = 'No email Subject specified';
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trim($message) == '')
|
if (trim($message) == '')
|
||||||
{
|
{
|
||||||
trigger_error('Email message was blank', E_USER_ERROR);
|
$err_msg = 'Email message was blank';
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
$mail_to_array = explode(',', $mail_to);
|
$mail_rcpt = $mail_to = $mail_cc = array();
|
||||||
|
|
||||||
|
// Build correct addresses for RCPT TO command and the client side display (TO, CC)
|
||||||
|
foreach ($addresses['to'] as $which_ary)
|
||||||
|
{
|
||||||
|
$mail_to[] = ($which_ary['name'] != '') ? mail_encode(trim($which_ary['name'])) . ' <' . trim($which_ary['email']) . '>' : '<' . trim($which_ary['email']) . '>';
|
||||||
|
$mail_rcpt['to'][] = '<' . trim($which_ary['email']) . '>';
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($addresses['bcc'] as $which_ary)
|
||||||
|
{
|
||||||
|
$mail_rcpt['bcc'][] = '<' . trim($which_ary['email']) . '>';
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($addresses['cc'] as $which_ary)
|
||||||
|
{
|
||||||
|
$mail_cc[] = ($which_ary['name'] != '') ? mail_encode(trim($which_ary['name'])) . ' <' . trim($which_ary['email']) . '>' : '<' . trim($which_ary['email']) . '>';
|
||||||
|
$mail_rcpt['cc'][] = '<' . trim($which_ary['email']) . '>';
|
||||||
|
}
|
||||||
|
|
||||||
// Ok we have error checked as much as we can to this point let's get on
|
// Ok we have error checked as much as we can to this point let's get on
|
||||||
// it already.
|
// it already.
|
||||||
if (!$socket = fsockopen($config['smtp_host'], $config['smtp_port'], $errno, $errstr, 20))
|
if (!$socket = fsockopen($config['smtp_host'], $config['smtp_port'], $errno, $errstr, 20))
|
||||||
{
|
{
|
||||||
trigger_error("Could not connect to smtp host : $errno : $errstr", E_USER_ERROR);
|
$err_msg = "Could not connect to smtp host : $errno : $errstr";
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for reply
|
// Wait for reply
|
||||||
server_parse($socket, "220");
|
if ($err_msg = server_parse($socket, '220'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
// Do we want to use AUTH?, send RFC2554 EHLO, else send RFC821 HELO
|
// Do we want to use AUTH?, send RFC2554 EHLO, else send RFC821 HELO
|
||||||
// This improved as provided by SirSir to accomodate
|
// This improved as provided by SirSir to accomodate
|
||||||
if (!empty($config['smtp_username']) && !empty($config['smtp_password']))
|
if( !empty($board_config['smtp_username']) && !empty($board_config['smtp_password']) )
|
||||||
{
|
{
|
||||||
fputs($socket, "EHLO " . $config['smtp_host'] . "\r\n");
|
fputs($socket, "EHLO " . $board_config['smtp_host'] . "\r\n");
|
||||||
server_parse($socket, "250");
|
server_parse($socket, "250");
|
||||||
|
|
||||||
fputs($socket, "AUTH LOGIN\r\n");
|
fputs($socket, "AUTH LOGIN\r\n");
|
||||||
server_parse($socket, "334");
|
server_parse($socket, "334");
|
||||||
|
|
||||||
fputs($socket, base64_encode($config['smtp_username']) . "\r\n");
|
fputs($socket, base64_encode($board_config['smtp_username']) . "\r\n");
|
||||||
server_parse($socket, "334");
|
server_parse($socket, "334");
|
||||||
|
|
||||||
fputs($socket, base64_encode($config['smtp_password']) . "\r\n");
|
fputs($socket, base64_encode($board_config['smtp_password']) . "\r\n");
|
||||||
server_parse($socket, "235");
|
server_parse($socket, "235");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fputs($socket, "HELO " . $config['smtp_host'] . "\r\n");
|
fputs($socket, "HELO " . $board_config['smtp_host'] . "\r\n");
|
||||||
server_parse($socket, "250");
|
server_parse($socket, "250");
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
// TEMP TEMP TEMP
|
||||||
|
$config['smtp_auth_method'] = 'LOGIN';
|
||||||
|
|
||||||
|
// I see the potential to use pipelining after the EHLO call...
|
||||||
|
|
||||||
|
// Do we want to use AUTH?, send RFC2554 EHLO, else send RFC821 HELO
|
||||||
|
// This improved as provided by SirSir to accomodate
|
||||||
|
if (!empty($config['smtp_username']) && !empty($config['smtp_password']))
|
||||||
|
{
|
||||||
|
// See RFC 821 3.5
|
||||||
|
// best would be to do a reverse resolution on the IP and use the result (if any) as
|
||||||
|
// domain, or the IP as fallback. Since reverse dns is broken in many php versions (afaik)
|
||||||
|
// it seems better to just use the ip.
|
||||||
|
fputs($socket, "EHLO [" . $_SERVER["SERVER_ADDR"] . "]\r\n");
|
||||||
|
if ($err_msg = server_parse($socket, '250'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// EHLO returns the supported AUTH types
|
||||||
|
// NOTE: best way (IMO) is to first choose *MD5 (if it is available), then PLAIN, then LOGIN and if
|
||||||
|
// implemented (as a last resort) ANONYMOUS
|
||||||
|
switch ($config['smtp_auth_method'])
|
||||||
|
{
|
||||||
|
case 'PLAIN':
|
||||||
|
// Note: PLAIN should be default (if *MD5 is not available), since LOGIN is not fully compatible with
|
||||||
|
// Cyrus-SASL (used by many MTAs for SMTP-AUTH)
|
||||||
|
$base64_method_plain = base64_encode($config['smtp_username'] . "\0" . $config['smtp_username'] . "\0" . $config['smtp_password']);
|
||||||
|
fputs($socket, "AUTH PLAIN $base64_method_plain\r\n");
|
||||||
|
if ($err_msg = server_parse($socket, '235'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'LOGIN':
|
||||||
|
fputs($socket, "AUTH LOGIN\r\n");
|
||||||
|
if ($err_msg = server_parse($socket, '334'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
fputs($socket, base64_encode($config['smtp_username']) . "\r\n");
|
||||||
|
if ($err_msg = server_parse($socket, '334'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
fputs($socket, base64_encode($config['smtp_password']) . "\r\n");
|
||||||
|
if ($err_msg = server_parse($socket, '235'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
// cram-md5, digest-md5...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fputs($socket, "HELO [" . $_SERVER["SERVER_ADDR"] . "]\r\n");
|
||||||
|
if ($err_msg = server_parse($socket, '250'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// From this point onward most server response codes should be 250
|
// From this point onward most server response codes should be 250
|
||||||
// Specify who the mail is from....
|
// Specify who the mail is from....
|
||||||
fputs($socket, "MAIL FROM: <" . $config['board_email'] . ">\r\n");
|
fputs($socket, "MAIL FROM: <" . $board_config['board_email'] . ">\r\n");
|
||||||
server_parse($socket, "250");
|
if ($err_msg = server_parse($socket, '250'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
// Specify each user to send to and build to header.
|
// Specify each user to send to and build to header.
|
||||||
@reset($mail_to_array);
|
$to_header = implode(', ', $mail_to);
|
||||||
while(list(, $mail_to_address) = each($mail_to_array))
|
$cc_header = implode(', ', $mail_cc);
|
||||||
{
|
|
||||||
// Add an additional bit of error checking to the To field.
|
|
||||||
$mail_to_address = trim($mail_to_address);
|
|
||||||
if (preg_match('#[^ ]+\@[^ ]+#', $mail_to_address))
|
|
||||||
{
|
|
||||||
fputs($socket, "RCPT TO: $mail_to_address\r\n");
|
|
||||||
server_parse($socket, "250");
|
|
||||||
}
|
|
||||||
$to_header .= (($to_header !='') ? ', ' : '') . "$mail_to_address";
|
|
||||||
}
|
|
||||||
// Ok now do the CC and BCC fields...
|
|
||||||
@reset($bcc);
|
|
||||||
while(list(, $bcc_address) = each($bcc))
|
|
||||||
{
|
|
||||||
// Add an additional bit of error checking to bcc header...
|
|
||||||
$bcc_address = trim($bcc_address);
|
|
||||||
if (preg_match('#[^ ]+\@[^ ]+#', $bcc_address))
|
|
||||||
{
|
|
||||||
fputs($socket, "RCPT TO: $bcc_address\r\n");
|
|
||||||
server_parse($socket, "250");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@reset($cc);
|
// Now tell the MTA to send the Message to the following people... [TO, BCC, CC]
|
||||||
while(list(, $cc_address) = each($cc))
|
foreach ($mail_rcpt as $type => $mail_to_addresses)
|
||||||
{
|
{
|
||||||
// Add an additional bit of error checking to cc header
|
foreach ($mail_to_addresses as $mail_to_address)
|
||||||
$cc_address = trim($cc_address);
|
|
||||||
if (preg_match('#[^ ]+\@[^ ]+#', $cc_address))
|
|
||||||
{
|
{
|
||||||
fputs($socket, "RCPT TO: $cc_address\r\n");
|
// Add an additional bit of error checking to the To field.
|
||||||
server_parse($socket, "250");
|
if (preg_match('#[^ ]+\@[^ ]+#', $mail_to_address))
|
||||||
|
{
|
||||||
|
fputs($socket, "RCPT TO: $mail_to_address\r\n");
|
||||||
|
if ($err_msg = server_parse($socket, '250'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -430,15 +533,24 @@ function smtpmail($mail_to, $subject, $message, $headers = '')
|
||||||
fputs($socket, "DATA\r\n");
|
fputs($socket, "DATA\r\n");
|
||||||
|
|
||||||
// This is the last response code we look for until the end of the message.
|
// This is the last response code we look for until the end of the message.
|
||||||
server_parse($socket, "354");
|
if ($err_msg = server_parse($socket, '354'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
// Send the Subject Line...
|
// Send the Subject Line...
|
||||||
fputs($socket, "Subject: $subject\r\n");
|
fputs($socket, "Subject: $subject\r\n");
|
||||||
|
|
||||||
// Now the To Header.
|
// Now the To Header.
|
||||||
$to_header = ($to_header == '') ? "<Undisclosed-recipients:;>" : $to_header;
|
$to_header = ($to_header == '') ? 'Undisclosed-Recipients:;' : $to_header;
|
||||||
fputs($socket, "To: $to_header\r\n");
|
fputs($socket, "To: $to_header\r\n");
|
||||||
|
|
||||||
|
// Now the CC Header.
|
||||||
|
if ($cc_header != '')
|
||||||
|
{
|
||||||
|
fputs($socket, "CC: $cc_header\r\n");
|
||||||
|
}
|
||||||
|
|
||||||
// Now any custom headers....
|
// Now any custom headers....
|
||||||
fputs($socket, "$headers\r\n\r\n");
|
fputs($socket, "$headers\r\n\r\n");
|
||||||
|
|
||||||
|
@ -447,7 +559,10 @@ function smtpmail($mail_to, $subject, $message, $headers = '')
|
||||||
|
|
||||||
// Ok the all the ingredients are mixed in let's cook this puppy...
|
// Ok the all the ingredients are mixed in let's cook this puppy...
|
||||||
fputs($socket, ".\r\n");
|
fputs($socket, ".\r\n");
|
||||||
server_parse($socket, "250");
|
if ($err_msg = server_parse($socket, '250'))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
// Now tell the server we are done and close the socket...
|
// Now tell the server we are done and close the socket...
|
||||||
fputs($socket, "QUIT\r\n");
|
fputs($socket, "QUIT\r\n");
|
||||||
|
@ -458,14 +573,14 @@ function smtpmail($mail_to, $subject, $message, $headers = '')
|
||||||
|
|
||||||
// This class is for handling queues - to be placed into another file ?
|
// This class is for handling queues - to be placed into another file ?
|
||||||
// At the moment it is only handling the email queue
|
// At the moment it is only handling the email queue
|
||||||
class Queue
|
class queue
|
||||||
{
|
{
|
||||||
var $data = array();
|
var $data = array();
|
||||||
var $queue_data = array();
|
var $queue_data = array();
|
||||||
var $package_size = 0;
|
var $package_size = 0;
|
||||||
var $cache_file = '';
|
var $cache_file = '';
|
||||||
|
|
||||||
function Queue()
|
function queue()
|
||||||
{
|
{
|
||||||
global $phpEx, $phpbb_root_path;
|
global $phpEx, $phpbb_root_path;
|
||||||
|
|
||||||
|
@ -507,7 +622,7 @@ class Queue
|
||||||
// Thinking about a lock file...
|
// Thinking about a lock file...
|
||||||
function process()
|
function process()
|
||||||
{
|
{
|
||||||
global $_SERVER, $_ENV, $db;
|
global $db, $config, $phpEx, $phpbb_root_path;
|
||||||
|
|
||||||
if (file_exists($this->cache_file))
|
if (file_exists($this->cache_file))
|
||||||
{
|
{
|
||||||
|
@ -526,9 +641,20 @@ class Queue
|
||||||
|
|
||||||
$num_items = (count($data_array['data']) < $package_size) ? count($data_array['data']) : $package_size;
|
$num_items = (count($data_array['data']) < $package_size) ? count($data_array['data']) : $package_size;
|
||||||
|
|
||||||
if ($object == 'emailer')
|
switch ($object)
|
||||||
{
|
{
|
||||||
@set_time_limit(60);
|
case 'emailer':
|
||||||
|
// Delete the email queued objects if mailing is disabled
|
||||||
|
if (!$config['email_enable'])
|
||||||
|
{
|
||||||
|
unset($this->queue_data['emailer']);
|
||||||
|
break 2;
|
||||||
|
}
|
||||||
|
include_once($phpbb_root_path . 'includes/functions_admin.'.$phpEx);
|
||||||
|
@set_time_limit(60);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i = 0; $i < $num_items; $i++)
|
for ($i = 0; $i < $num_items; $i++)
|
||||||
|
@ -538,16 +664,23 @@ class Queue
|
||||||
$$var = $value;
|
$$var = $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($object == 'emailer')
|
switch ($object)
|
||||||
{
|
{
|
||||||
$result = ($smtp_delivery) ? smtpmail($to, $subject, $msg, $extra_headers) : mail($to, $subject, preg_replace("#(?<!\r)\n#s", "\r\n", $msg), $extra_headers);
|
case 'emailer':
|
||||||
|
$mail_to = ($to == '') ? 'Undisclosed-Recipients:;' : $to;
|
||||||
|
$err_msg = '';
|
||||||
|
$result = ($config['smtp_delivery']) ? smtpmail($addresses, $subject, $msg, $err_msg, $extra_headers) : mail($mail_to, $subject, preg_replace("#(?<!\r)\n#s", "\n", $msg), $extra_headers);
|
||||||
|
|
||||||
if (!$result)
|
if (!$result)
|
||||||
{
|
{
|
||||||
$message = '<u>EMAIL ERROR</u> [ ' . (($smtp_delivery) ? 'SMTP' : 'PHP') . ' ]<br /><br />' . $result . '<br /><br /><u>CALLING PAGE</u><br /><br />' . ((!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF']) . '<br />';
|
// Logging instead of displaying!?
|
||||||
trigger_error($message, E_USER_ERROR);
|
$message = 'Method: [ ' . (($config['smtp_delivery']) ? 'SMTP' : 'PHP') . ' ]<br /><br />' . $err_msg . '<br /><br /><u>CALLING PAGE</u><br /><br />' . ((!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF']) . '<br />';
|
||||||
}
|
add_log('critical', 'MAIL_ERROR', $message);
|
||||||
|
// $message = '<u>EMAIL ERROR</u> [ ' . (($config['smtp_delivery']) ? 'SMTP' : 'PHP') . ' ]<br /><br />' . $result . '<br /><br /><u>CALLING PAGE</u><br /><br />' . ((!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF']) . '<br />';
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
array_shift($this->queue_data[$object]['data']);
|
array_shift($this->queue_data[$object]['data']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -557,7 +690,7 @@ class Queue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (count($this->queue_data) == 0)
|
if (!sizeof($this->queue_data))
|
||||||
{
|
{
|
||||||
@flock($fp, LOCK_UN);
|
@flock($fp, LOCK_UN);
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
|
|
|
@ -1455,15 +1455,25 @@ function add_log()
|
||||||
$action = array_shift($args);
|
$action = array_shift($args);
|
||||||
$data = (!sizeof($args)) ? '' : addslashes(serialize($args));
|
$data = (!sizeof($args)) ? '' : addslashes(serialize($args));
|
||||||
|
|
||||||
if ($mode == 'admin')
|
switch ($mode)
|
||||||
{
|
{
|
||||||
$sql = 'INSERT INTO ' . LOG_ADMIN_TABLE . ' (user_id, log_ip, log_time, log_operation, log_data)
|
case 'admin':
|
||||||
VALUES (' . $user->data['user_id'] . ", '$user->ip', " . time() . ", '$action', '$data')";
|
$sql = "INSERT INTO " . LOG_TABLE . " (log_type, user_id, log_ip, log_time, log_operation, log_data)
|
||||||
}
|
VALUES (" . LOG_ADMIN . ", " . $user->data['user_id'] . ", '$user->ip', " . time() . ", '$action', '$data')";
|
||||||
else
|
break;
|
||||||
{
|
|
||||||
$sql = 'INSERT INTO ' . LOG_MOD_TABLE . ' (user_id, forum_id, topic_id, log_ip, log_time, log_operation, log_data)
|
case 'mod':
|
||||||
VALUES (' . $user->data['user_id'] . ", $forum_id, $topic_id, '$user->ip', " . time() . ", '$action', '$data')";
|
$sql = "INSERT INTO " . LOG_TABLE . " (log_type, user_id, forum_id, topic_id, log_ip, log_time, log_operation, log_data)
|
||||||
|
VALUES (" . LOG_MOD . ", " . $user->data['user_id'] . ", $forum_id, $topic_id, '$user->ip', " . time() . ", '$action', '$data')";
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'critical':
|
||||||
|
$sql = "INSERT INTO " . LOG_TABLE . " (log_type, user_id, log_ip, log_time, log_operation, log_data)
|
||||||
|
VALUES (" . LOG_CRITICAL . ", " . $user->data['user_id'] . ", '$user->ip', " . time() . ", '$action', '$data')";
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$db->sql_query($sql);
|
$db->sql_query($sql);
|
||||||
|
@ -1478,32 +1488,43 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id
|
||||||
|
|
||||||
$profile_url = (defined('IN_ADMIN')) ? "admin_users.$phpEx$SID" : "memberlist.$phpEx$SID&mode=viewprofile";
|
$profile_url = (defined('IN_ADMIN')) ? "admin_users.$phpEx$SID" : "memberlist.$phpEx$SID&mode=viewprofile";
|
||||||
|
|
||||||
if ($mode == 'admin')
|
switch ($mode)
|
||||||
{
|
{
|
||||||
$table_sql = LOG_ADMIN_TABLE;
|
case 'admin':
|
||||||
$sql_forum = '';
|
$log_type = LOG_ADMIN;
|
||||||
}
|
$sql_forum = '';
|
||||||
else
|
break;
|
||||||
{
|
|
||||||
$table_sql = LOG_MOD_TABLE;
|
case 'mod':
|
||||||
|
$log_type = LOG_MOD;
|
||||||
|
|
||||||
if ($topic_id)
|
if ($topic_id)
|
||||||
{
|
{
|
||||||
$sql_forum = 'AND l.topic_id = ' . intval($topic_id);
|
$sql_forum = 'AND l.topic_id = ' . intval($topic_id);
|
||||||
}
|
}
|
||||||
elseif (is_array($forum_id))
|
else if (is_array($forum_id))
|
||||||
{
|
{
|
||||||
$sql_forum = 'AND l.forum_id IN (' . implode(', ', array_map('intval', $forum_id)) . ')';
|
$sql_forum = 'AND l.forum_id IN (' . implode(', ', array_map('intval', $forum_id)) . ')';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$sql_forum = ($forum_id) ? 'AND l.forum_id = ' . intval($forum_id) : '';
|
$sql_forum = ($forum_id) ? 'AND l.forum_id = ' . intval($forum_id) : '';
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'critical':
|
||||||
|
$log_type = LOG_CRITICAL;
|
||||||
|
$sql_forum = '';
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = "SELECT l.*, u.username
|
$sql = "SELECT l.*, u.username
|
||||||
FROM $table_sql l, " . USERS_TABLE . " u
|
FROM " . LOG_TABLE . " l, " . USERS_TABLE . " u
|
||||||
WHERE u.user_id = l.user_id
|
WHERE l.log_type = $log_type
|
||||||
|
AND u.user_id = l.user_id
|
||||||
" . (($limit_days) ? "AND l.log_time >= $limit_days" : '') . "
|
" . (($limit_days) ? "AND l.log_time >= $limit_days" : '') . "
|
||||||
$sql_forum
|
$sql_forum
|
||||||
ORDER BY $sort_by";
|
ORDER BY $sort_by";
|
||||||
|
@ -1531,9 +1552,16 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id
|
||||||
{
|
{
|
||||||
$log_data_ary = unserialize(stripslashes($row['log_data']));
|
$log_data_ary = unserialize(stripslashes($row['log_data']));
|
||||||
|
|
||||||
foreach ($log_data_ary as $log_data)
|
if (!empty($user->lang[$row['log_operation']]))
|
||||||
{
|
{
|
||||||
$log[$i]['action'] = preg_replace('#%s#', $log_data, $log[$i]['action'], 1);
|
foreach ($log_data_ary as $log_data)
|
||||||
|
{
|
||||||
|
$log[$i]['action'] = preg_replace('#%s#', $log_data, $log[$i]['action'], 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$log[$i]['action'] = implode('', $log_data_ary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1575,8 +1603,9 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = "SELECT COUNT(*) AS total_entries
|
$sql = "SELECT COUNT(*) AS total_entries
|
||||||
FROM $table_sql l
|
FROM " . LOG_TABLE . " l
|
||||||
WHERE l.log_time >= $limit_days
|
WHERE l.log_type = $log_type
|
||||||
|
AND l.log_time >= $limit_days
|
||||||
$sql_forum";
|
$sql_forum";
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
|
|
||||||
|
|
|
@ -1052,8 +1052,6 @@ class ucp_pm extends ucp
|
||||||
|
|
||||||
if ($to_userdata['user_notify_pm'] && !empty($to_userdata['user_email']) && $to_userdata['user_active'])
|
if ($to_userdata['user_notify_pm'] && !empty($to_userdata['user_email']) && $to_userdata['user_active'])
|
||||||
{
|
{
|
||||||
$email_headers = 'From: ' . $config['board_email'] . "\nReturn-Path: " . $config['board_email'] . "\r\n";
|
|
||||||
|
|
||||||
$script_name = preg_replace('/^\/?(.*?)\/?$/', "\\1", trim($config['script_path']));
|
$script_name = preg_replace('/^\/?(.*?)\/?$/', "\\1", trim($config['script_path']));
|
||||||
$script_name = ($script_name != '') ? $script_name . '/privmsg.'.$phpEx : 'privmsg.'.$phpEx;
|
$script_name = ($script_name != '') ? $script_name . '/privmsg.'.$phpEx : 'privmsg.'.$phpEx;
|
||||||
$server_name = trim($config['server_name']);
|
$server_name = trim($config['server_name']);
|
||||||
|
@ -1061,11 +1059,11 @@ class ucp_pm extends ucp
|
||||||
$server_port = ($config['server_port'] <> 80) ? ':' . trim($config['server_port']) . '/' : '/';
|
$server_port = ($config['server_port'] <> 80) ? ':' . trim($config['server_port']) . '/' : '/';
|
||||||
|
|
||||||
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
||||||
$emailer = new emailer($config['smtp_delivery']);
|
$emailer = new emailer();
|
||||||
|
|
||||||
$emailer->use_template('privmsg_notify', $to_userdata['user_lang']);
|
$emailer->use_template('privmsg_notify', $to_userdata['user_lang']);
|
||||||
$emailer->extra_headers($email_headers);
|
$emailer->from($config['board_email']);
|
||||||
$emailer->email_address($to_userdata['user_email']);
|
$emailer->to($to_userdata['user_email']);
|
||||||
$emailer->set_subject(); //$lang['Notification_subject']
|
$emailer->set_subject(); //$lang['Notification_subject']
|
||||||
|
|
||||||
$emailer->assign_vars(array(
|
$emailer->assign_vars(array(
|
||||||
|
|
|
@ -216,7 +216,7 @@ class ucp_register extends ucp
|
||||||
if ($config['email_enable'])
|
if ($config['email_enable'])
|
||||||
{
|
{
|
||||||
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
||||||
$emailer = new emailer($config['smtp_delivery']);
|
$emailer = new emailer();
|
||||||
|
|
||||||
$emailer->template($email_template, $user->data['user_lang']);
|
$emailer->template($email_template, $user->data['user_lang']);
|
||||||
$emailer->replyto($config['board_contact']);
|
$emailer->replyto($config['board_contact']);
|
||||||
|
|
|
@ -58,7 +58,7 @@ class ucp_remind extends ucp
|
||||||
$db->sql_query($sql);
|
$db->sql_query($sql);
|
||||||
|
|
||||||
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
include($phpbb_root_path . 'includes/emailer.'.$phpEx);
|
||||||
$emailer = new emailer($config['smtp_delivery']);
|
$emailer = new emailer();
|
||||||
|
|
||||||
$emailer->use_template('user_activate_passwd', $row['user_lang']);
|
$emailer->use_template('user_activate_passwd', $row['user_lang']);
|
||||||
$emailer->to($row['user_email']);
|
$emailer->to($row['user_email']);
|
||||||
|
|
|
@ -243,9 +243,10 @@ CREATE TABLE phpbb_lang (
|
||||||
PRIMARY KEY (lang_id)
|
PRIMARY KEY (lang_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
# Table: 'phpbb_log_moderator'
|
# Table: 'phpbb_log'
|
||||||
CREATE TABLE phpbb_log_moderator (
|
CREATE TABLE phpbb_log (
|
||||||
log_id mediumint(5) UNSIGNED NOT NULL DEFAULT '0' auto_increment,
|
log_id mediumint(5) UNSIGNED NOT NULL DEFAULT '0' auto_increment,
|
||||||
|
log_type tinyint(4) UNSIGNED NOT NULL DEFAULT '0',
|
||||||
user_id mediumint(8) NOT NULL DEFAULT '0',
|
user_id mediumint(8) NOT NULL DEFAULT '0',
|
||||||
forum_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
|
forum_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
|
||||||
topic_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
|
topic_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
|
||||||
|
@ -254,23 +255,12 @@ CREATE TABLE phpbb_log_moderator (
|
||||||
log_operation text,
|
log_operation text,
|
||||||
log_data text,
|
log_data text,
|
||||||
PRIMARY KEY (log_id),
|
PRIMARY KEY (log_id),
|
||||||
|
KEY log_type (log_type),
|
||||||
KEY forum_id (forum_id),
|
KEY forum_id (forum_id),
|
||||||
KEY topic_id (topic_id),
|
KEY topic_id (topic_id),
|
||||||
KEY user_id (user_id)
|
KEY user_id (user_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
# Table: 'phpbb_log_admin'
|
|
||||||
CREATE TABLE phpbb_log_admin (
|
|
||||||
log_id mediumint(5) UNSIGNED NOT NULL DEFAULT '0' auto_increment,
|
|
||||||
user_id mediumint(8) NOT NULL DEFAULT '0',
|
|
||||||
log_ip varchar(40) NOT NULL,
|
|
||||||
log_time int(11) NOT NULL,
|
|
||||||
log_operation text,
|
|
||||||
log_data text,
|
|
||||||
PRIMARY KEY (log_id),
|
|
||||||
KEY user_id (user_id)
|
|
||||||
);
|
|
||||||
|
|
||||||
# Table: 'phpbb_moderator_cache'
|
# Table: 'phpbb_moderator_cache'
|
||||||
CREATE TABLE phpbb_moderator_cache (
|
CREATE TABLE phpbb_moderator_cache (
|
||||||
forum_id mediumint(8) unsigned NOT NULL,
|
forum_id mediumint(8) unsigned NOT NULL,
|
||||||
|
|
Loading…
Add table
Reference in a new issue