Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in D:\Websites\rave.ca\website\include\functions\visitors.php on line 5

Warning: Cannot modify header information - headers already sent by (output started at D:\Websites\rave.ca\website\include\functions\visitors.php:5) in D:\Websites\rave.ca\website\index.php on line 546

Warning: Cannot modify header information - headers already sent by (output started at D:\Websites\rave.ca\website\include\functions\visitors.php:5) in D:\Websites\rave.ca\website\index.php on line 547

Warning: Cannot modify header information - headers already sent by (output started at D:\Websites\rave.ca\website\include\functions\visitors.php:5) in D:\Websites\rave.ca\website\index.php on line 548

Warning: Cannot modify header information - headers already sent by (output started at D:\Websites\rave.ca\website\include\functions\visitors.php:5) in D:\Websites\rave.ca\website\include\functions\general.php on line 414
Email Validation - Page 1 - Rave.ca
Rave Radio: Offline (0/0)
Correo electrónico: Contraseña:
Anonymous
Nueva cuenta
¿Olvidaste tu contraseña?
Usted necesita una cuenta a fin de usar esta opción.
Page: 1 2 3 Next »»Rating: Unrated [0]
Email Validation
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 12:46am
nuclear
Coolness: 2604050
I been working on the email validation script all day. Some people have gotten to test it out and more will come later... Please give me feedback on if it worked or if more work is still needed.
Good [+1]Toggle ReplyLink» Screwhead replied on Mon May 26, 2003 @ 12:56am
screwhead
Coolness: 685655
It worked.
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 12:59am
nuclear
Coolness: 2604050
Damn... I been working all day on it... I hope there are not still bugs... A few times (I don't know why) my email address ended up blank!!!
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 1:02am
neoform
Coolness: 339730
that was actually pretty annoying..

why'd you require that?

just use an email validity script..

like mine:

 
function checkMail($Email) {
global $HTTP_HOST;
if (!eregi("^[_a-z0-9-]+(.[_a-z0-9-]+)*@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,3})$", $Email)) {
return false;
}
list ( $Username, $Domain ) = split ("@",$Email);

if ( checkdnsrr ( $Domain, "MX" ) ) {
$ConnectAddress = $MXHost[0];
} else {
$ConnectAddress = $Domain;
}

$Connect = fsockopen ( $ConnectAddress, 25 );

// Success in socket connection
if ($Connect) {
if ( ereg ( "^220", $Out = fgets ( $Connect, 1024 ) ) ) {
// Inform client's reaching to server who connect.
fputs ( $Connect, "HELO $HTTP_HOSTrn" );
$Out = fgets ( $Connect, 1024 ); // Receive server's answering cord.
// Inform sender's address to server.
fputs ( $Connect, "MAIL FROM: rn" );
$From = fgets ( $Connect, 1024 ); // Receive server's answering cord.
// Inform listener's address to server.
fputs ( $Connect, "RCPT TO: rn" );
$To = fgets ( $Connect, 1024 ); // Receive server's answering cord.
// Finish connection.
fputs ( $Connect, "QUITrn");
fclose($Connect);

if ( !ereg ( "^250", $From ) || !ereg ( "^250", $To )) {

return false;
}

}

} else {

return false;
}

return true;
}
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 1:07am
nuclear
Coolness: 2604050
This does not prove that the email belongs to that user...
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 1:22am
neoform
Coolness: 339730
why would you need to do that?

just so you can be sure that you can spam them?

i use this script so i can check if a user entered a real email address..

that way they cannot easily make a fake account without knowing another email address that's not in the db..
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 1:23am
nuclear
Coolness: 2604050
Yes I like to spam but I won't let anyone else spam becides me with your data... It helps keep people aware of new Renegade Legion parties and since this is the Renegade Legion website, I believe it's only fair for me to advertize through email also... Nothing more then a reminder of a coming party...
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 1:26am
neoform
Coolness: 339730
eh.. i dunno..

there should be an option not to get emails..

this is why i use my hotmail account for anything web-based.. cause i can never trust a website to use my email address properly..

this isn't meant to be mean here, but i find this to be somewhat annoying..
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 1:28am
nuclear
Coolness: 2604050
ravewave does not post your email address anywhere on the site and the only spam you will be getting is from parties happening... i will never sell your emails to anyone either... i made sure no one will see them...
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 1:31am
neoform
Coolness: 339730
wtv..

i'd still like to see an option to not get any emails for whatever reason..

anyone who visits ravewave more then once ever two months probably saw the link at the top of this page serveral times already.. why email them too? that's spam.. and redundant advertizing..
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 1:34am
nuclear
Coolness: 2604050
For the people who don't login every day... Some people only login once every month... This way they have an email... Business is business... I put a lot of time into this site, I wanna made sure my data is up to date...
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 1:39am
neoform
Coolness: 339730
i understand you put a lot of time into the site, but that still doesn't mean you should send emails to people without asking them..

that is the basis of spam isn't it?

email that's sent out without the accountholders permission?
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 1:42am
nuclear
Coolness: 2604050
If you creat an account anywhere you allow them to use your email address... The only thing on the major sites which you are guaranteed is they will not sell your information... people pay big $$$ for valid email addresses which are targeted to a certain type of people... I won't do that...
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 1:42am
nuclear
Coolness: 2604050
BTW: I fixed the disapearing email problem...
Good [+1]Toggle ReplyLink» nothingnopenope replied on Mon May 26, 2003 @ 1:43am
nothingnopenope
Coolness: 201290
I think it might be redundant because the people you want to hit with spam are the ones who do not visit the site often. If someone took the time to make a user account they probably come back once in a while. If someone just came to the site to see the calender they probably didn't make a user account.

Neoform: If you don't like the spam then don't come to the site! What would you spend all those long hours doing if there was no message board on ravewave. It's because of noah's long hours of coding that you have something to do everyday :-)
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 1:46am
neoform
Coolness: 339730
so basically it's.. "get spam, or don't come here.." ?
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 1:52am
neoform
Coolness: 339730
if those really are the only options, then i can say with all honesty that i know exactly what i'd do.
Good [+1]Toggle ReplyLink» nothingnopenope replied on Mon May 26, 2003 @ 2:14am
nothingnopenope
Coolness: 201290
yeah fight the power!

errr...

I mean who cares
Good [+1]Toggle ReplyLink» neoform replied on Mon May 26, 2003 @ 2:18am
neoform
Coolness: 339730
please do not mock my dislike for spam.

spam will be the downfall of email.
Good [+1]Toggle ReplyLink» Nuclear replied on Mon May 26, 2003 @ 2:21am
nuclear
Coolness: 2604050
Use spam removers...
Email Validation
Page: 1 2 3 Next »»
Post A Reply
You must be logged in to post a reply.