Quote:
Originally Posted by andrew67
I have installed and it works fine...except for one problem. I cannot get a link to appear on either setting , just a http text line which I have to manually cut and paste.
|
I have no experience with Windows Vista's mail client, but there should be a setting somewhere which allows parsing the link in your client. The only thing you can try is to modify the way the ezbounce link is created:
in the plugin for hook location: MAIL_SEND, find:
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;
}
and replace it with:
PHP Code:
if (!$vbulletin->options['ezb_showezbouncelink'])
{
// if turned off, put bounce url into header (default option)
$headers .= 'X-EZbouncer: ' . $bouncestring . $delimiter;
}
else
{
// if turned on, construct bounce code & place in email message body
$bouncecode = construct_phrase($vbphrase['anti_bounce_message'], $bouncestring);
$message .= $bouncecode;
}
Quote:
Originally Posted by andrew67
This isnt actually the case. I have " Premium Members " who are paid members who are in a custom " Premium Member " category.. Those without a valid email address are sent to Registered User after they fix the email problem.
|
hmm... you're right about that. I see why it's happening and it's now fixed and working correctly. version 1.7 is now most current version of this modification. Please update and thasnks for bringing it to my attention.