The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Email Integration (New Threads/Replies by and through email!) Details »» | |||||||||||||||||||||||||||
Email Integration (New Threads/Replies by and through email!)
Developer Last Online: Dec 2011
This modification allows you to mimic email lists such as yahoo groups through your forums! Complete with the user's receiving emails for new threads and replies AND being able to reply directly from email or sending a new email to start a new thread! Just like email lists, you will need a separate email box for EACH forum that you have this enabled for!! After installing this modification in the forum manager you will enter the settings for each forum to connect to it's own email box. After doing so, members can subscribe to each forum that this mod is enabled for to receive notifications for new threads and replies. Any posts in that forum, will be sent to them via email in one of two formats that you as the administrator decide. One format has a "reply box" and is the most sure fire way of not getting excess email crap ont he forums. The second format (noted as "Old" format) keeps an email in its base pure form with some attempts at quoting messages. Examples of both are attached below. The users can then reply to that email (which will then be processed and posted to the forums through the cron job that runs every 10 minutes), or they can send a new email to the email address and a brand new thread will be created! Essentially mimicing an email list! Suddenly those users that hate forums, can still be dragged into the conversations and help keep the forum's activity level up! IMAP You MUST have php imap functions enabled on your server to use this modification! You do not need to have IMAP installed, just have to enable php to use the functions by recompiling it with imap enabled! If you are upgrading from the version for vbulletin 3.6.x , see below! BUGS! These are the known bugs to date:
These are the items that are not currently supported:
Huge thanks also goes to the many individuals that have helped test various incarnations of this mod. MAD PROPS TO: cgmckeever for a great quoting regex for the old format, and all the mods at www.4winmobile.com for helping test version 2.4 prior to release!! You guys rock! Please feel free to donate to my continued work on this modification!! It let's me spend more time on it! Make a Donation! Version 2.6 will work with both 3.6.8 and 3.7x Upgrading from version for 3.6.x
The #.X.X versions are the beta versions. New features and bug fixes will be worked in there and then when I have a solid version it'll be released as the next #.X Thank you!! ~ Cyricx Supporters / CoAuthors Show Your Support
|
Comments |
#202
|
|||
|
|||
If there is a way to modify a user's subscriptions via the admincp, then you could do that. Other than that it would require an SQL query.
|
#203
|
|||
|
|||
i would like to know if this mod will also work for forwarding and replying pm's or is it only for new threads and replies?
|
#204
|
|||
|
|||
Just threads and replies. And only for specific forums that you set up.
|
#205
|
|||
|
|||
FIXED ISSUE - REMOVED SOME OF THE BLOCKED SUBJECT TEXT - MUST HAVE HAD SOMETHING IN THERE THAT THE SYSTEM DIDN'T LIKE
Hi and thank-you for a great mod. I have a problem though... I have installed and gone through all of the instructions but the mail in not appearing in the forum. I can post to the forum and the system e-mails out. I can send e-mails to the e-mail account (gmail) and the system runs the cron job okay and cleans out the inbox of gmail, but nothing is then posted to the forum... I think that I have done everything as I should...and now I'm at a bit of a loss... Any help/suggestions would be very much appreciated! Cheers, Ian |
#206
|
|||
|
|||
Hi,
Our Microsoft Exchange Server will be decommissioned and therefore I tested accessing the mailbox in a Qmail server, running Courier IMAP which does not seem to be the latest version. Emails sent from Gmail which worked in Exchange were suddenly deleted but not posted. This happens because the From: header is presented to the PHP application by this particular IMAP server in the format firstname lastname <mailbox@gmail.com>, instead of the usual format mailbox@example.com. Here is a fix. Replace the lines 135 - 138 of emailintegration.php Code:
if ($vbulletin->options['ei_strict'] == 1 OR !$fromaddress) { $fromaddress = $letter->sender[0]->mailbox ."@".$letter->sender[0]->host; } Code:
// 20090909 fix empty $fromaddress, Gmail from: header in Qmail/Courier IMAP
//if ($vbulletin->options['ei_strict'] == 1 OR !$fromaddress)
if ($vbulletin->options['ei_strict'] == 1 OR $fromaddress === '@')
{
$fromaddress = $letter->sender[0]->mailbox ."@".$letter->sender[0]->host;
}
if ( $fromaddress === '@' ) {
$from_pattern = "/^.*<(.+)>$/"; // extract email address from < >
$found = preg_match( $from_pattern, $letters[$i]->from, $from_matches );
$fromaddress = $from_matches[1];
}
|
#207
|
|||
|
|||
If your users send replies to your forum mailbox from Lotus Notes, you would have noticed that each HTML link embedded in the message generates an attachment ~~DLNKn.URL where n is a sequence number starting from 0. This patch discards those attachments.
Find the following from line 734: Code:
// save attachments in database Code:
// ##### START MOD skip link attachments from Lotus Notes ##### if ( preg_match( "/^~~DLNK[0-9]*.URL$/", $filename )) { continue; } // ##### END MOD skip link attachments from Lotus Notes ##### Code:
// save attachments in database Code:
// ##### START MOD skip link attachments from Lotus Notes ##### if ( preg_match( "/^~~DLNK[0-9]*.URL$/", $filename )) { continue; } // ##### END MOD skip link attachments from Lotus Notes ##### |
#208
|
|||
|
|||
I have just posted a patch to Email Integration Modification to support moderated forums, at https://vborg.vbsupport.ru/showthrea...151222&page=67
Toivo |
#209
|
|||
|
|||
Is there a way to modify this mod so that the instant notification and full text emails works, but the replying by email is NOT included? I'm interested in only the full text and instant notification features and would like to modify the email itself to remove the reply sections as well as change the name of the option in the subscription drop down menu to "Instant Notification with Full Text". Is this possible? If so, is there a way I can do make the changes myself?
|
#210
|
|||
|
|||
Quote:
|
#211
|
|||
|
|||
Quote:
Cheers. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|