HTTP Gateway * Download: https://news.novabbs.com/getrslight * * Based on Newsportal by Florian Amrhein * * E-Mail: retroguy@novabbs.com * Web: https://news.novabbs.com * * 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 */ session_start(); if (! isset($_SESSION['last_access']) || (time() - $_SESSION['last_access']) > 60) { $_SESSION['last_access'] = time(); } include "config.inc.php"; $CONFIG = include ($config_file); $logfile = $logdir . '/post.log'; $ip_pass = false; if (! isset($_SESSION['remote_address'])) { $_SESSION['remote_address'] = $_SERVER['REMOTE_ADDR']; $_SESSION['start_address'] = $_SESSION['remote_address']; $ip_pass = true; } else { if ($_SERVER['REMOTE_ADDR'] != $_SESSION['start_address']) { $ip_pass = false; } else { $ip_pass = true; } } if ($ip_pass && $_SESSION['pass']) { $logged_in = true; } else { $logged_in = false; } if ($CONFIG['anonuser'] == '1') { $logged_in = false; } // This will log user post info (group and username) $enable_post_log = false; if ($OVERRIDES['enable_post_log'] > 0) { $enable_post_log = $OVERRIDES['enable_post_log']; } @$fieldnamedecrypt = $_REQUEST['fielddecrypt']; // @$newsgroups=$_REQUEST["newsgroups"]; // @$group=$_REQUEST["group"]; @$type = $_REQUEST["type"]; @$subject = stripslashes($_POST[md5($fieldnamedecrypt . "subject")]); @$name = $_POST[md5($fieldnamedecrypt . "name")]; @$email = $_POST[md5($fieldnamedecrypt . "email")]; @$body = $_POST[md5($fieldnamedecrypt . "body")]; @$abspeichern = $_REQUEST["abspeichern"]; @$references = $_REQUEST["references"]; @$id = $_REQUEST["id"]; if (! isset($group) && isset($newsgroups)) { $group = $newsgroups; } // Save name in cookies if (strcmp(stripslashes($name), $CONFIG['anonusername']) !== 0) { if (($setcookies == true) && (isset($abspeichern)) && ($abspeichern == "ja")) { setcookie("mail_name", stripslashes($name), time() + (3600 * 24 * 90), "/"); } } if ((isset($post_server)) && ($post_server != "")) $server = $post_server; if ((isset($post_port)) && ($post_port != "")) $port = $post_port; include $file_newsportal; include "head.inc"; if (disable_page_by_user_agent($client_device, "bot", "Post")) { echo "
Page Disabled
"; include "tail.inc"; exit(); } global $synchro_user, $synchro_pass; // check to which groups the user is allowed to post to $thisgroup = _rawurldecode($_REQUEST['group']); if ($testgroup) { $newsgroups = testgroups($thisgroup); } else { $newsgroups = $thisgroup; } if($_REQUEST['returngroup']) { $returngroup = $_REQUEST['returngroup']; } else { $returngroup = $thisgroup; } echo '

'; echo '' . basename(getcwd()) . ' / '; echo '' . htmlspecialchars(group_display_name($returngroup)) . ''; if (isset($type) && $type == 'post') { echo ' / ' . $subject . '

