vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Mini Mods - Inactive Users Email Reminders For 3.7.x (https://vborg.vbsupport.ru/showthread.php?t=188383)

Gene Steinberg 08-21-2008 09:32 PM

One more thing: Not having the predefined From address as a setting, it uses "nobody" on my server. I do have the Webmaster email set in the standard vBulletin Admin CP options.

Peace,
Gene

C Braithwaite 08-22-2008 04:29 AM

Quote:

Originally Posted by Megatr0n (Post 1603984)
Does this update fix all the bugs reported in GamerGirl27's post?

I have been through the code and done several tests, and after doing some research i have come to the conclusion that it's down to larger forums and the mailqueue locking. as noted above, locking should be enabled if any issues are encountered.
Quote:

Originally Posted by grahamsmythe (Post 1604027)
I just downloaded this update, and although the documentation shows it's version 1.2.4, version 1.2.2 is actually posted.

As far as I can make out, version 1.2.2 doesn't give you the option to change the email address of who the reminder came from

Nice product though!

ignore the 1.2.2. i forgot to update that on the product. the code has changed.

Quote:

Originally Posted by genesteinberg (Post 1604053)
One more thing: Not having the predefined From address as a setting, it uses "nobody" on my server. I do have the Webmaster email set in the standard vBulletin Admin CP options.

Peace,
Gene

You must set a from email address. this is required.

RedTrinity 08-22-2008 06:04 AM

Quote:

Originally Posted by C Braithwaite (Post 1604204)
You must set a from email address. this is required.

I just installed latest version (first as update, then as a new install) and can't seem to find what has changed, the options page looks the same as before? :confused: Also unable to locate where to add the email address...

Otherwise, I look forward to trying it out.

Megatr0n 08-22-2008 07:50 AM

Yeah, where do you add the from address?

djbaxter 08-22-2008 11:40 AM

Quote:

Originally Posted by genesteinberg (Post 1601055)
Quote:

Originally Posted by djbaxter
Use the EZ Bounce Manager add-on. It works well in combination with this one.

I would find that -- where?

All I can find in 3.7 mod is something called Auto Bounce Messages Management, which doesn't work very well.

Peace,
Gene

Sorry - I was offline for a while. See https://vborg.vbsupport.ru/showthread.php?t=138884 - it's a vB 3.6x add-on but works well in my installation of 3.72 PL2.

With some add-ons, you need to edit the PHP file to add the EZ Bounce headers. Let me know if that's the case for you using the new version of this add-on but what you need to add will look something like this...

Find in product-remindermail.xml:

Code:

                $headers  = "MIME-Version: 1.0" . "\r\n";
                $headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
                $headers .= "To: $username <$email>" . "\r\n";
                $headers .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";

Add below:

Code:

                        $bounceurl                = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $userid;
                        $bouncestring        = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
                        $headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter;

Save and then reinstall the product from your Admin CP, using overwrite.

Gene Steinberg 08-22-2008 12:48 PM

Quote:

Originally Posted by djbaxter (Post 1604398)
Sorry - I was offline for a while. See https://vborg.vbsupport.ru/showthread.php?t=138884 - it's a vB 3.6x add-on but works well in my installation of 3.72 PL2.

With some add-ons, you need to edit the PHP file to add the EZ Bounce headers. Let me know if that's the case for you using the new version of this add-on but what you need to add will look something like this...

Find in product-remindermail.xml:

Code:

                $headers  = "MIME-Version: 1.0" . "\r\n";
                $headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
                $headers .= "To: $username <$email>" . "\r\n";
                $headers .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";

Add below:

Code:

                        $bounceurl                = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $userid;
                        $bouncestring        = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
                        $headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter;

Save and then reinstall the product from your Admin CP, using overwrite.

I hope that is it. I've had no luck getting a bounce-related plugin to function.

Peace,
Gene Steinberg

Charlie98902 08-22-2008 01:00 PM

Do I need to edit this to show my URL and forum team or does this do it automatically with the coding done?

Code:

The $forumtitle Team
<a href="$homeurl">$bbtitle</a></p>

Also I use a gmail account so will my message be said from nobody too?

Gene Steinberg 08-22-2008 01:19 PM

First of all, thanks a lot for the code suggestion: It worked like a charm and now the EZ Bounce header is fully functionally in the bounced messages.

One more thing: Maybe the coder of this plugin can add an option to activate EZ Bounce header support, so we don't have to manually edit the product each time it's updated.

Unless, of course, he comes up with a better idea -- and I still have hopes for that. :)

Peace,
Gene

C Braithwaite 08-22-2008 07:01 PM

Quote:

Originally Posted by djbaxter (Post 1604398)
Sorry - I was offline for a while. See https://vborg.vbsupport.ru/showthread.php?t=138884 - it's a vB 3.6x add-on but works well in my installation of 3.72 PL2.

With some add-ons, you need to edit the PHP file to add the EZ Bounce headers. Let me know if that's the case for you using the new version of this add-on but what you need to add will look something like this...

Find in product-remindermail.xml:

Code:

                $headers  = "MIME-Version: 1.0" . "\r\n";
                $headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
                $headers .= "To: $username <$email>" . "\r\n";
                $headers .= "From: " . $vbulletin->options['bbtitle'] . " Reminder Service <" . $vbulletin->options['webmasteremail'] . ">" . "\r\n";

Add below:

Code:

                        $bounceurl                = $vbulletin->options['ezb_admincpurl'] . "/ezbounce.php?u=" . $userid;
                        $bouncestring        = "<a href=\"$bounceurl\" target=\"_blank\">$bounceurl</a>";
                        $headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter;

Save and then reinstall the product from your Admin CP, using overwrite.

hey djbaxter - if you could help me outon thtis one. what is the variable name for the ezbouncer "enabled" option?

if you can get me that i will add it to the code so that it adds the headers if the ezbounce thingy is installed and enabled?

C Braithwaite 08-22-2008 07:04 PM

Quote:

Originally Posted by genesteinberg (Post 1604440)
First of all, thanks a lot for the code suggestion: It worked like a charm and now the EZ Bounce header is fully functionally in the bounced messages.

One more thing: Maybe the coder of this plugin can add an option to activate EZ Bounce header support, so we don't have to manually edit the product each time it's updated.

Unless, of course, he comes up with a better idea -- and I still have hopes for that. :)

Peace,
Gene

for the moment i will add support for ezbounce. but once im happy with the workings of the inactive reminders i will start to add my own functionallity for bounced emails.


All times are GMT. The time now is 05:12 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.02378 seconds
  • Memory Usage 1,765KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete