Finally got it working! :banana: Now I can say that this is a truly wonderful mod! In my opinion, it should be a standard feature on all commercial forum software!
Here's how I got it to work on my forums:
In vbemailreply.php, find this:
Code:
###### GET THE THREAD OR POSTID AND OTHER INFO ######
if (preg_match('#\[post-([0-9]+)-([a-z0-9]+)\]#i', $subject, $subjectparts)) {
$postid = intval($subjectparts[1]);
} else if (preg_match('#\[thread-([0-9]+)-([a-z0-9]+)\]#i', $subject, $subjectparts)) {
$threadid = intval($subjectparts[1]);
} else {
preg_match('#\[newthread-([0-9]+)-([a-z0-9]+)\]#i', $subject, $subjectparts);
$forumid = intval($subjectparts[1]);
$type = "thread";
}
and replace with this:
Code:
###### GET THE THREAD OR POSTID AND OTHER INFO ######
if (preg_match('/\[post-([0-9]+)-([a-z0-9]+)\]/i', $subject, $subjectparts)) {
$postid = intval($subjectparts[1]);
} else if (preg_match('/\[thread-([0-9]+)-([a-z0-9]+)\]/i', $subject, $subjectparts)) {
$threadid = intval($subjectparts[1]);
} else if (preg_match('/\[newthread-([0-9]+)-([a-z0-9]+)\]/i', $subject, $subjectparts)) {
$forumid = intval($subjectparts[1]);
$type = "thread";
}
I also had a few problems with the confirmation emails. So a few changes to vbemailreply_install.php are needed.
Around line 440, find:
Code:
\$vboptions[bburl]/showthread.php?p=$newpost[postid]#post\$newpost[postid]
and replace with:
Code:
\$vboptions[bburl]/showthread.php?p=$newpost[postid]
Around line 447, find:
Code:
Your thread \"\$threadinfo[title]\" was succesfully received and entered in the forum \$foruminfo[title]!
Here is a direct link to your post:
\$vboptions[bburl]/showthread.php?t=\$threadinfo[threadid]
and replace with:
Code:
Your thread entitled "$title" was successfully received and entered in the forum $foruminfo[title].
Here is a direct link to your post: $vboptions[bburl]/showthread.php?t=$newpost[threadid]
Or in my case, I simply modified the necessary phrases after the installation.
A few things I wish it could do though:
1) If I reply via email, I would like to resume receiving the reply notification email (as if I had visited the forum and viewed the subscribed thread)).
2) If I start a new thread via email, I would like to be automatically subscribed to that thread if that is the default setting in my profile.
3) Long lines of text are automatically cut and continued on the next line after about 70 characters. That's fine but there also a "=" added at the end of each line. I wish it wouldn't do that.
I think there were one or two more but I can't remember.
Anyway, great mod! I hope further development is done this.