'; } else { echo ''; } // has the user write-rights on the newsgroups? if ((function_exists("npreg_group_has_read_access") && ! npreg_group_has_read_access($newsgroups)) || (function_exists("npreg_group_has_write_access") && ! npreg_group_has_write_access($newsgroups))) { die("access denied"); } // Load name from cookies if ($setcookies) { if ((isset($_COOKIE["mail_name"])) && (! isset($name))) $name = $_COOKIE["mail_name"]; // if ((isset($_COOKIE["cookie_email"])) && (!isset($email))) // $email=$_COOKIE["cookie_email"]; } // Load name and email from the registration system, if available if (function_exists("npreg_get_name")) { $name = npreg_get_name(); } if (function_exists("npreg_get_email")) { $email = npreg_get_email(); $form_noemail = true; } if (! strcmp($name, $CONFIG['anonusername']) && (isset($CONFIG['anonuser']))) { $userpass = $CONFIG['anonuserpass']; $email = $name . $CONFIG['email_tail']; $_SESSION['pass'] = '0'; } else { $userpass = $email; $request = "email"; $get_email = get_user_config($name, $request); if ($get_email === FALSE) { $email = $name . $CONFIG['email_tail']; } else { $email = trim($get_email); } } if (isset($CONFIG['synchronet']) && ($CONFIG['synchronet'] == true)) { $synchro_user = $name; $synchro_pass = $userpass; } if ($name == "") $name = $_SERVER['REMOTE_USER']; if ((! isset($references)) || ($references == "")) { $references = false; } if (! isset($type)) { $type = "new"; } if ($type == "new") { $subject = ""; $bodyzeile = ""; $show = 1; } // Is there a new article to post to the newsserver? if ($type == "post") { $show = 0; if (! $CONFIG['synchronet']) { if (! $logged_in) { if (check_bbs_auth(trim($name), $userpass) == FALSE) { $type = "retry"; $error = $text_error["auth_error"]; $_SESSION['pass'] = false; $logged_in = false; } else { $_SESSION['pass'] = true; $logged_in = true; } } } // Check that user has not been recently banned if (! is_file($config_dir . '/users/' . strtolower(trim($name)))) { $type = "retry"; $error = $text_error["auth_error"]; $_SESSION['pass'] = false; $logged_in = false; } // error handling if (trim($body) == "") { $type = "retry"; $error = $text_post["missing_message"]; } if ((trim($email) == "") && (! isset($anonym_address))) { $type = "retry"; $error = $text_post["missing_email"]; } if (($email) && (! validate_email(trim($email)))) { $type = "retry"; $error = $text_post["error_wrong_email"]; } if (trim($name) == "") { $type = "retry"; $error = $text_post["missing_name"]; } if (trim($subject) == "") { $type = "retry"; $error = $text_post["missing_subject"]; } // captcha-check if (($post_captcha) && (captcha::check() == false)) { $type = "retry"; $error = $text_post["captchafail"]; } if ($type == "post") { $name = trim($name); if (! $CONFIG['readonly']) { // post article to the newsserver if ($references) $references_array = explode(" ", $references); else $references_array = false; if (($email == "") && (isset($anonym_address))) $nemail = $anonym_address; else $nemail = $email; $rate_limit = get_user_config($name, 'rate_limit'); if (($rate_limit !== FALSE) && ($rate_limit > 0)) { $CONFIG['rate_limit'] = $rate_limit; } if ($CONFIG['rate_limit'] == true) { $postsremaining = check_rate_limit($name); if ($postsremaining < 1) { $wait = check_rate_limit($name, 0, 1); echo 'You have reached the limit of ' . $CONFIG['rate_limit'] . ' posts per hour.
Please wait ' . round($wait) . ' minutes before posting again.'; echo '

' . $text_post["button_back"] . ' ' . $text_post["button_back2"] . ' ' . group_display_name($returngroup) . '

'; return; } } if (isset($_FILES["photo"]) && $_FILES["photo"]["error"] == 0) { $_FILES['photo']['name'] = preg_replace('/[^a-zA-Z0-9\.]/', '_', $_FILES['photo']['name']); // There is an attachment to handle $message = message_post(quoted_printable_encode($subject), $nemail . " (" . quoted_printable_encode($name) . ")", $newsgroups, $references_array, addslashes($body), $_POST['encryptthis'], $_POST['encryptto'], strtolower($name), $_POST['fromname'], null, true); } else { $message = message_post(quoted_printable_encode($subject), $nemail . " (" . quoted_printable_encode($name) . ")", $newsgroups, $references_array, addslashes($body), $_POST['encryptthis'], $_POST['encryptto'], strtolower($name), $_POST['fromname']); } // Article sent without errors, or duplicate? if ((substr($message, 0, 3) == "240") || (substr($message, 0, 7) == "441 435")) { echo '

<' . $text_post["message_posted"] . '>

'; echo '

' . $text_post["message_posted2"] . '

'; if (isset($CONFIG['auto_return']) && ($CONFIG['auto_return'] == true)) { echo ''; if ($postsremaining < 1) { $wait = check_rate_limit($name, 0, 1); echo 'Please wait ' . round($wait) . ' minutes before posting again.
'; } } // Post logging if ($enable_post_log) { file_put_contents($logfile, "\n" . format_log_date() . " Post in: " . $returngroup . " by " . $name, FILE_APPEND); } echo '

Back

