0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
geeklog
/
1.4.1-4
/
standard
/
htdocs
/
public_html
/
admin
/
[
Home
]
File: mail.php
<?php /* Reminder: always indent with 4 spaces (no tabs). */ // +---------------------------------------------------------------------------+ // | Geeklog 1.4 | // +---------------------------------------------------------------------------+ // | mail.php | // | | // | Geeklog mail administration page. | // +---------------------------------------------------------------------------+ // | Copyright (C) 2001-2006 by the following authors: | // | | // | Authors: Tony Bibbs - tony AT tonybibbs DOT com | // | Dirk Haun - dirk AT haun-online DOT de | // +---------------------------------------------------------------------------+ // | | // | 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. | // | | // | This program is distributed in the hope that it will be useful, | // | but WITHOUT ANY WARRANTY; without even the implied warranty of | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | // | GNU General Public License for more details. | // | | // | You should have received a copy of the GNU General Public License | // | along with this program; if not, write to the Free Software Foundation, | // | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | // | | // +---------------------------------------------------------------------------+ // // $Id: mail.php,v 1.32 2006/02/26 18:12:10 dhaun Exp $ require_once ('../lib-common.php'); require_once ('auth.inc.php'); $display = ''; // Make sure user has access to this page if (!SEC_inGroup ('Mail Admin') && !SEC_hasrights ('user.mail')) { $retval .= COM_siteHeader ('menu', $MESSAGE[30]); $retval .= COM_startBlock ($MESSAGE[30], '', COM_getBlockTemplate ('_msg_block', 'header')); $retval .= $MESSAGE[39]; $retval .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); $retval .= COM_siteFooter (); COM_accessLog ("User {$_USER['username']} tried to illegally access the mail administration screen."); echo $retval; exit; } /** * Shows the form the admin uses to send Geeklog members a message. Right now * you can only email an entire group. * * @return string HTML for the email form * */ function display_form () { global $_CONF, $_TABLES, $_USER, $LANG31; $retval = ''; $mail_templates = new Template ($_CONF['path_layout'] . 'admin/mail'); $mail_templates->set_file (array ('form' => 'mailform.thtml')); $mail_templates->set_var ('site_url', $_CONF['site_url']); $mail_templates->set_var ('site_admin_url', $_CONF['site_admin_url']); $mail_templates->set_var ('layout_url', $_CONF['layout_url']); $mail_templates->set_var ('startblock_email', COM_startBlock ($LANG31[1], '', COM_getBlockTemplate ('_admin_block', 'header'))); $mail_templates->set_var ('php_self', $_CONF['site_admin_url'] . '/mail.php'); $mail_templates->set_var ('lang_note', $LANG31[19]); $mail_templates->set_var ('lang_to', $LANG31[18]); $mail_templates->set_var ('lang_selectgroup', $LANG31[25]); $group_options = ''; $result = DB_query("SELECT grp_id, grp_name FROM {$_TABLES['groups']} WHERE grp_name <> 'All Users'"); $nrows = DB_numRows ($result); $groups = array (); for ($i = 0; $i < $nrows; $i++) { $A = DB_fetchArray ($result); $groups[$A['grp_id']] = ucwords ($A['grp_name']); } asort ($groups); foreach ($groups as $groupID => $groupName) { $group_options .= '<option value="' . $groupID . '">' . $groupName . '</option>'; } $mail_templates->set_var ('group_options', $group_options); $mail_templates->set_var ('lang_from', $LANG31[2]); $mail_templates->set_var ('site_name', $_CONF['site_name']); $mail_templates->set_var ('lang_replyto', $LANG31[3]); $mail_templates->set_var ('site_mail', $_CONF['site_mail']); $mail_templates->set_var ('lang_subject', $LANG31[4]); $mail_templates->set_var ('lang_body', $LANG31[5]); $mail_templates->set_var ('lang_sendto', $LANG31[6]); $mail_templates->set_var ('lang_allusers', $LANG31[7]); $mail_templates->set_var ('lang_admin', $LANG31[8]); $mail_templates->set_var ('lang_options', $LANG31[9]); $mail_templates->set_var ('lang_HTML', $LANG31[10]); $mail_templates->set_var ('lang_urgent', $LANG31[11]); $mail_templates->set_var ('lang_ignoreusersettings', $LANG31[14]); $mail_templates->set_var ('lang_send', $LANG31[12]); $mail_templates->set_var ('end_block', COM_endBlock (COM_getBlockTemplate ('_admin_block', 'footer'))); $mail_templates->parse ('output', 'form'); $retval = $mail_templates->finish ($mail_templates->get_var ('output')); return $retval; } /** * This function actually sends the messages to the specified group * * @param array $vars Same as $_POST, holds all the email info * @return string HTML with success or error message * */ function send_messages ($vars) { global $_CONF, $_TABLES, $LANG31; $retval = ''; if (empty ($vars['fra']) OR empty ($vars['fraepost']) OR empty ($vars['subject']) OR empty ($vars['message']) OR empty ($vars['to_group'])) { $retval .= COM_startBlock ($LANG31[1], '', COM_getBlockTemplate ('_msg_block', 'header')); $retval .= $LANG31[26]; $retval .= COM_endBlock (COM_getBlockTemplate ('_msg_block', 'footer')); return $retval; } // Urgent message! if (isset ($vars['priority'])) { $priority = 1; } else { $priority = 0; } // If you want to send html mail if (isset ($vars['html'])) { $html = true; } else { $html = false; } // and now mail it if (isset ($vars['overstyr'])) { $sql = "SELECT username,fullname,email FROM {$_TABLES['users']},{$_TABLES['group_assignments']} WHERE uid > 1"; $sql .= " AND {$_TABLES['users']}.status = 3 AND ((email is not null) and (email != ''))"; $sql .= " AND {$_TABLES['users']}.uid = ug_uid AND ug_main_grp_id = {$vars['to_group']}"; } else { $sql = "SELECT username,fullname,email,emailfromadmin FROM {$_TABLES['users']},{$_TABLES['userprefs']},{$_TABLES['group_assignments']} WHERE {$_TABLES['users']}.uid > 1"; $sql .= " AND {$_TABLES['users']}.status = 3 AND ((email is not null) and (email != ''))"; $sql .= " AND {$_TABLES['users']}.uid = {$_TABLES['userprefs']}.uid AND emailfromadmin = 1"; $sql .= " AND ug_uid = {$_TABLES['users']}.uid AND ug_main_grp_id = {$vars['to_group']}"; } $result = DB_query ($sql); $nrows = DB_numRows ($result); $from = COM_formatEmailAddress ($vars['fra'], $vars['fraepost']); $subject = COM_stripslashes ($vars['subject']); $message = COM_stripslashes ($vars['message']); // Loop through and send the messages! $successes = array (); $failures = array (); for ($i = 0; $i < $nrows; $i++) { $A = DB_fetchArray ($result); if (empty ($A['fullname'])) { $to = COM_formatEmailAddress ($A['username'], $A['email']); } else { $to = COM_formatEmailAddress ($A['fullname'], $A['email']); } if (!COM_mail ($to, $subject, $message, $from, $html, $priority)) { $failures[] = htmlspecialchars ($to); } else { $successes[] = htmlspecialchars ($to); } } $retval .= COM_startBlock ($LANG31[1]); $failcount = count ($failures); $successcount = count ($successes); $mailresult = str_replace ('<successcount>', $successcount, $LANG31[20]); $retval .= str_replace ('<failcount>', $failcount, $mailresult); $retval .= '<h2>' . $LANG31[21] . '</h2>'; for ($i = 0; $i < count ($failures); $i++) { $retval .= current ($failures) . '<br>'; next ($failures); } if (count ($failures) == 0) { $retval .= $LANG31[23]; } $retval .= '<h2>' . $LANG31[22] . '</h2>'; for ($i = 0; $i < count ($successes); $i++) { $retval .= current ($successes) . '<br>'; next ($successes); } if (count ($successes) == 0) { $retval .= $LANG31[24]; } $retval .= COM_endBlock (); return $retval; } // MAIN $display .= COM_siteHeader ('menu', $LANG31[1]); if (isset ($_POST['mail']) && ($_POST['mail'] == 'mail')) { $display .= send_messages ($_POST); } else { $display .= display_form (); } $display .= COM_siteFooter (); echo $display; ?>