vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Administrative and Maintenance Tools - EZ Bounced Email Management for Admins (https://vborg.vbsupport.ru/showthread.php?t=138884)

Alfa1 05-25-2010 08:29 PM

According to IB Adrian, vb 4.1 will have bounced email management.

letusdazzleu 06-01-2010 03:20 PM

Does this mod work with 4.0?

Mrdby 06-10-2010 04:32 PM

would be nice to update!

BadgerDog 07-02-2010 03:56 PM

Anyone tried this on v4.0.4?

Thanks...

Regards,
Badger

BadgerDog 07-04-2010 04:57 PM

Well, for those that want to gamble ... ;)

I just activated and ran a test of this on our v4.0.4pl1 site and it ran fine ... :up:

I DO NOT move users to another usergroup, only send them the PM and reset the various options indicated on their user account.

So, no guarantees you'll get the same result, but I was really happy to see it working on my system as we found this mod really valuable.

Regards,
Badger

Alfa1 07-05-2010 11:34 AM

It would be easy to check group change with one account.

Antivirus 08-04-2010 06:58 PM

Quote:

Originally Posted by BadgerDog (Post 2063294)
Anyone tried this on v4.0.4?

I have not upgraded our sites to 4.x yet therefore i am not exactly sure however many people have posted here that it works with 4.x - i just haven't tested it myself.

djbaxter 08-04-2010 07:22 PM

It's working on 4.05.

One request:

At present we have the option of including the EZ Bounce link in EITHER the header or the body of the email. It would be nice to have the option of both. Depending on the email server, no matter which option I choose some bounced emails will be missing the link.

Alfa1 08-08-2010 04:36 PM

Quote:

Originally Posted by Antivirus (Post 1236650)
The script has the same "safety check" as most other files in your admincp which only allows a logged-in admin with "can_admin_settings" permissions, usually this is only primary admin (i.e. you).

Im having issues with this safety check. How do I turn this off?
I want someone else to handle my thousands of bounces, but I do not want to give "can_admin_settings" permissions.

Antivirus 08-18-2010 07:38 PM

Quote:

Originally Posted by djbaxter (Post 2079294)
At present we have the option of including the EZ Bounce link in EITHER the header or the body of the email. It would be nice to have the option of both. Depending on the email server, no matter which option I choose some bounced emails will be missing the link.

You can achieve your desired result by editing the following code within the plugin for hook location: mail_send
PHP Code:

if (!$vbulletin->options['ezb_showezbouncelink'])
{
    
// if turned off, put bounce url into header (default option)
    
$headers .= 'X-EZbouncer: ' $bounceurl $delimiter;
    
/* replace above line with following line if the url in bouncing email header is not displaying as a link
    $headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter; 
    */
}
else
{
    
// if turned on, construct bounce code & place in email message body
    
$bouncecode    construct_phrase($vbphrase['anti_bounce_message'], $bounceurl); 
    
/* replace above line with following line if the url in bouncing email body is not displaying as a link
    $bouncecode    = construct_phrase($vbphrase['anti_bounce_message'], $bouncestring); 
    */
    
$message .= $bouncecode;




Quote:

Originally Posted by Alfa1 (Post 2080935)
Im having issues with this safety check. How do I turn this off?
I want someone else to handle my thousands of bounces, but I do not want to give "can_admin_settings" permissions.

this permission check is done in the ezbounce.php file in the following code:

PHP Code:

// ######################## CHECK ADMIN PERMISSIONS #######################
if (!can_administer('canadminsettings'))
{
    
print_cp_no_permission();


If you want to change how this condition is evaluated, simply change the conditional within the if() clause.


All times are GMT. The time now is 06:35 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.01855 seconds
  • Memory Usage 1,749KB
  • 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
  • (2)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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