Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > HTML
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 2:01 PM   #21
Blindsya
 
Blindsya's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default E-mail address on webpage

"Rob McAninch" <rob_13@excite.com> wrote in message
news:Xns93ABB0B5F278Frock13com@24.48.107.53...
> Jukka K. Korpela
> <news:Xns93A3CEDC9CE34jkorpelacstutfi@193.229.0.31 >:
>
> > "Freeserve" <thaynes@herfarm.freeserve.co.uk> wrote:
> >
> >> What about if your mail to link is a picture??? Does this
> >> fool the spam bots?

> >
> > Well, it surely discriminates against blind people.

>
> If you indeed intend it to be a mailto: link then you have to put
> the address in there.
>
> > I recently read an estimate (in a newspaper article that
> > _favored_ munging E-mail addresses) that an average user gets
> > 6 or 7 spam messages daily. So it takes a few seconds a day to
> > delete the spam. All those attempts to "fight against spam" by
> > intentionally forging addresses surely cause more trouble than
> > that.

>
> I probably get around 50 between two accounts each day - still
> doesn't take long to delete them.
>
> --
> Rob - http://rock13.com/
> Web Stuff: http://rock13.com/webhelp/


I don't know if you can do this but is it possible to show the alternative
text in the code and have the code refer to the actual email address in a
css file?


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 07-01-2007, 2:02 PM   #22
andy johnson
 
andy johnson's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default E-mail address on webpage

Try this:

<!-- Spam Buster
Many "Email-Harvesting" programs steal email accounts from mailto:
tags in your
web page html source. Using this method will prevent these programs
from
stealing your email address, simply change the username and domainname
to
your email address username and domain name.
-->

