The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Email Integration (New threads/replies by email) Details »» | |||||||||||||||||||||||||||
Email Integration (New threads/replies by email)
Developer Last Online: Dec 2011
This mod is based off of the Mail Reply modification by Colin F to which I have obtained permission to rewrite and release. This modification allows you to mimic email lists such as yahoo groups through your forums! After installing this modification you will have new settings in your forum manager where for each forum you can enable this modification and setup a separate email address to use for each forum that you have this enabled for. Just like how there is a separate email address for each yahoo group. 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. (Example email 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! BUGS! These are the known bugs to date:
These are the items that are not currently supported:
(See the file in the zip for a complete history!)
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.7! The #.X versions are the solid tested versions. 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 |
#362
|
|||
|
|||
No, it's something I haven't been able to incorporate yet.
The biggest brainfart is how I'm going to have people define prefixes when they are sending a new thread without it being a pain in the ass. |
#363
|
|||
|
|||
I'll be lookin for beta testers very soon as I'm going to rewrite the regex from the ground up.
So far 2.3 will have:
edit - o yeah... duh. to be a beta tester PM me please and I'll reply with the url and logins for the test site. |
#364
|
||||
|
||||
parse it from the subject line?
|
#365
|
|||
|
|||
RE: subject prefixes
Well - I may have come up with a workaround for the email replies -- it pulls a default prefix for the forum and applies it accordingly -- works in my test cases. If you could give me a hint how to change the out bound email subjects both via a forum post and a email response, that would be HUGE FIRST: update the product-threadprefix_english.xml in two spots: Code:
// product-threadprefix_english.xml if (!verify_thread_prefix($this->info['forum'], $this->info['threadprefix'])) { // added to get default prefix - cgmckeever $this->thread['threadprefix'] = return_default_prefix($this->info['forum']); // removed for email integration - cgmckeever //$this->error('nothreadprefix'); //$return_value = false; } add a lookup function in functions_threadprefix.php: Code:
// includes/functions_threadprefix.php // returns the first prefix of a forum function return_default_prefix($foruminfo){ $prefixes = explode("\r\n", trim($foruminfo['threadprefix'])); // print $prefixes[0]; return $prefixes[0]; } |
#366
|
|||
|
|||
I can totally do that for replies, and can start off the prefix with the new threads that start from the forums. But concern is how do you assign prefixes to new threads started from email?
The only way I can think of would be requiring the person to put like (this is the prefix) Email title in the subject line, but that way they would have to know all the prefixes to know which one to choose Quote:
The default prefix is a great idea though!! For forums that require a threadprefix, I can have it use the default one. I'll work this into the next version provided the regex's don't make my brain explode |
#367
|
|||
|
|||
Quote:
how does the code handle the current prefix when a user hits reply? |
#368
|
|||
|
|||
Disregards it when it sends out the email right now. It doesn't prefix the title in the emails.
I did it that way til I could determine a good method to assign prefixes to newthreads from email. I think I'll go with the default method.. maybe I'll work it into the forum manager so you can select which prefix to assign to new threads started from email. Hmmm much to think on |
#369
|
|||
|
|||
I must be doing something wrong then, because mine definitely prefixes the titles
[Development-t-9] Why is there no user prefix Any ideas? |
#370
|
|||
|
|||
Your forums do. But the emails do not, to keep them from repeating themselves indefinately.
As I mentioned, I did it this way til I could determine how I would assign prefixes for new threads from emails Most likely the next version will support thread prefixes. It entirely depends on how severe rewriting the regexs will be. If they take a long time then I'll release 2.3 without the thread prefix support and work on that for 2.4. As right now, the regexs take priority But I will definately have support for thread prefixes soon! As I use those as well on my forums |
#371
|
|||
|
|||
Quote:
maybe we aren't on the same page here. But the title definately gets a prefix slapped onto it when it is sent to the email recpts. UPDATE: maybe the EI script is using the parent (top level) title -- ? in that case, you never have to worry about the growing subject. The sendder can change the title and it always rverts back to the originating parent thread ?? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|