
I think you can call this Alpha!!!

read the doc files to config Newsportal. You need to edit the config.inc and groups.txt
(Config.inc $post_frame : reply or new message in new window use _new, bottom window use article)

I use the frame version, but (I think) you can also use the none frame version (not tested.)

You can post now, I've edited post.php so you can post, added new keywords for posting user name.

You can download any version and do the following updates.
1) Create squirrelmail.inc (none frames version, you can name it head.inc)

<?php /* 'php' Added by ri_once */ header("Expires: ".gmdate("D, d M Y H:i:s",time()+7200)." GMT");
    chdir("..");
    include_once ("../src/validate.php");
    include_once('../functions/strings.php');
    include_once('../config/config.php');
    include_once('../functions/page_header.php');
    include_once('../src/load_prefs.php');
    global $color;
    displayPageHeader($color, $group);
    chdir("nntp");
?>
			    
2) edit some files to use squirrelmail.inc and not head.inc (frames version only)
    a) nntp_index.php or index.php    
    b) topframe.php

3) make a new topframe.php because we post in bottom frame we remove that line
    <?php header("Expires: ".gmdate("D, d M Y H:i:s",time()+(3600*24))." GMT");
    include_once "config.inc";
    $title.= ' - '.$group;
    include_once "squirrelmail.inc";
    ?>
    <?php include_once "tail.inc"; ?>
	  
4) adjust frameset value in file thread_frameset.php to see whole menu_line (frames version only)
    I use 80, 35%,65%
    
5) make a new article_blank.php

<?php /* Modified at 5 places by ri_once */ ?>
<?php /* 'php' Added by ri_once */
    /* '_once' Added by ri_once */ include_once "config.inc";
    /* '_once' Added by ri_once */ include_once "head.inc"; ?>

No article

    <p align="center">
    <?php /* 'php' Added by ri_once */ if (!$readonly)
    echo "[<a target=\"$frame_post\" ";
    echo "href=\"$file_post?newsgroups=".urlencode($group)."&type=new\">";
    echo $text_thread["button_write"]."</a>]";
    ?>
    </p>

    <?php /* 'php' Added by ri_once */ /* '_once' Added by ri_once */ include_once "		tail.inc"; ?>


		
Todo:
* transfer config to squirrelmail configfile
* edit groups in setup menu
* edit config in setup menu
* edit mailto to use Squirrelmail
* test the non frame version
* more testing.
* strip the ri_once remarks
* max_article_page with frames, won't work right now
* get post name from squirrelmail configfile
