Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases

Reply
 
Thread Tools
NNTP Gateway for Usenet ( Newsgroups ), Mailing Lists Details »»
NNTP Gateway for Usenet ( Newsgroups ), Mailing Lists
Version: 2.3.2, by lierduh lierduh is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.5 Rating:
Released: 05-14-2004 Last Update: 02-27-2005 Installs: 186
DB Changes
 
No support by the author.

The latest version: V2.3.2 (31 Oct 2004)

What is it?

This hack provides a gateway from vBulletin forums to the USENET. It allows forum members to read newsgroup messages as well as to send posts to the newsgroups. In a nutshell, it turns vBulletin forums into a basic function news reader.

For an added bonus, this package also supports mailing list archive and forum to mailing list gateway. The software retrieves messages from a pop3 account and import them into the forums threaded. It also allows a forums user to send messages to the mailing list by the forum posting interface.

Why?

The gateway will be appreciated by forum members who do not know how to set up a news reader, or people who do not have port 119 open in their network. A forum interface to read and post news are often considered to be better than a news reader.

The gateway adds more contents to your forums and allows the members to interact with wider audience. It is common to see new users signing up to use this feature.

History

This hack is basically a hacked vB2 NNTP gateway written by Gilby to work with vB3. The original hack can be found here:

https://vborg.vbsupport.ru/showthrea...7&page=1&pp=15


Features

Some of the features and improvement include:
  • Handles both newsgroup posts and mailing lists.
  • Handles MIME encoded messages and attachment.
  • Handles UUEncoded messages.
  • Two Admin Control Panels for all settings.
  • Automated installation.
  • Correct thread implementation. All imported messages and posts sent to newsgroups will be threaded correctly according to References and Message-ID headers.
  • Optional setting to thread by subject for mailing lists that strip references header.
  • Supports TABLE_PREFIX.
  • Imported messages will be searchable just like normal forum posts.
  • Similar threads are built when the messages are imported if the system setting is on.
  • Multiple attachments importing.
  • Save attachment to database or file according to vB setting.
  • Thumbnail created while importing image files.
  • Multiple attachment post to newsgroup is also supported.
  • Selectable X-No-Archive header honouring system.
  • Light on system resources.
  • Global Killfile to filter out unwanted messages. Killfiles can have OR and AND effectiveness.
  • Strip footer by setting for incoming messages. Strips out repeated message footers.
  • Built options to disable signatures and footers for out going messages.

Future development
  • AdminCP interfaces. (completed)
  • Installation/upgrade script. (completed, coded into AdminCP)
  • Traditional "> " lead posting interface.

What do you need and do not need?

You do not need to edit vB php files if you use two bookmarks
You need to edit one vB php file to insert two lines of code if you want direct click links within AdminCP.
No need to run SQL.

Installation

Basically the AdminCP interfaces take care of installation as well as upgrade in the background. Back up your database first. The scripts can modify your database without alerting you!

Please follow the instructions in the readme.txt file for more details.

Support

Please post your support questions to this thread. Please check the FAQ in the third post within this thread first.

================== UPDATES ======================
Jul 31 2004 (release version 2.2.0)
  • Provided option of not importing attachments
  • Provided option of pause between messages
  • Provided option of not sending messages to USENET
  • Provided mechanism to skip importing a message if it was crashed on it
  • Provided "Default Footer" option
  • Provided strip_footer function for mailing lists
    (written originally by KevinM)
  • Provided Killfile functions with Header/Body/AND/OR settings
  • Provided ability to thread messages by subject for mailing lists
  • Provided ability to use a single POP3 account for different mailing lists
    (use prefix)
  • Merged KevinM's attachment routine, save thumbnail to hard drive
    as vB3.0.3
  • Official support to have the script run by Scheduled Tasks
  • Many bug fixes

Please note, when you manually run the script, you must turn on the debug mode. Otherwise nothing will be displayed on the screen.

To run as debug mode: http://forums.yourdomain.com/gateway.php?debug=1

25 Oct 2004
  • Provided the option of sending posts using the real email address
  • Provided the option of sending posts using a fixed email address for
    each group.
  • Posts are now held back if they are in the moderating queue
  • Scheduled task log is now working
  • Provided the option of sending the debug messages to the vB3 cron log
  • Bug fixes

31 Oct 2004

Fixed bugs running the gateway by the vB3 Scheduled Tasks

1 March 2004

Uploaded the new zip file. It contains one or two bug fixes.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 05-23-2004, 06:26 AM
Highlander Highlander is offline
 
Join Date: Apr 2002
Posts: 188
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

THX LIEDERUH:


its nots completely working, but it was an IE issue and with the registry fix i added manually in the registry the IE is now wirkoing corectly, but now i have an error message.

the site gateway.php is loading and messaging folling line:
Code:
<b>Warning</b>:  Wrong parameter count for rtrim() in <b>/www/home93/html/board/includes/nntp.php</b> on line <b>132</b><br>
it seems that the RTIM is now a PHP 4.0.6 command??


any ideas .. its the code in uincludes/nntp.php at line 132
PHP Code:
     $line rtrim(fgets($this->fp), "\r\n"); 
thank fpr the help, i think we are nearly on a working script
Reply With Quote
  #93  
Old 05-23-2004, 06:43 AM
Highlander Highlander is offline
 
Join Date: Apr 2002
Posts: 188
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

okai i fixed it but maybe not really correctly

