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

Reply
 
Thread Tools
Details »»

Version: , by fastforward fastforward is offline
Developer Last Online: Nov 2011 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 07-11-2001 Last Update: Never Installs: 25
 
No support by the author.

Description:

This hack provides a gateway to selected usenet groups. The entire usenet group is mirrored locally. Posts submitted locally to mirrored newsgroups will also be sent out to usenet. A single perl script is executed via cron that collects news and posts any outgoing articles. Incoming messages are parsed against customizable spam filters and threaded correctly before being placed in your forums. By default, no personal information is sent to usenet other than the posters username and whatever you have globally configured as a footer and organization. The option does exist for a user to include a custom email to use for usenet posts. After initial installation (which involves creating some new tables, adding a few columns to existing vB tables, and entering the database connection information to the news script) configuration is completed via the vB control panel.
  • See it in action at dBforums.com (usenet forums are at the bottom)
  • Download latest version for vB 2.2.4

Current version is 20020323 for vB2.xx

Current feature list:
  • correct threading of outgoing posts on usenet
  • full control panel integration
  • email notification to usenet replies
  • emoticon translation into vb icons
  • vb code removal or conversion prior to posting to usenet
  • hyperlinked urls in messages
  • color coded, italicized & indented quotes
  • vB style quote to usenet style quote conversions for outgoing posts
  • logging of outgoing posts
  • support for multiple news servers
  • support for seperate footers per forum in outgoing posts
  • multi-language (selectable) handling of quoted MIME printable headers (for all those funny foreign characters)
  • handling of mailing archive groups
  • flexible spam control and replacement variable options for incoming and outgoing messages
  • configurable auto-expire option
  • option for users to show email address in their outgoing usenet posts (may be different than normal one in profile
  • option to enable/disable user signatures on outgoing posts.
  • fully compatible with vB moderation functions
Still to be done:
  • canceling of messages after they have been sent to usenet via control message in accordance with RFC1036.
  • binary attachment support
  • email to PM gateway
Screeshots:
Main Options
More Options
Configuration of Newsgroups
Add New Newsgroups
Spam Control
What an imported usenet article looks like in vB

The latest version of this hack will always be in this first post of the thread.

Before asking questions in this thread, please read all the posts in this thread. If your question goes unanswered, it will probably be because the question has already been answered countless times in this thread.

This hack was created for use on my forums and will only be supported as time permits.


Links to required Perl Modules

Show Your Support

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

Comments
  #392  
Old 01-16-2002, 07:59 AM
WildWayz WildWayz is offline
 
Join Date: Oct 2001
Location: United Kingdom
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also,
when I hit on quote then reply, the newsgroup reads my posts as a single line paragraph ie no line breaks.

Any way we can get linebreaks to work?

James
Reply With Quote
  #393  
Old 01-16-2002, 12:32 PM
fastforward fastforward is offline
 
Join Date: Oct 2001
Location: NC, USA
Posts: 399
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by WildWayz
Also,
when I hit on quote then reply, the newsgroup reads my posts as a single line paragraph ie no line breaks.

Any way we can get linebreaks to work?

Line breaks work for me. I have also been unable to reproduce your other error. What platform are you on?

To verify that the script is sending things to usenet, run this query immediately after you post a thread. Substitute '$$newsgroup->{forumid}' with the forumid in which the thread was posted.
Code:
SELECT e.csig,
       b.email, 
       b.showemail, 
       b.signature, 
       a.threadid, 
       a.postusername, 
       a.title, 
       d.newsgroup 
  FROM thread AS a, 
       user AS b, 
       usergroup AS c, 
       usenet_group AS d, 
       userfield AS e 
  WHERE a.visible=1 
    AND forumid=$$newsgroup->{forumid} 
    AND a.postuserid=b.userid 
    AND b.usergroupid=c.usergroupid 
    AND b.userid=e.userid 
    AND a.isusenetpost=0 
    AND a.forumid=d.forum;
Reply With Quote
  #394  
Old 01-16-2002, 12:48 PM
WildWayz WildWayz is offline
 
Join Date: Oct 2001
Location: United Kingdom
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by fastforward

Line breaks work for me. I have also been unable to reproduce your other error. What platform are you on?

To verify that the script is sending things to usenet, run this query immediately after you post a thread. Substitute '$$newsgroup->{forumid}' with the forumid in which the thread was posted.
Code:
SELECT e.csig,
       b.email, 
       b.showemail, 
       b.signature, 
       a.threadid, 
       a.postusername, 
       a.title, 
       d.newsgroup 
  FROM thread AS a, 
       user AS b, 
       usergroup AS c, 
       usenet_group AS d, 
       userfield AS e 
  WHERE a.visible=1 
    AND forumid=$$newsgroup->{forumid} 
    AND a.postuserid=b.userid 
    AND b.usergroupid=c.usergroupid 
    AND b.userid=e.userid 
    AND a.isusenetpost=0 
    AND a.forumid=d.forum;
Hi ya

I am on RedHat 7.0, PHP4.1.0, MySQL 3.23.45

When I run the query, it doesn't like e.csig so I removed it and it outputted this....
Code:
email  showemail  signature  threadid  postusername  title  newsgroup  
james@dvd-critic.net 1 <center><table width="95%" height="10" bgcolor="#3... 353 James@DVD-Critic OT: Test post uk.media.dvd
--James
Reply With Quote
  #395  
Old 01-16-2002, 01:15 PM
WildWayz WildWayz is offline
 
Join Date: Oct 2001
Location: United Kingdom
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Also, i noticed it doesn't pull in every post and often it misses some out for some reason (even if I purge the tables and re-grab them).

James
Reply With Quote
  #396  
Old 01-16-2002, 03:06 PM
VirtueTech VirtueTech is offline
 
Join Date: Oct 2001
Posts: 189
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When can we expect a PHP version of newnews.pl?

Thanks.
Reply With Quote
  #397  
Old 01-16-2002, 03:13 PM
Dontom Dontom is offline
 
Join Date: Oct 2001
Location: Germany
Posts: 115
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

my bbcode replacing doesnt work properly
example here:
http://www.mtb-news.de/forum/showthr...threadid=11541

I use:

Code:
[q1] is replaced by
 &nbsp;&nbsp;<font size="1" color="blue">{param}</font>
any idea?
tom
Reply With Quote
  #398  
Old 01-17-2002, 12:35 AM
bitbender's Avatar
bitbender bitbender is offline
 
Join Date: Jan 2002
Location: Sorta near Dallas, Texas
Posts: 166
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

FF,

Still running great on my board! !

Developing my 2.2.1 upgrade now, so, I await your new release in awe with the others!! :up:

This is/has been a great addition to my board, and has helped draw new members, as well as providing fresh material daily for the membership to post on! :supwink:
Reply With Quote
  #399  
Old 01-17-2002, 06:49 AM
CJi CJi is offline
 
Join Date: Oct 2001
Posts: 73
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I can't wait for a 2.2.1 release of this!!
Reply With Quote
  #400  
Old 01-18-2002, 05:03 AM
WildWayz WildWayz is offline
 
Join Date: Oct 2001
Location: United Kingdom
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

doesn't it work on 2.2.1 ?
I have it on mine, but it might explain why there are bugs.

James
Reply With Quote
  #401  
Old 01-18-2002, 06:47 PM
Tim Wheatley's Avatar
Tim Wheatley Tim Wheatley is offline
 
Join Date: Nov 2001
Location: England
Posts: 489
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Damn, I stupidly assumed this worked on 2.2.1. :cry: I've installed it all and was getting nothing...
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 08:55 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04914 seconds
  • Memory Usage 2,313KB
  • 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
  • (4)bbcode_code
  • (2)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