Quote:
Originally Posted by FleXy
great mod, but I can not find information how user can define himself by mail...
This plugin use email address to know "user login"? I mean "to know who wrote by mail" ?
If yes, it's not secure, because anybody can send letters from any email address. I mean i can send email from support @ microsoft [dot] com etc.
email is WRONG choose to define user. So it's loophole for spammers....
p.s. sorry for my english.
|
The security offered in the modification I have written is just as secure as yahoo email groups.
It does offer some difficulty in that the code I'm using also checks the domain name that sent the email.
I am looking into ways to possibly embed security words into the header, but that will be a bit down the line.
Right now I'm happy with it being just as secure as the yahoo email groups that have such a high popularity
Linnov - You can try calling the exec_send_notification function. Here is the code to call that function as cut from the functions_newpost.php file
Code:
exec_send_notification($threadinfo['threadid'], $vbulletin->userinfo['userid'], $post['postid']);
You will need to fiddle with your code to get the threadid and postid determined.
Unfortunatley I don't have alot of time to dig into the code you posted to say how to set those variables
Currently... I'm getting my ass kicked by functions called from cron jobs... I've almost got vbmail working to process emails, just getting hammered by trying to rebuild the email headers through the cron job. Bear with me all.