|
From: FlorinCB <ory...@us...> - 2008-12-25 16:56:56
|
Update of /cvsroot/mxbb/mx_contact/admin In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12134/admin Modified Files: admin_contact.php admin_mass_mail.php admin_mass_newsletter.php Log Message: fix Index: admin_mass_mail.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_mail.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** admin_mass_mail.php 25 Dec 2008 13:08:01 -0000 1.7 --- admin_mass_mail.php 25 Dec 2008 16:56:50 -0000 1.8 *************** *** 232,236 **** $email_antetes = "From: " . $userdata['username'] . " <" . $userdata['user_email'] . ">" . "\n"; $email_antetes .= "To: " . ($def_size == 1) ? $bcc_list : $board_config['board_email'] . "\n"; ! $email_antetes .= "Bcc: " . ($def_size == 1) ? $board_config['board_email'] : $bcc_list . "\n"; $email_antetes .= "In-Reply-To: " . $userdata['user_email'] . "\n"; $email_antetes .= "Return-Path: <" . $board_config['board_email'] . ">" . "\n"; --- 232,236 ---- $email_antetes = "From: " . $userdata['username'] . " <" . $userdata['user_email'] . ">" . "\n"; $email_antetes .= "To: " . ($def_size == 1) ? $bcc_list : $board_config['board_email'] . "\n"; ! $email_antetes .= "Bcc: " . ($def_size == 1) ? '' : $bcc_list . "\n"; $email_antetes .= "In-Reply-To: " . $userdata['user_email'] . "\n"; $email_antetes .= "Return-Path: <" . $board_config['board_email'] . ">" . "\n"; Index: admin_mass_newsletter.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_mass_newsletter.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** admin_mass_newsletter.php 25 Dec 2008 13:08:01 -0000 1.8 --- admin_mass_newsletter.php 25 Dec 2008 16:56:50 -0000 1.9 *************** *** 233,237 **** $email_antetes = "From: " . $userdata['username'] . " <" . $userdata['user_email'] . ">" . "\n"; $email_antetes .= "To: " . ($def_size == 1) ? $bcc_list : $board_config['board_email'] . "\n"; ! $email_antetes .= "Bcc: " . ($def_size == 1) ? $board_config['board_email'] : $bcc_list . "\n"; $email_antetes .= "In-Reply-To: " . $userdata['user_email'] . "\n"; $email_antetes .= "Return-Path: <" . $board_config['board_email'] . ">" . "\n"; --- 233,237 ---- $email_antetes = "From: " . $userdata['username'] . " <" . $userdata['user_email'] . ">" . "\n"; $email_antetes .= "To: " . ($def_size == 1) ? $bcc_list : $board_config['board_email'] . "\n"; ! $email_antetes .= "Bcc: " . ($def_size == 1) ? '' : $bcc_list . "\n"; $email_antetes .= "In-Reply-To: " . $userdata['user_email'] . "\n"; $email_antetes .= "Return-Path: <" . $board_config['board_email'] . ">" . "\n"; Index: admin_contact.php =================================================================== RCS file: /cvsroot/mxbb/mx_contact/admin/admin_contact.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** admin_contact.php 25 Dec 2008 09:26:05 -0000 1.4 --- admin_contact.php 25 Dec 2008 16:56:50 -0000 1.5 *************** *** 205,210 **** 'L_MOD' => $lang['auth_mods'], 'L_ADMIN' => $lang['auth_admins'], 'L_DOMAINKEY_SIG' => $lang['domainkey_signature'], ! 'L_DOMAINKEY_SIG_EXPLAIN' => $lang['domainkey_signature'], 'L_FORM_ENABLE' => $lang['Form_Enable'], --- 205,213 ---- 'L_MOD' => $lang['auth_mods'], 'L_ADMIN' => $lang['auth_admins'], + 'L_DOMAINKEY_SIG' => $lang['domainkey_signature'], ! 'L_DOMAINKEY_SIG_EXPLAIN' => $lang['domainkey_signature_exp'], ! 'L_SMTP_PORT' => $lang['smtp_port'], ! 'L_SMTP_PORT_EXPLAIN' => $lang['smtp_port_exp'], 'L_FORM_ENABLE' => $lang['Form_Enable'], *************** *** 246,250 **** --- 249,255 ---- 'FILE_ROOT' => $contact_config['contact_file_root'], 'CHAR_LIMIT' => $contact_config['contact_char_limit'], + 'DOMAINKEY_SIG' => $contact_config['domainkey_signature'], + 'SMTP_PORT' => $contact_config['smtp_port'], 'COPYRIGHT' => $lang['Copyright'], |