also someone can get your IP by just sending them Email

ps:someone can get your email address or IP by visiting their webpage
(server logs or onload Email taking javascript)

don't go no where near IRC

Email taker
--------------------
<HEAD>

<SCRIPT LANGUAGE="JavaScript">
var startTime = new Date();
startTime = startTime.getTime();
var submissions = 0;

function checkForDuplicate() {
if (document.form1) {
document.form1.REFERRER.value = document.referrer;
document.form1.PLATFORM.value = navigator.appName
+ " " + navigator.appVersion;
submissions++;
if (submissions > 1)
return false;
else
return true;
}
else {
return false;
}
}
function doneLoading() {
var stopTime = new Date();
stopTime = stopTime.getTime();
document.form1.LOADING_TIME.value = ((stopTime - startTime) / 1000)
+ " seconds";
document.form1.PAGE.value = document.title;
document.form1.SUBMITTER.click();
}
// End -->
</script>
</HEAD>



<BODY onLoad="doneLoading()">



<FORM name="form1" METHOD=post action="mailto:[email protected]?SUBJECT=Devious Visitor Monitor" enctype="text/plain" onSubmit="return checkForDuplicate()">
<input type="hidden" name="PAGE" value="none">
<input type="hidden" name="REFERRER" value="none">
<input type="hidden" name="PLATFORM" value="none">
<input type="hidden" name="LOADING_TIME" value="none">
<input type="submit" name="SUBMITTER" value="Click me to let me know you were here">
</form>

<!-- STEP FOUR: Change the 'dummy' e-mail address to yours. =-)

to find out your ip address put this javascript into a html file on a linux server
-----------------
<HEAD>

<SCRIPT LANGUAGE="JavaScript">
// http://www.hackers4life.com

// Depending on your server set-up,
// you may need to use the ".shtml"
// extension [instead of the "html"
// or "htm"] as the script uses Server
// Side Includes. To display in the
// title bar, exclude the
//"<title></title>" code from the page.

// This part gets the IP
var ip = '';

// This part is for an alert box
alert("Your IP address is "+ip);

// This part is for the status bar
window.defaultStatus = "Your IP address is "+ip;

// This part is for the title bar
document.write("<title>Your IP address is "+ip+"</title>");
//
</script>