Activity Stream
48,167 MEMBERS
6826 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1.     
    #1
    Member

    Default Is there a SMTP server without authentication?

    Hi,
    I need a SMTP server without authentication, it would be appreciated if you guys help me.
    m107 Reviewed by m107 on . Is there a SMTP server without authentication? Hi, I need a SMTP server without authentication, it would be appreciated if you guys help me. :) Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Respected Developer
    I doubt you'll find one. And if you do all mail from it will most likely be marked as spam. Actually there are lots of open SMTP servers out there but most of them are from ISP's and to use them your IP must be in their range.

  4.     
    #3
    Member
    Sure, its obvious most of them will end up in spam folder, but I need it for my own usage in yawn script, so I can filter them to my inbox. I don't want to use my server as mail server.

    and thank you for your answer

  5.     
    #4
    Member
    Website's:
    CodeSociety.net
    yea they are tightly monitored due to spamming attemps but im sure u can purchase one, OR just google for free ones and see wat u find



  6.     
    #5
    Member
    Quote Originally Posted by immortalxx View Post
    yea they are tightly monitored due to spamming attemps but im sure u can purchase one, OR just google for free ones and see wat u find
    I did search for that, buy nothing great

  7.     
    #6
    mmm mmm!
    HATERS GONNA probably bring up some valid points considering I am an ignorant little twat so far up my own ass that i blame my problems on everyone and if you criticize me you're automatically wrong.

  8.     
    #7
    Banned
    Website's:
    hackersindex.com internet4cash.com
    There used to be a lot. However, tons of bulk email scams flagged its disadvantage and now its rare even if you are not planning any illegal activity.

  9.     
    #8
    Member
    with a simple scan few year ago you would've found a lot of open smtp server. but now I don't think you find even one open smtp.
    make your own smtp server and spam form there (that why you need it probably).

  10.     
    #9
    Member
    Quote Originally Posted by m107 View Post
    Sure, its obvious most of them will end up in spam folder, but I need it for my own usage in yawn script, so I can filter them to my inbox. I don't want to use my server as mail server.

    and thank you for your answer

    Cant you change the script to use smtp?

    something like add a function to the end of index.php

    Code: 
    function leechmail($email_completed, $name, $post) {
     $from = "AutoUploader";
     
     $host = "mail.example.com";
     $username = "smtp_username";
     $password = "smtp_password";
     
     $headers = array ('From' => $from,
       'To' => $email_complete,
       'Subject' => $name);
     $smtp = Mail::factory('smtp',
       array ('host' => $host,
         'auth' => true,
         'username' => $username,
         'password' => $password));
     
     $mail = $smtp->send($to, $headers, $post);
    }

    Code: 
    and change
                     mail($email_completed, $name, $post);
    to
                     leechmail($email_completed, $name, $post);

    I havent tested it though its from about.com

  11.     
    #10
    Member
    thank you dear Gav0, I will test it asap.

    best wishes

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Unable to connect to outgoing SMTP email server
    By Areon in forum Server Management
    Replies: 0
    Last Post: 26th Feb 2014, 11:39 AM
  2. Own SMTP Server... How?
    By chrsmrtn81 in forum Webmaster Discussion
    Replies: 2
    Last Post: 2nd Oct 2012, 08:38 AM
  3. How to Prevent the IIS SMTP Virtual Server from Relaying E-mail Messages
    By Albert.Nawaro in forum Tutorials and Guides
    Replies: 0
    Last Post: 9th Feb 2012, 10:54 AM
  4. Replies: 4
    Last Post: 1st Feb 2012, 01:19 AM
  5. SMTP Server
    By Algore in forum Server Management
    Replies: 4
    Last Post: 23rd Mar 2010, 03:56 PM

Tags for this Thread

BE SOCIAL