Page 1 of 2 1 2 LastLast
Results 1 to 15 of 22

Spam emails and server delivery error emails

This is a discussion on Spam emails and server delivery error emails within the General Discussion forums, part of the vBulletin SEO Discussion category; Hello, I am getting a lot of spam emails and want to setup a noreply email instead of having my ...

  1. #1
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times

    Spam emails and server delivery error emails

    Hello,

    I am getting a lot of spam emails and want to setup a noreply email instead of having my genuine email sent to members everytime they get a topic reply email.

    I am alse getting a lot of delivery failure emails from my email server where members signup, post, then leave changing their email to dead one.

    If I change the email in the VB CP im concerned that the contact us page will no longer work as it will send the emails to a dummy email address.

    Thank you.
    Last edited by Dave Hybrid; 05-01-2007 at 05:41 PM.

  2. #2
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    3,999
    Liked
    11 times
    Dave,

    This is a setting in your AdminCP.

    From memory - AdminCP - vBulletin Options - vBulletin Options - General Settings?

    If not there, go 'Show All Settings' and do a Find for "email". Look for Webmaster Email Address or something similar.

  3. #3
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    Ok i have changed my email to a noreply@domain.com

    That has stopped the email falling into the wrong hands and also stopped the failed delivery emails from my mail server.

    Problem is the contact us page no longer works as the emails are sent to the dummy email.

    What I dont get is on this site the email is also noreply@domain.com but when you goto you contact us page the page code is the standard vBulletin so how do you get your emails?

  4. #4
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    3,999
    Liked
    11 times
    Try this mod: sendmessage creates new thread and mail forwards - vBulletin.org Forum

    It appears to both post contactus messages as a new thread, and allow you to specify additional addresses to which the email is sent.

  5. #5
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    Cheers fella!

  6. #6
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    3,999
    Liked
    11 times
    No problemo Dave, I hope it works for you.. I haven't tried it myself.

  7. #7
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    No it wont work.

    Reason being I will need the original contact us page active, which means i will get another failed delivery message because of the noreply@domian.com in the vBulletin contact email field.

    I will get the message to the address to in the new MOD cp but getting one good email and one failed delivery email defeats the point really.

    Think i need a custom contact us page coded by someone.

    If anyone is up for it PM me, can pay.

  8. #8
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    3,999
    Liked
    11 times
    It shouldn't be too hard to do.

    If you haven't had a response within the next 9 or so hours, I will take a crack when I get home.

  9. #9
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    Thank you, thats very nice of you to offer.

  10. #10
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    3,999
    Liked
    11 times
    Again, no problem.

    At a guess, it will be a simple matter of replacing $vbulletin ->option[webmasteremail] with a hardcoded address.

  11. #11
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    Yeah, the sendmessage.php page is fine to use, its just needs to goto a different email to the one coded in the VB CP.

  12. #12
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    3,999
    Liked
    11 times
    PHP Code:
    if (!empty($alt_email))
            {
                if (
    $destemail == $vbulletin->options['webmasteremail'])
                {
                    
    $ip IPADDRESS;
                }
                else
                {
                    
    $ip =& $vbphrase['n_a'];
                }
                
    $destemail =& $alt_email;
            }
            else
            {
                
    $ip IPADDRESS;
                
    $destemail =& $vbulletin->options['webmasteremail'];
            } 
    Right there, we need to define $destemail as whatever you wanted. Afraid I can't test anything, so will see if anyone knows the format off the top of their head?

  13. #13
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    Okey.

  14. #14
    Senior Member Dave Hybrid's Avatar
    Real Name
    Dave Hybrid
    Join Date
    Mar 2007
    Location
    UK
    Posts
    400
    Liked
    8 times
    Offer still stands to anyone reading - will pay for custom contact us page.

    Thanks.

  15. #15
    Senior Member
    Join Date
    Nov 2005
    Posts
    165
    Liked
    0 times
    Another option is to go to:
    Admincp >> vbulletin options >> Site name/URL/Contact Details >> Contact Us details

    In here, use the vbulletin option of defining an e-mail address to send the various options to:
    {admin@domain.com} Website Problems
    {admin@domain.com} Registration Problems
    etc.

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •