![]() |
This products adds this html code to every page of your forum
Quote:
|
Quote:
|
You are right. But this need to be either mentioned in product description, or this product should be deleted on vbulletin.org
|
A copyright notice in the footer is common practise and not a reason to delete a modification from vB.org (providing it is not linking to Warez/Adult content, etc..).
It is the users choice to accept this and install the modification or not. (PS I do agree with mot of those that complain that a copyright notice should only be placed on pages where the modification is active, but this is the authors choice) |
I agree that a copyright notice is okay. But I need to know that there is a notice and where it is placed. Here it is placed on *all* of my pages. This for an administorial modification! You'd never think there's a copyright notice at all. If administrators just install this mod, they do not always look around what this modification displays on places which have nothing to do with this mod.
I never installed a mod and then searched my website for additional copyright notices (which is here also linked - bad for SEO). And I installed a lot of mods. But now I do. Does not make vb.org a more secure place for me. |
Quote:
Quote:
|
I'll give this a good test :)
|
after install - email notifications for users is no longer working - any ideas ?
|
Quote:
On the other hand, scanning the header of the bounce message is enough to retrieve the special email address. Regards |
Quote:
|
ok got this all running HOWEVER its not moving any users to the bounce usergroup - I notice many others with the same problem
here is the message after the cron is run Quote:
I would pay $$ to get this working |
Is this working?
|
here is my test msg
Quote:
|
Same problem as Raptor, seems to work ok but the bounced users do not get moved to the new usergroup.
Great hack by the way if it worked. |
so far 15 users have been moved - out of around 10,000 that need sorting lol
so its almost there - im sure it will get sorted |
lol
did u do anything Raptor to move those 15 or did u just leave it? I'm asking as i have disabled it at the moment. |
I just left it - its at 53 atm however there is still many thousands to be processed.
is this mod still being worked on ? Quote:
|
I guess It's not working them, I'll probarly have to install the EZ version and manualy move accounts.
|
So is there a way that if a user has inputted a fake email and it gets bounced, that the email would no longer be emailed therefor saving server resources.?
|
Is this going to get updated or not ?
I've already offered $$$ |
Raptor, please don't push!
|
Quote:
So I'm back to this one, but it's not fully reliable either. It doesn't appear to be parsing even a fraction of the actual bounces. Milad, any help here? Peace, Gene |
This is beta 1, you're expecting too much from the first beta.
I worked on beta 2. but din't finish it yet. Some commercial projects have higher priorities. So please be patient. |
Quote:
Do you have any ideas yet when beta 2 will be finished? Peace, Gene |
Quote:
|
I do have one suggestion. If a message is going to bounce properly, the messages sent from vBulletin wouldn't even be accepted by the destination host. Typically if an email no longer exists, the message is bounced during the SMTP transaction.
Instead of your current method of verifying bounce messages. Why don't you either re-write the vBulletin sending function or place a hook before the message is to be sent. And have a script resolve the domains mx record. Then connect to the destination mail server and confirm the message is valid. You pretty much just have to issue a HELO, MAIL FROM, and RCPT TO. You don't even have to send a message through. This definitely cut down the time and resources used to determine if an address is legitimate. You would obviously have to setup the pop account as well to catch mail servers that are accepting mail and then bouncing it (which is bad and shouldn't happen). Furthermore, the process of the bad mail addresses would happen during regular mail operations. Thanks for the great mod. |
Quote:
|
Quote:
Ill show you how it can be done manually. Find the MX record [comm@taco:/home/comm]> dig hotmail.com mx ;; ANSWER SECTION: hotmail.com. 3600 IN MX 5 mx4.hotmail.com. hotmail.com. 3600 IN MX 5 mx1.hotmail.com. hotmail.com. 3600 IN MX 5 mx3.hotmail.com. hotmail.com. 3600 IN MX 5 mx2.hotmail.com. Connect the the one of the MX records (I've *** out my email address): [comm@taco:/home/comm]> telnet mx2.hotmail.com 25 Trying 65.54.245.40... Connected to mx2.hotmail.com. Escape character is '^]'. 220 bay0-mc10-f11.bay0.hotmail.com Sending unsolicited commercial or bulk e-mail to Microsoft's computer network is prohibited. Other restrictions are found at http://privacy.msn.com/Anti-spam/. Violations will result in use of equipment located in California and other states. Fri, 22 Aug 2008 19:53:02 -0700 HELO test.example.com 250 bay0-mc10-f11.bay0.hotmail.com (3.6.0.91) Hello [64.40.106.55] MAIL FROM: j***@gmail.com 250 j****@gmail.com....Sender OK RCPT TO: n*****@hotmail.com 250 n****@hotmail.com DATA 354 Start mail input; end with <CRLF>.<CRLF> ^] telnet> Connection closed. As you can see the mail was accepted after the DATA command. So this was successful. Now lets see one thats failed on an address that didn't exist. [comm@taco:/home/comm]> telnet mx2.hotmail.com 25 Trying 65.54.244.168... Connected to mx2.hotmail.com. Escape character is '^]'. 220 bay0-mc6-f8.bay0.hotmail.com Sending unsolicited commercial or bulk e-mail to Microsoft's computer network is prohibited. Other restrictions are found at http://privacy.msn.com/Anti-spam/. Violations will result in use of equipment located in California and other states. Fri, 22 Aug 2008 19:56:44 -0700 helo test.example.com 250 bay0-mc6-f8.bay0.hotmail.com (3.6.0.91) Hello [64.40.106.55] MAIL FROM: ****@gmail.com 250 *****@gmail.com....Sender OK RCPT TO: badmail1231233123@hotmail.com 550 Requested action not taken: mailbox unavailable ^] telnet> Connection closed. As you can see the SMTP session fails! Easy test and you don't need to send a message to the server or process bounce messages. This is the same process used in the following module that works very well: https://vborg.vbsupport.ru/showthread.php?t=144590 Your wasting your time and resources on use a POP3 account, just use the above method. While your at it you can also re-create the above module for 3.7 since it hasn't been coded over to 3.7 and it would be fairly easy. |
I don't presume to know why this particular product doesn't work, and I'l accept your logic. For now, I'm using EZ Bounce which, while requiring some manual labor (and a plugin mod until the coder added it himself), does what it supposed to do. And it works with 3.7.2PL2.
Peace, Gene |
This won't work accurately as many email servers out there accept all mail, process it then kick back bounces for the invalid ones. microsoft exchange works this way for example, may Lotus Notes as well.
so just because a helo passes does not mean it is valid address, the seperate pop account is probably more accurate. TooTall52 Quote:
|
Quote:
|
Quote:
Instead you could have levels of verification. I'm assuming you're using the mail function to just blindly send the message along. Instead you could use sockets and make a connection to the mail server, try and send the message and if it doesn't go through then you don't need to generate an email. Otherwise you can just send the mail and process the bounce message. Also, you don't really need to use a POP Account. For linux users you could use a .forward file that pipes the mail to a script. Usually shared hosting providers have a mailbox setup on the local machine for each account, or for big boards that run VIPS or have a Dedicated Server. Quote:
If the MTA accepts the message, and generates a bounce back afterwards. Spammers could use a forged from address, and now your server is spamming. Bad. In any case, if you're making a add-on that is going to change or improve the vBulletin mail portion then you should consider all the factors in making it secure and not server intensive. You must understand that I'm only discussing this with you as general feedback. I praise anyone that provides modules for free to the vbulletin community and I thank you for your effort. |
it work on my forum but is nto moving members also from time to time when cron run i get a white page on forum home with info how many email are in bounce@mydomain.com
|
Great mod. I have a question...when the users register...is there a way to edit the registration text to let users know if they do not put a valid email address they will not receive the code to activate their account? I have a LOT of kids registering on my site using fake email addresses and am having to manually bounce the users with vbounce. Even if this mod automatically does it I'd like to know how to edit the registration text to let them know.
|
Any ETA for next version?
|
I am getting a message - 3 POP3 server greeting was not found When I test the pop connection. I am using gmail have pop turned on and am using the correct port?
Any ideas what this means? EDIT - Needed POP Secure Connection set to ON |
Hi
Great mod! It seems to be working, well partly at least. It's appending the id's, logging in and retrieving the bounces, but at which point does it move the members to a different usergroup? (I have created a new group for that.) Dirk |
Quote:
|
So has this mod died? It would seem a shame if it has because it appears that there are only minor bugs (if you can call not moving the members to the correct group minor :rofl: )
|
It didn't die. I just have no time to continue the development. I've already started the beta 2.
If I have two projects, paid and non-paid. I would choose to work on the paid one for sure. This mod doesn't get the support it needs, as members here refuse to post a back link to my website, and on the other side they ask for product improvements. I'm kind of disappointed by the community response. So, this mod need to be sponsored by someone, as it's not on top of my priority list. Regards |
All times are GMT. The time now is 01:34 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|