<SCRIPT LANGUAGE="Javascript">
// Change User Name and Domain Name
username="yourname"
at="@"
domainname="emailserver.com"
document.write("<A
HREF='mailto:"+username+""+at+""+domainname+"'>"+u sername+""+at+""+domainname+"</a>")
</script>

Andy


On 1 Jul 2003 20:31:35 -0700, kathleencoyne781@aol.com (Kathleen
Coyne) wrote:

>I just read through the thread, and I have a few thoughts.
>
>On the account that I used for years and years, I now end up with
>around 100 spam a day. Obviously, I had to stop using that e-mail.
>No matter what I did, I could not get the spam to stop. Filtering
>just didn't work - it just kept coming and coming. This, of course,
>still causes strife because, since I used the address for years and
>years, people still e-mail me there. So, I must still occasionally
>sift through all that goddamn friggen spam. It really amazes me how
>some people can e-mail me on the correct address one day... and the
>very next day e-mail me at my old address. Brain fart or something?
>
>My website e-mail gets about 2 spam a month. My "info@domain.com"
>address gets spammed all the time.
>
>I also may have come up with a decent and easy way to "hide" an e-mail
>address.
>
>I use a javascript trick to remove common markup and make it easier to
>change multiple pages -
>
><script language="javascript" type="text/javascript"
>src="filename.js"></script>
>
>and in filename.js I write:
>
>document.write('text HTML blah blah blah')
>
>I have noticed that in doing this, that robots can't crawl the
>javascript (to fix the linking problem, I have put a link to a site
>map on the main page). Assuming that harvesting robots would work the
>same as search engine robots - then the harvesting robots will never
>be able to see the e-mail address if you put it in filename.js
>
>So... what you could theoretically do is have this where you want your
>e-mail:
>
><script language="javascript" type="text/javascript"
>src="email.js"></script>
>
>and put this in the email.js file:
>
>document.write('<a href="mailto:me@domain.com">me@domain.com</a>')
>
>and it would work... right? maybe?
>
>Just an idea. Thought I'd throw it out there. I think I may just try
>it now. Actually, I currently have my address as me(@)domain.com
>'cause I figured anyone with any brain cells would realize to remove
>the "( )" - but I think this javascript trick might just be better



"There would be a lot more civility in this world if people
didn't take that as an invitation to walk all over you"
- (Calvin and Hobbes)
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:02 PM   #23
David Graham
 
David Graham's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default E-mail address on webpage


"Mr. Clean" <mrclean@protctorandgamble.com> wrote in message
news:MPG.196ca83f2f004b849899e6@news-server.austin.rr.com...
> <SNIP>
>
> > <script language="javascript" type="text/javascript"
> > src="email.js"></script>
> >
> > and put this in the email.js file:
> >
> > document.write('<a href="mailto:me@domain.com">me@domain.com</a>')
> >
> > and it would work... right? maybe?
> >
> > Just an idea. Thought I'd throw it out there. I think I may just try
> > it now. Actually, I currently have my address as me(@)domain.com
> > 'cause I figured anyone with any brain cells would realize to remove
> > the "( )" - but I think this javascript trick might just be better

>
> While I hadn't though of doing it this way, I do have a PHP script
> that essentially does the same thing to keep harvesters from getting
> the emails on my site. If you want it, I'll post it here.
>

I would like to see your php please
thanks
David


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:03 PM   #24
Mark Parnell
 
Mark Parnell's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default E-mail address on webpage

Kathleen Coyne wrote:
>
> I use a javascript trick to remove common markup and make it easier to
> change multiple pages -
>

<snip>
> <script language="javascript" type="text/javascript"
> src="email.js"></script>
>
> and put this in the email.js file:
>
> document.write('<a href="mailto:me@domain.com">me@domain.com</a>')
>


You own domain.com? I'm impressed ;-)

> and it would work... right? maybe?
>


Only for users who actually have JavaScript enabled. And (in theory, at
least) if the browser can read it, then so can a spambot. There may not be
many of them around at the moment that can read JS, but they will come. A
better solution is to use a form that is submitted using a server-side
script. The only downfall with that is that some users will prefer to send
you email rather than filling in an online form. Ultimately, you either
need to cater to those users, and risk getting lots of spam, or not publish
your email address, and risk losing business from those users.

--

Mark Parnell
http://www.clarkecomputers.com.au


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:04 PM   #25
Ben
 
Ben's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default E-mail address on webpage

Mark Parnell wrote:
> Only for users who actually have JavaScript enabled. And (in theory, at
> least) if the browser can read it, then so can a spambot. There may not be
> many of them around at the moment that can read JS, but they will come. A
> better solution is to use a form that is submitted using a server-side
> script. The only downfall with that is that some users will prefer to send
> you email rather than filling in an online form. Ultimately, you either
> need to cater to those users, and risk getting lots of spam, or not publish
> your email address, and risk losing business from those users.


Stick the email address as an image clickable to a form. Best of both
and no java.

Ben



--
BTW. I can be contacted at Username:newsgroup4.replies.benaltw
Domain:xoxy.net

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 07-01-2007, 2:05 PM   #26
Mr. Clean
 
Mr. Clean's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default E-mail address on webpage

In article <be17jp$3kh7$1@ID-121117.news.dfncis.de>, ben_altman@deadspam.com
says...
> Mark Parnell wrote:
> > Only for users who actually have JavaScript enabled. And (in theory, at
> > least) if the browser can read it, then so can a spambot. There may not be
> > many of them around at the moment that can read JS, but they will come. A
> > better solution is to use a form that is submitted using a server-side
> > script. The only downfall with that is that some users will prefer to send
> > you email rather than filling in an online form. Ultimately, you either
> > need to cater to those users, and risk getting lots of spam, or not publish
> > your email address, and risk losing business from those users.

>
> Stick the email address as an image clickable to a form. Best of both
> and no java.
>


Not Bobby compilant...
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: , ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
I need to determine when a webpage that I'm browsing to was last updated. Jeff Ingram Windows 1 06-11-2007 5:23 PM
change e-mail address conductivity Google questions 0 05-28-2007 1:46 AM
Mail Factory - specify different MAIL FROM address to the From header Ben Wylie Pear 3 05-20-2007 6:34 PM
Webpage script problem. eric Website Coding 1 08-04-2006 8:15 PM


Featured Websites




All times are GMT +1. The time now is 12:25 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98