Version: , by fastforward
Developer Last Online: Nov 2011
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)
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.
Unless the user specifies a new signature. The normal one goes out to usenet (as long as you select 'Include user signature on outgoing posts?' in the control panel).
If you also select 'Custom profile field title for usenet signature' in the control panel, then the user will have the opportunity to override their default sig with a new one specific to usenet.
However, in either case, the BBCode should be stripped before being sent to usenet. Is this not the case? If not, I'll look into it.
Originally posted by VirtueTech It would be best if the system only allowed the users to send the custom Usenet Signature only. At least for my site it would.
I can do that quite easily. I'll try and find time today for you.
Originally posted by Dontom cool, thank you for this fast answer!!
Tom
One thing I should have mentioned. The messages on the console will show these X-No-archive posts as being rejected because they were spam even though they aren't.
I'll add a CP option for this in the next version.
Originally posted by VirtueTech It would be best if the system only allowed the users to send the custom Usenet Signature only. At least for my site it would.
For a quick fix to allow this now, find on or around line 877 that currently reads:
Code:
$signature = $thread->{signature};
and change to:
Code:
$signature = "";
This will cause a blank signature to be sent to usenet if a custom one is not set.