44 |
var $newsgroups; // the Newsgroups where the article belongs to |
var $newsgroups; // the Newsgroups where the article belongs to |
45 |
var $followup; |
var $followup; |
46 |
var $date; |
var $date; |
|
var $organization; |
|
47 |
var $references; |
var $references; |
48 |
var $content_transfer_encoding; |
var $content_transfer_encoding; |
49 |
var $mime_version; |
var $mime_version; |
55 |
var $answers; |
var $answers; |
56 |
var $isAnswer; |
var $isAnswer; |
57 |
var $username; |
var $username; |
|
var $user_agent; |
|
58 |
var $field; |
var $field; |
59 |
var $isReply; |
var $isReply; |
60 |
} |
} |
451 |
} |
} |
452 |
} |
} |
453 |
|
|
|
function getTimestamp($value) { |
|
|
$months=array("Jan"=>1,"Feb"=>2,"Mar"=>3,"Apr"=>4,"May"=>5,"Jun"=>6,"Jul"=>7,"Aug"=>8,"Sep"=>9,"Oct"=>10,"Nov"=>11,"Dec"=>12); |
|
|
$value=str_replace(" "," ",$value); |
|
|
$d=split(" ",$value,5); |
|
|
if (strcmp(substr($d[0],strlen($d[0])-1,1),",") == 0) { |
|
|
$date[0]=$d[1]; // day |
|
|
$date[1]=$d[2]; // month |
|
|
$date[2]=$d[3]; // year |
|
|
$date[3]=$d[4]; // hours:minutes:seconds |
|
|
} else { |
|
|
$date[0]=$d[0]; // day |
|
|
$date[1]=$d[1]; // month |
|
|
$date[2]=$d[2]; // year |
|
|
$date[3]=$d[3]; // hours:minutes:seconds |
|
|
} |
|
|
$time=split(":",$date[3]); |
|
|
$timestamp=mktime($time[0],$time[1],$time[2],$months[$date[1]],$date[0],$date[2]); |
|
|
return $timestamp; |
|
|
} |
|
454 |
|
|
455 |
function parse_header($hdr,$number="") { |
function parse_header($hdr,$number="") { |
456 |
for ($i=count($hdr)-1; $i>0; $i--) |
for ($i=count($hdr)-1; $i>0; $i--) |
483 |
case "newsgroups": |
case "newsgroups": |
484 |
$header->newsgroups=$value; |
$header->newsgroups=$value; |
485 |
break; |
break; |
|
case "organization": |
|
|
$header->organization = decode_unstructured_body($value); |
|
|
break; |
|
486 |
case "content-transfer-encoding": |
case "content-transfer-encoding": |
487 |
$header->content_transfer_encoding=trim(strtolower($value)); |
$header->content_transfer_encoding=trim(strtolower($value)); |
488 |
break; |
break; |
520 |
$header->references[]=trim($ref); |
$header->references[]=trim($ref); |
521 |
break; |
break; |
522 |
case "date": |
case "date": |
523 |
$header->date=getTimestamp(trim($value)); |
$header->date = strtotime(trim($value)); |
524 |
break; |
break; |
525 |
case "followup-to": |
case "followup-to": |
526 |
$header->followup=trim($value); |
$header->followup=trim($value); |
527 |
break; |
break; |
528 |
|
/* |
529 |
case "x-newsreader": |
case "x-newsreader": |
530 |
case "x-mailer": |
case "x-mailer": |
531 |
case "user-agent": |
case "user-agent": |
532 |
$header->user_agent= decode_structured_body($value); |
$header->user_agent= decode_structured_body($value); |
533 |
break; |
break; |
534 |
|
*/ |
535 |
} |
} |
536 |
} |
} |
537 |
if (!isset($header->content_type[0])) |
if (!isset($header->content_type[0])) |
856 |
return($comment); |
return($comment); |
857 |
} |
} |
858 |
|
|
859 |
|
function uri_to_link($comment, $group = "", $msgidregex = "") { |
860 |
|
global $frame_externallink; |
861 |
|
global $file_article; |
862 |
|
$comment = preg_replace ( |
863 |
|
'"((?:https?|mailto|urn|news|ftp|irc|mid|data|nntp|gother)):((?:[-_.!~*\'()A-Z0-9:;@=+$,%?/]+|&)+)(#(?:[-_.!~*\'()A-Z0-9;/?:@&=+$,%]+|&)+)?"ie', |
864 |
|
'uri_to_link_uri("\1", "\2", "\3")', |
865 |
|
$comment); |
866 |
|
return($comment); |
867 |
|
} |
868 |
|
|
869 |
|
function uri_to_link_uri ($scheme, $body, $fragment) { |
870 |
|
global $file_article; |
871 |
|
switch (strtolower($scheme)) { |
872 |
|
case "urn": |
873 |
|
case "data": |
874 |
|
$uri = '/uri-res/N2L?'.urlencode($scheme.':'.$body); |
875 |
|
break; |
876 |
|
case "news": |
877 |
|
if (!preg_match('"^//"', $body)) { |
878 |
|
$uri = "../../".addslashes($file_article).'/junk/%3C'.$nbody.'%3E'; |
879 |
|
} else { |
880 |
|
$uri = $scheme.':'.$body; |
881 |
|
} |
882 |
|
break; |
883 |
|
case "mid": |
884 |
|
$nbody = preg_replace('"/.*$"', "", $body); |
885 |
|
$uri = "../../".addslashes($file_article).'/junk/%3C'.$nbody.'%3E'; |
886 |
|
break; |
887 |
|
default: |
888 |
|
$uri = $scheme.':'.$body; |
889 |
|
break; |
890 |
|
} |
891 |
|
$uri = $uri . $fragment; |
892 |
|
if (!empty($uri)) { |
893 |
|
$uri = '<a href="'.$uri.'">'.$scheme.':'.$body.$fragment.'</a>'; |
894 |
|
} |
895 |
|
return $uri; |
896 |
|
} |
897 |
|
|
898 |
|
|
899 |
|
|
957 |
$article->subject=$subject; |
$article->subject=$subject; |
958 |
} |
} |
959 |
if ($overviewfmt[$i]=="Date:") { |
if ($overviewfmt[$i]=="Date:") { |
960 |
$article->date=getTimestamp($over[$i+1]); |
$article->date = strtotime($over[$i+1]); |
961 |
} |
} |
962 |
if ($overviewfmt[$i]=="From:") { |
if ($overviewfmt[$i]=="From:") { |
963 |
$fromline=address_decode(headerDecode($over[$i+1]),"nirgendwo"); |
$fromline=address_decode(headerDecode($over[$i+1]),"nirgendwo"); |
1523 |
echo $text_header["newsgroups"].htmlspecialchars(str_replace(',',', ',$head->newsgroups))."<br>\n"; |
echo $text_header["newsgroups"].htmlspecialchars(str_replace(',',', ',$head->newsgroups))."<br>\n"; |
1524 |
if (isset($head->followup) && ($article_show["Followup"]) && ($head->followup != "")) |
if (isset($head->followup) && ($article_show["Followup"]) && ($head->followup != "")) |
1525 |
echo $text_header["followup"].htmlspecialchars($head->followup)."<br>\n"; |
echo $text_header["followup"].htmlspecialchars($head->followup)."<br>\n"; |
|
if ((isset($head->organization)) && ($article_show["Organization"]) && |
|
|
($head->organization != "")) |
|
|
echo $text_header["organization"]. |
|
|
html_parse(htmlspecialchars($head->organization))."<br>\n"; |
|
1526 |
if ($article_show["Date"]) |
if ($article_show["Date"]) |
1527 |
echo $text_header["date"].date($text_header["date_format"],$head->date)."<br>\n"; |
echo $text_header["date"].date($text_header["date_format"],$head->date)."<br>\n"; |
1528 |
if ($article_show["Message-ID"]) |
if ($article_show["Message-ID"]) |
1537 |
} |
} |
1538 |
echo "<br>"; |
echo "<br>"; |
1539 |
} |
} |
1540 |
if (isset($head->user_agent)) { |
$fields = array ("x-moe", "x-brother", "x-syster", "x-wife", |
1541 |
if ((isset($article_show["User-Agent"])) && |
"x-daughter", "x-respect", |
1542 |
($article_show["User-Agent"])) { |
"user-agent", "x-mailer", "x-newsreader", |
1543 |
echo $text_header["user-agent"].htmlspecialchars($head->user_agent)."<br>\n"; |
"list-id", "x-uri", "x-mail-count", "keywords"); |
1544 |
} else { |
for ($i = 0; $i < count($fields); $i++) { |
1545 |
echo "<!-- User-Agent: ".htmlspecialchars($head->user_agent)." -->\n"; |
if (count($head->field[$fields[$i]])) { |
1546 |
|
if ((isset($article_show[$fields[$i]])) && ($article_show[$fields[$i]])) { |
1547 |
|
echo "<div class=\"field ".$fields[$i]."\"><span class=\"name\">" |
1548 |
|
.$text_header[$fields[$i]]."</span> <span class=\"body\">" |
1549 |
|
.uri_to_link(htmlspecialchars(decode_structured_body( |
1550 |
|
join(', ', $head->field[$fields[$i]])))) |
1551 |
|
."</span></div>\n"; |
1552 |
|
} |
1553 |
} |
} |
1554 |
} |
} |
1555 |
if (isset($head->field["x-moe"])) { |
$fields = array ("x-weather", "x-copyright", "comments", "organization"); |
1556 |
if ((isset($article_show["X-Moe"])) && ($article_show["X-Moe"])) { |
for ($i = 0; $i < count($fields); $i++) { |
1557 |
echo "<span class=\"field x-moe\"><span class=\"name\">".$text_header["X-Moe"] |
if (count($head->field[$fields[$i]])) { |
1558 |
."</span> <span class=\"body\">" |
if ((isset($article_show[$fields[$i]])) && ($article_show[$fields[$i]])) { |
1559 |
.htmlspecialchars(decode_structured_body( |
for ($j = 0; $j > count($head->field[$fields[$i]]); $j++) { |
1560 |
join(', ', $head->field["x-moe"]))) |
echo "<div class=\"field ".$fields[$i]."\"><span class=\"name\">" |
1561 |
."</span>\n"; |
.$text_header[$fields[$i]]."</span> <span class=\"body\">" |
1562 |
|
.uri_to_link(htmlspecialchars(decode_unstructured_body( |
1563 |
|
$head->field[$fields[$i]][$j]))) |
1564 |
|
."</span></div>\n"; |
1565 |
|
} |
1566 |
|
} |
1567 |
} |
} |
1568 |
} |
} |
1569 |
if ((isset($attachment_show)) && ($attachment_show==true) && |
if ((isset($attachment_show)) && ($attachment_show==true) && |
1632 |
// } |
// } |
1633 |
// echo $body[$i]."\n"; |
// echo $body[$i]."\n"; |
1634 |
$b=$body[$i]; |
$b=$body[$i]; |
1635 |
echo html_parse(htmlspecialchars($b)."\n", $group, $msgidregex); |
echo uri_to_link(htmlspecialchars($b)."\n", $group, $msgidregex); |
1636 |
} |
} |
1637 |
echo "\n</pre>\n"; |
echo "\n</pre>\n"; |
1638 |
} else { |
} else { |
1735 |
* $body: The article itself |
* $body: The article itself |
1736 |
*/ |
*/ |
1737 |
function verschicken($subject,$from,$newsgroups,$ref,$body) { |
function verschicken($subject,$from,$newsgroups,$ref,$body) { |
1738 |
global $server,$port,$send_poster_host,$organization,$text_error; |
global $server,$port,$send_poster_host,$organization,$text_error,$text_ua; |
1739 |
global $file_footer; |
global $file_footer; |
1740 |
flush(); |
flush(); |
1741 |
$ns=OpenNNTPconnection($server,$port); |
$ns=OpenNNTPconnection($server,$port); |