Quote:
Originally Posted by makaiguy
Third is for Email-to-another-bbs-user mails. These are the ones currently giving me fits.
Find:
PHP Code:
vbmail($userinfo['email'], fetch_censored_text($vbulletin->GPC['emailsubject']), $message , false, $vbulletin->userinfo['email'], '', $vbulletin->userinfo['username']);
Replace with:
PHP Code:
vbmail($userinfo['email'], fetch_censored_text($vbulletin->GPC['emailsubject']), $message , false, '', "Reply-to:{$vbulletin->userinfo['email']}\n", $vbulletin->userinfo['username']);
|
PERFECT! Thanks!
I tested both yahoo and aol email addresses (SENDER) and both went through fine now.
Replying to the resulting email does indeed direct it to the real sender.
By the way, my installation is 4.2.2 and there was no change in syntax on this hack.