changed this lines:
PHP Code:
    $post '';
    while(!
feof($this->fp)) {
        
//$line = trim(fgets($this->fp, 256));
        //Took out the length, some lines are longer than that
     
$line rtrim(fgets($this->fp), "\r\n"); 
to this lines:
PHP Code:
    $post '';
    while(!
feof($this->fp)) {
        
$line trim(fgets($this->fp256));
        
//Took out the length, some lines are longer than that
     //$line = rtrim(fgets($this->fp), "\r\n"); 
if there is a better way fixing this LASt issue so tell me please, but with this canges now everything is working, the posts apear now and i can read and post ionto newsgroups .. and it writes the group messages into the forum!

many thanks to liederuh he is giving a excellent support here!!! really .. you are after logician the second one i would install hacks without reading

Questions
  1. How to create a cron job, when i dont have shell, telnet access? Can i use the cron manager of the vb Software? and add the /vb-directory/gateway.php to it .. so it would call the gateway once hourly.
  2. Why i cant call gateway.php for 30 minutes after it loaded out and imported successfully articles from the groups?
  3. When i post with prefix in articels they wont appear as anser, they will show up as news articels, is there any fix?
thanks for the great help
Reply With Quote
  #94  
Old 05-23-2004, 11:04 AM
mcncyo's Avatar
mcncyo mcncyo is offline
 
Join Date: Oct 2001
Location: derby, Kansas
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i can answer #2 for you. It didn't finish going though all of the messages and time out. The reason why there is 30 mins is so two programs will not run at one time. When one program gets down it is supose to change the 1 to 0 in a table. which will let it run again.
Reply With Quote
  #95  
Old 05-23-2004, 12:00 PM
lierduh lierduh is offline
 
Join Date: Jan 2003
Location: Sydney, Australia
Posts: 459
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Highlander
$line = rtrim(fgets($this->fp), "\r\n");[/php]
Questions
  1. How to create a cron job, when i dont have shell, telnet access? Can i use the cron manager of the vb Software? and add the /vb-directory/gateway.php to it .. so it would call the gateway once hourly.
  2. Why i cant call gateway.php for 30 minutes after it loaded out and imported successfully articles from the groups?
  3. When i post with prefix in articels they wont appear as anser, they will show up as news articels, is there any fix?
thanks for the great help
Download the new version, it should fix the rtrim problem, it had problem working with an older version of php.

1) Last time I checked, you can just include the gateway.php in the vB cron job. It will be run every hour.
2) The only time you have this problem is the script crashed. This is to prevent a race condition from more than one running script.
3)You don't want to add prefix to the posts, otherwise, they will not be threaded properly.
Reply With Quote
  #96  
Old 05-23-2004, 12:03 PM
lierduh lierduh is offline
 
Join Date: Jan 2003
Location: Sydney, Australia
Posts: 459
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KevinM
Lierduh,

It's my own leased server (although I'm stuffed when it comes to knowing how to configure it :ninja: ). I tried creating the directories and changing the path in the script but it had the same error. I then tried changing the v+ to w+ in the fopen statement and the script loops through the attachments without breaking, but produces the following error upon with each attachment:
The attachment is downloaded and inserted correctly for viewing, except for the thumbnail.
Please try the new v2.1.0. It may solve your problem.
Reply With Quote
  #97  
Old 05-23-2004, 09:22 PM
chas_h's Avatar
chas_h chas_h is offline
 
Join Date: Jan 2004
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bravo Lierduh! I am very impressed with how far you have taken this in the last few weeks and very happy that you have decided to continue developement.

Thank you!
Reply With Quote
  #98  
Old 05-24-2004, 01:07 AM
Erwin's Avatar
Erwin Erwin is offline
 
Join Date: Jan 2002
Posts: 7,604
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The new versions - can you explain in a post here if people need to upgrade, or are they only for people who want mailing list support?
Reply With Quote
  #99  
Old 05-24-2004, 01:44 AM
lierduh lierduh is offline
 
Join Date: Jan 2003
Location: Sydney, Australia
Posts: 459
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Erwin
The new versions - can you explain in a post here if people need to upgrade, or are they only for people who want mailing list support?
Erwin, I would say use the latest one. Other than mailinst list support. I have improved handling for mime encoded messages, even if you do not use binary group (not really designed as a binary gateway I must say). People use mime encoding for PGP signatures and other purposes. There are a few new options available now in the setting table. I am not sure which version are you using, but chances are there were bugs fixed with the newer version. I had a quick browse through my cvs logs, there are quick a few areas changed since last release. It is not urgent though to upgrade, this release does not contain major bug fixes. Naturally, there might be new bugs created. However, the upgrade only needs you to log in to the AdminCP and open the pages, other than uploading the files.
Reply With Quote
  #100  
Old 05-24-2004, 02:35 AM
Odoin's Avatar
Odoin Odoin is offline
 
Join Date: Jun 2002
Location: Whos your Jim Bob?
Posts: 98
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Imhotep
Good idea, Allan... I am going to look into it.

thanks!
I did not see a answer to my post... How can I get this to show up as something other then:

Unknown Location
/forum/gateway.php?log=cron

In the user lists with CRON runs the gateway?
Reply With Quote
  #101  
Old 05-24-2004, 02:45 AM
Mike11212 Mike11212 is offline
 
Join Date: Jul 2002
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi

I started to install the script when my server went down and only some of the tables for the database were created. When I run the settings I get a MYSQL Error.

Can someone tell me what Tables were created so I can delete them manually and reinstall it.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:24 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05288 seconds
  • Memory Usage 2,329KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (3)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete