Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Beta Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Have Newsletters Posted To Your VB Details »»
Have Newsletters Posted To Your VB
Version: 1.00, by kreftt kreftt is offline
Developer Last Online: Nov 2005 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 05-19-2003 Last Update: Never Installs: 7
Is in Beta Stage  
No support by the author.

TESTED ON 2.2.9, SHOULD WORK ON ANY 2.X BOARD

What does it do?

Say you have a newsletter from some site like sitepoint, that you receive and want to make available to your members.
so usually you would check your mailbox, read the mail, do a copy'n'paste and post the newsletter in your forum.
if there is more than one or the one comes quite often the work sums up.

now you can have this hack run by a cronjob or run it manual and have your new newsletters from any pop3-box automatically posted into your board.

detailed features:
  • no vb file edits at all, just one file to upload and adapt to your needs
  • check any pop3-mailbox for a newsletter
  • define as which user thenewsletter should be posted
  • define in which forum that user should post
  • basic spam check (checks sender name for a string you define)
  • url-parsing
  • cut off unneeded parts in header and footer that are always the same by strings you define
    DO NOT BREAK ANY COPYRIGHTS WITH THAT
  • posted newsletters get deleted after posting from the mailbox, other mails stay intact
  • with little adaptation to vb3's database scheme it will be vb3-compatible

instructions:
  • preparation: subscribe to a newsletter
    i personally would use a dedicated email-account just for the newsletter/-s to prevent spam
  • download the attachment, which contains a single php-file
  • rename the file to whatever you like, like newsletterxyz.php
  • edit the file and adapt it to your needs, like mailbox-variables and the username as who the newsletter should be posted
  • Check if you have scott macvicars last post on forumhome hack installed as you have to edit another line in the file then (line 193)
  • close and upload to [FORUMROOT]
  • either run it manually once in a while in browser or setup a cronjob if your host supports this

    THATS IT
  • for uninstallation: delete the file off your server

you have to use a new copy of the hack for every newsletter you subscribe to

screenshot wont be provided as you would only see some user having posted some thread, nothing exciting

the hack has run for about a month on my board and has posted about 500 threads so far, without a problem

as i have rearranged the variables so that you can change all variables in the header and dont need to scroll through the whole file, i might have made a mistake in this process.
thats why its in beta for now.

please try it, feel free to comment and ask for support, and please click "install" if you decide to use it

finally: i will not be held responsible for any harm you do to your board by using this hack

EDIT: 27.05.03 trouble with cron when running from admin-dir, updated to have it reside in forumroot

Show Your Support

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

Comments
  #12  
Old 06-24-2003, 08:07 PM
StepFenz StepFenz is offline
 
Join Date: Mar 2003
Location: Amsterdam, NL
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I followed the instructions, but I keep on getting this error message:

Warning: main(./config.php) [function.main]: failed to create stream: No such file or directory in /www/htdocs/headpres/forum/admin/global.php on line 96

I'm not sure that I've entered the right mailport, but I don't think this is the problem, right?
I've put the file in my /forum directory.

Hope anyone can help, because this hack was about the first thing to come into my mind as a great idea.
Reply With Quote
  #13  
Old 06-25-2003, 03:44 AM
kreftt's Avatar
kreftt kreftt is offline
 
Join Date: Dec 2001
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what did you put after the line:

//variables

could you please post that here?
Reply With Quote
  #14  
Old 06-25-2003, 04:43 AM
StepFenz StepFenz is offline
 
Join Date: Mar 2003
Location: Amsterdam, NL
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi kreftt, I've already tried and changed the first line into require("forum/admin/global.php");, but that didn't help. I got more evil messages :classic:
I have also installed VBHome, so my forum is in a different, i.e. forumdirectory.

This is what I have now:

require("forum/admin/global.php");

//these are to determine which "user" shall post
//the newsletter in which forum
$forumid="23";
$postusername="PersberichtenBot";
$userid="259";

//pop3-settings
$mailserver="mail.xxxx.nl";
$mailport="110";
$mailuser="xxxxxxx";
$mailpass="xxxxxxx";

//next setting is to avoid spam
//only emails with the following string included in the sender is parsed
$allowedsender="vbulletin-announcement";
Reply With Quote
  #15  
Old 06-25-2003, 02:52 PM
kreftt's Avatar
kreftt kreftt is offline
 
Join Date: Dec 2001
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

as you have put the php-file into your forum-directory, you should have

require("admin/global.php");

does that work?
Reply With Quote
  #16  
Old 06-25-2003, 04:18 PM
StepFenz StepFenz is offline
 
Join Date: Mar 2003
Location: Amsterdam, NL
Posts: 28
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No kreftt, that causes the error message I mentioned. So I changed the require-line. But then I've got 3 error messages.
What's the mailport number, by the way? Where can I find that?

Do you have an example of a newsparserscript running on a site? So I can see some output to understand (a bit) what the script is doing.
Reply With Quote
  #17  
Old 06-26-2003, 04:12 AM
kreftt's Avatar
kreftt kreftt is offline
 
Join Date: Dec 2001
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

sorry my board isnt public so i couldnt show you.
is your php-file in /www/htdocs/headpres/forum ? the mailport would be 110, which is standard for pop3...
Reply With Quote
  #18  
Old 07-10-2003, 02:53 PM
Ronin Six Ronin Six is offline
 
Join Date: Feb 2003
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Kreftt,

I'm getting the same errors as StepFenz. Below is part of the php file residing in the forum root:

//variables
require("admin/global.php");

//these are to determine which "user" shall post
//the newsletter in which forum
$forumid="55"; //Test Forum
$postusername="HAL9000";
$userid="540";


//pop3-settings
$mailserver="https://sub.domain.net/v-webmail/";
$mailport="110";
$mailuser="me@domain.com";
$mailpass="xxxxxx";



Another question: if html isn't allowed in a particular forum, I assume that html emails won't get parsed correctly, right? And for html emails to get parsed correctly, I'd have to allow html in the posts? Just wanna be certain.
Reply With Quote
  #19  
Old 07-11-2003, 04:02 AM
kreftt's Avatar
kreftt kreftt is offline
 
Join Date: Dec 2001
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hmm, ive never seen a mailserver starting with https://, are you sure that is right?

i only guess now, but i think the post gets parsed and checked for html before it gets entered into the database. so if a hack enters the post by a query directly into the db without using newpost.php it SHOULD work. just try it, if it doesnt work, we'll find a workaround...

greetz

kreftt
Reply With Quote
  #20  
Old 07-11-2003, 10:23 PM
Ronin Six Ronin Six is offline
 
Join Date: Feb 2003
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Still getting the same errors. Any ideas why? Perhaps another hack interfering? Here's my new settings:

//variables
require("admin/global.php");

//these are to determine which "user" shall post
//the newsletter in which forum
$forumid="55"; //Test Forum
$postusername="HAL9000";
$userid="540";


//pop3-settings
$mailserver="pop.isp.domain.com";
$mailport="110";
$mailuser="me@isp.com";
$mailpass="xxxxxxxxx";

Also, exactly what is that error message telling me? That it can't find global.php or config.php?

Thanks so much for any help you can give.
Reply With Quote
  #21  
Old 12-28-2003, 03:10 PM
twollert twollert is offline
 
Join Date: Jan 2003
Location: Germany
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by alesis404
kreftt, I have followed the directions and still no results and not sure if any factors that might stop this from working

I am not running this via cron but I visit the page manually and reload a few times and get no results, have sent 5 mails to skybot@mydomain.net and I know they are getting there but the emails don't seem to get posted to the forum as they should, any factors you could think that might influence this not happening?

Thanks again for your time
The same problem here...
Reply With Quote
Reply


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 05:03 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.07439 seconds
  • Memory Usage 2,306KB
  • 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_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
  • (2)pagenav_pagelink
  • (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