'; /* * if (isset($_REQUEST['returngroup']) && $_REQUEST['returngroup'] !== '') { * echo '

Your post will appear in ' . group_display_name($_REQUEST['returngroup']) . '

'; * } * if (isset($_SESSION['return_page'])) { * echo '

Back

'; * //echo '

Back to Previous Page

'; * } else { * echo '

Back

'; * } */ } else { // article not accepted by the newsserver $type = "retry"; $error = $text_post["error_newsserver"] . "
$message
"; } } else { echo $text_post["error_readonly"]; } } } // A reply of an other article. if ($type == "reply") { $message = message_read($id, 0, $newsgroups); $head = $message->header; $body = explode("\n", $message->body[0]); nntp_close($ns); if ($head->name != "") { $bodyzeile = $head->name; } else { $bodyzeile = $head->from; } // For Synchronet use $fromname = $bodyzeile; $bodyzeile = $text_post["wrote_prefix"] . $bodyzeile . $text_post["wrote_suffix"] . "\n\n"; for ($i = 0; $i <= count($body) - 1; $i ++) { if ((isset($cutsignature)) && ($cutsignature == true) && ($body[$i] == '-- ')) break; if (trim($body[$i]) != "") { if ($body[$i][0] == '>') $bodyzeile .= ">" . $body[$i] . "\n"; else $bodyzeile .= "> " . $body[$i] . "\n"; } else { $bodyzeile .= "\n"; } } $subject = $head->subject; if (isset($head->followup) && ($head->followup != "")) { $newsgroups = $head->followup; } else { if ($testgroup) { $newsgroups = testgroups($head->newsgroups); } else { $newsgroups = $head->newsgroups; } } splitSubject($subject); $subject = "Re: " . $subject; // Cut off old parts of a subject // for example: 'foo (was: bar)' becomes 'foo'. $subject = preg_replace('/(\(wa[sr]: .*\))$/i', '', $subject); $show = 1; $references = false; if (isset($head->references[0])) { for ($i = 0; $i <= count($head->references) - 1; $i ++) { $references .= $head->references[$i] . " "; } } $references .= $head->id; } if ($type == "retry") { $show = 1; $bodyzeile = $body; } if ($show == 1) { if ($newsgroups == "") { echo $text_post["followup_not_allowed"]; echo " " . $newsgroups; } else { // show post form $fieldencrypt = md5(rand(1, 10000000)); echo '

' . $text_post["group_head"] . group_display_name($newsgroups) . $text_post["group_tail"] . '

'; if (isset($error)) echo "

$error

"; echo '
'; echo '
'; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; $showemail = '<' . $user_config['display_email'] . '>'; echo ''; } } } echo ''; echo ''; // May we post encrypted messages to this group? if (check_encryption_groups($newsgroups)) { echo ''; echo ''; echo ''; echo ''; } echo '
' . $text_header["subject"] . '
' . $text_post["name"] . ''; if (! isset($name) && $CONFIG['anonuser']) $name = $CONFIG['anonusername']; if (isset($form_noname) && $form_noname === true) { echo htmlspecialchars($name); } else { echo ''; } else { echo 'size="40" maxlength="40">'; } if ($CONFIG['anonuser']) echo ' or "' . $CONFIG['anonusername'] . '" with no password'; } echo '
' . $text_post["password"] . ''; // if (strcmp($user, $CONFIG['anonusername']) === 0) { // $logged_in = false; // } if ($logged_in) { echo ''; } else { echo ''; } // Check for custom name/email from user configuration if ($OVERRIDES['disable_change_name'] != true) { $user_config = unserialize(file_get_contents($config_dir . '/userconfig/' . strtolower($name) . '.config')); if (isset($user_config['display_name']) && trim($user_config['display_name']) != '') { if (isset($user_config['display_email']) && trim($user_config['display_email']) != '') { echo '
'; echo 'From: '; echo ''; // echo $user_config['display_name'] . ' ' . htmlspecialchars($showemail); echo '
Encrypt to:
'; echo '
'; echo ''; echo ''; } ?>
' . $text_post["message"] . '
'; if (! $post_autoquote) { echo ''; ?> ">   " onclick="quoten(); this.style.visibility= 'hidden';">    
'; echo captcha::form($text_post["captchainfo1"], $text_post["captchainfo2"]); echo '