This must be an issue from time immemorial - well as far back as the
original web pages of the last century.
But what are the best ways to stop email addresses being harvested -
and therefore sold for spamming - from: 1/ the text of a web page, and
2/ the source HTML.
This was 'solved' in a rather inelegant fashion as per this page:
http://home.clear.net.nz/pages/geoff.rodliffe - then click on 'Author'
That is with the use of " AT " in place of the usual "@"
But this is a fudge.
I found one web site with another idea at:
http://www.redalkemi.com/contactus.php
Here they have replaced the page text with a small graphic displaying
the email address. The link behind this is to the actual email
address. But this would not stop the harvesting of the addresses from
the HTML source.
So does anyone have any other solutions please?
CJB.
|
|
0
|
|
|
|
Reply
|
CJB
|
6/6/2010 10:57:45 AM |
|
Best method: Don't display the email address in the page - use a contact form in the site, with server side anti-spam measures (Captcha, recaptcha or other methods) and the sendto address added by the server side script - reqiores asp, asp.NET, PHP etc.
Alternative: Use javascript to write the email address to the page:
<script type="text/javascript">
var user = "someuser";
var domain = "example";
document.write("<p>Email: <a href=\"mailto:" + user + chr(64) + domain + ".com" + "</p>")
</script>
Most webots have javascript disabled, so they will see nothing - caveat: users with javascript disabled will also not see an email address.
--
Ron Symonds - Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp/wf-menu.aspx
Microsoft is closing this newsgroup - for details of why and where to go see
http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
CJB explained on 06/06/2010 :
> This must be an issue from time immemorial -
> well as far back as the original web pages of
> the last century.
> But what are the best ways to stop email
> addresses being harvested - and therefore sold
> for spamming - from: 1/ the text of a web page,
> and 2/ the source HTML.
> This was 'solved' in a rather inelegant fashion
> as per this page:
> http://home.clear.net.nz/pages/geoff.rodliffe -
> then click on 'Author'
> That is with the use of " AT " in place of the
> usual "@"
> But this is a fudge.
> I found one web site with another idea at:
> http://www.redalkemi.com/contactus.php
> Here they have replaced the page text with a
> small graphic displaying the email address. The
> link behind this is to the actual email
> address. But this would not stop the harvesting
> of the addresses from the HTML source.
> So does anyone have any other solutions please?
> CJB.
--
Ron Symonds - Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp/wf-menu.aspx
Microsoft is closing this newsgroup - for details
of why and where to go see
http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
|
|
0
|
|
|
|
Reply
|
Ronx
|
6/6/2010 11:13:35 AM
|
|
Chris Pirillo recommended Email scrambler in his latest newsletter:
http://chris.pirillo.com/scramble-your-email-address-to-avoid-spam/
http://www.pagetutor.com/scrambler/index.html
--
~ Kathleen Anderson
Microsoft MVP - Expression Web
Spider Web Woman Designs
Expression Web Resources: http://www.spiderwebwoman.com/xweb/
Expression Web Wiki: http://expression-web-wiki.com/
FrontPage Resources: http://www.spiderwebwoman.com/resources/
Please reply to the newsgroup for the benefit of others
"Ronx" <ronx917@hotmail.com> wrote in message
news:hufvth$qt3$1@news.eternal-september.org...
> Best method: Don't display the email address in the page - use a contact
> form in the site, with server side anti-spam measures (Captcha, recaptcha
> or other methods) and the sendto address added by the server side script -
> reqiores asp, asp.NET, PHP etc.
>
> Alternative: Use javascript to write the email address to the page:
>
> <script type="text/javascript">
> var user = "someuser";
> var domain = "example";
> document.write("<p>Email: <a href=\"mailto:" + user + chr(64) + domain +
> ".com" + "</p>")
> </script>
>
> Most webots have javascript disabled, so they will see nothing - caveat:
> users with javascript disabled will also not see an email address.
>
> --
> Ron Symonds - Microsoft MVP (Expression Web)
> http://www.rxs-enterprises.org/fp/wf-menu.aspx
> Microsoft is closing this newsgroup - for details of why and where to go
> see
> http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
>
>
> CJB explained on 06/06/2010 :
>> This must be an issue from time immemorial -
>> well as far back as the original web pages of
>> the last century.
>
>> But what are the best ways to stop email
>> addresses being harvested - and therefore sold
>> for spamming - from: 1/ the text of a web page,
>> and 2/ the source HTML.
>
>> This was 'solved' in a rather inelegant fashion
>> as per this page:
>
>> http://home.clear.net.nz/pages/geoff.rodliffe -
>> then click on 'Author'
>
>> That is with the use of " AT " in place of the
>> usual "@"
>
>> But this is a fudge.
>
>> I found one web site with another idea at:
>
>> http://www.redalkemi.com/contactus.php
>
>> Here they have replaced the page text with a
>> small graphic displaying the email address. The
>> link behind this is to the actual email
>> address. But this would not stop the harvesting
>> of the addresses from the HTML source.
>
>> So does anyone have any other solutions please?
>
>> CJB.
>
> --
> Ron Symonds - Microsoft MVP (Expression Web)
> http://www.rxs-enterprises.org/fp/wf-menu.aspx
> Microsoft is closing this newsgroup - for details
> of why and where to go see
> http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
>
>
|
|
0
|
|
|
|
Reply
|
Kathleen
|
6/6/2010 1:45:24 PM
|
|
On Jun 6, 12:13=A0pm, Ronx <ronx...@hotmail.com> wrote:
> Best method: =A0Don't display the email address in the page - use a conta=
ct form in the site, with server side anti-spam measures (Captcha, recaptch=
a or other methods) and the sendto address added by the server side script =
- reqiores asp, asp.NET, PHP etc.
>
> Alternative: Use javascript to write the email address to the page:
>
> <script type=3D"text/javascript">
> var user =3D "someuser";
> var domain =3D "example";
> document.write("<p>Email: <a href=3D\"mailto:" + user + chr(64) + domain =
+ ".com" + "</p>")
> </script>
>
> Most webots have javascript disabled, so they will see nothing - caveat: =
users with javascript disabled will also not see an email address.
>
> --
> Ron Symonds - Microsoft MVP (Expression Web)http://www.rxs-enterprises.or=
g/fp/wf-menu.aspx
> Microsoft is closing this newsgroup - for details of why and where to go =
seehttp://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
>
> CJB explained on 06/06/2010 :
>
>
>
>
>
> > This must be an issue from time immemorial -
> > well as far back as the original web pages of
> > the last century.
> > But what are the best ways to stop email
> > addresses being harvested - and therefore sold
> > for spamming - from: 1/ the text of a web page,
> > and 2/ the source HTML.
> > This was 'solved' in a rather inelegant fashion
> > as per this page:
> >http://home.clear.net.nz/pages/geoff.rodliffe-
> > then click on 'Author'
> > That is with the use of " AT " in place of the
> > usual "@"
> > But this is a fudge.
> > I found one web site with another idea at:
> >http://www.redalkemi.com/contactus.php
> > Here they have replaced the page text with a
> > small graphic displaying the email address. The
> > link behind this is to the actual email
> > address. But this would not stop the harvesting
> > of the addresses from the HTML source.
> > So does anyone have any other solutions please?
> > CJB.
>
> --
> Ron Symonds - Microsoft MVP (Expression Web)http://www.rxs-enterprises.or=
g/fp/wf-menu.aspx
> Microsoft is closing this newsgroup - for details
> of why and where to go seehttp://www.rxs-enterprises.org/fp/newsgroup-clo=
sure.aspx- Hide quoted text -
>
> - Show quoted text -
Excellent - now is there a way of detecting whether a user has
Javascript enabled (hmm - but I'd also need to detect the browser
being used I guess!!). Then if so I could code something like:
If Javascript enabled then show this, otherwise then show that - kind
of thing.
Chris B.
|
|
0
|
|
|
|
Reply
|
CJB
|
6/6/2010 1:57:33 PM
|
|
On Jun 6, 2:45=A0pm, "Kathleen Anderson" <kander...@remove.mvps.org>
wrote:
> Chris Pirillo recommended Email scrambler in his latest newsletter:http:/=
/chris.pirillo.com/scramble-your-email-address-to-avoid-spam/
>
> http://www.pagetutor.com/scrambler/index.html
>
> --
>
> ~ Kathleen Anderson
> Microsoft MVP - Expression Web
> Spider Web Woman Designs
> Expression Web Resources:http://www.spiderwebwoman.com/xweb/
> Expression Web Wiki:http://expression-web-wiki.com/
> FrontPage Resources:http://www.spiderwebwoman.com/resources/
> Please reply to the newsgroup for the benefit of others
>
> "Ronx" <ronx...@hotmail.com> wrote in message
>
> news:hufvth$qt3$1@news.eternal-september.org...
>
>
>
> > Best method: =A0Don't display the email address in the page - use a con=
tact
> > form in the site, with server side anti-spam measures (Captcha, recaptc=
ha
> > or other methods) and the sendto address added by the server side scrip=
t -
> > reqiores asp, asp.NET, PHP etc.
>
> > Alternative: Use javascript to write the email address to the page:
>
> > <script type=3D"text/javascript">
> > var user =3D "someuser";
> > var domain =3D "example";
> > document.write("<p>Email: <a href=3D\"mailto:" + user + chr(64) + domai=
n +
> > ".com" + "</p>")
> > </script>
>
> > Most webots have javascript disabled, so they will see nothing - caveat=
:
> > users with javascript disabled will also not see an email address.
>
> > --
> > Ron Symonds - Microsoft MVP (Expression Web)
> >http://www.rxs-enterprises.org/fp/wf-menu.aspx
> > Microsoft is closing this newsgroup - for details of why and where to g=
o
> > see
> >http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
>
> > CJB explained on 06/06/2010 :
> >> This must be an issue from time immemorial -
> >> well as far back as the original web pages of
> >> the last century.
>
> >> But what are the best ways to stop email
> >> addresses being harvested - and therefore sold
> >> for spamming - from: 1/ the text of a web page,
> >> and 2/ the source HTML.
>
> >> This was 'solved' in a rather inelegant fashion
> >> as per this page:
>
> >>http://home.clear.net.nz/pages/geoff.rodliffe-
> >> then click on 'Author'
>
> >> That is with the use of " AT " in place of the
> >> usual "@"
>
> >> But this is a fudge.
>
> >> I found one web site with another idea at:
>
> >>http://www.redalkemi.com/contactus.php
>
> >> Here they have replaced the page text with a
> >> small graphic displaying the email address. The
> >> link behind this is to the actual email
> >> address. But this would not stop the harvesting
> >> of the addresses from the HTML source.
>
> >> So does anyone have any other solutions please?
>
> >> CJB.
>
> > --
> > Ron Symonds - Microsoft MVP (Expression Web)
> >http://www.rxs-enterprises.org/fp/wf-menu.aspx
> > Microsoft is closing this newsgroup - for details
> > of why and where to go see
> >http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx- Hide quoted te=
xt -
>
> - Show quoted text -
Hmm - scrambled email addresses. I'll research those. Thank you.
Chris B.
|
|
0
|
|
|
|
Reply
|
CJB
|
6/6/2010 1:58:33 PM
|
|
Detect the browser being used? Why? You can disable javascript in any browser - and some people do.
Use something like:
<script type="text/javascript">
//script goes here
</script>
<noscript>Something for Javascript disabled browsers</noscript>
The <noscript> content only renders if Javascript is not available
--
Ron Symonds - Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp/wf-menu.aspx
Microsoft is closing this newsgroup - for details of why and where to go see
http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
It happens that CJB formulated :
> On Jun 6, 12:13�pm, Ronx <ronx...@hotmail.com>
> wrote:
>> Best method: �Don't display the email address
>> in the page - use a contact form in the site,
>> with server side anti-spam measures (Captcha,
>> recaptcha or other methods) and the sendto
>> address added by the server side script -
>> reqiores asp, asp.NET, PHP etc.
>>
>> Alternative: Use javascript to write the email
>> address to the page:
>>
>> <script type="text/javascript">
>> var user = "someuser";
>> var domain = "example";
>> document.write("<p>Email: <a href=\"mailto:" +
>> user + chr(64) + domain + ".com" + "</p>")
>> </script>
>>
>> Most webots have javascript disabled, so they
>> will see nothing - caveat: users with
>> javascript disabled will also not see an email
>> address.
>>
>> --
>> Ron Symonds - Microsoft MVP (Expression
>> Web)http://www.rxs-enterprises.org/fp/wf-menu.aspx
>> Microsoft is closing this newsgroup - for
>> details of why and where to go
>> seehttp://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
>>
>> CJB explained on 06/06/2010 :
>>
>>
>>
>>
>>
>>> This must be an issue from time immemorial -
>>> well as far back as the original web pages of
>>> the last century.
>>> But what are the best ways to stop email
>>> addresses being harvested - and therefore
>>> sold for spamming - from: 1/ the text of a
>>> web page, and 2/ the source HTML.
>>> This was 'solved' in a rather inelegant
>>> fashion as per this page:
>>> http://home.clear.net.nz/pages/geoff.rodliffe-
>>> then click on 'Author'
>>> That is with the use of " AT " in place of
>>> the usual "@"
>>> But this is a fudge.
>>> I found one web site with another idea at:
>>> http://www.redalkemi.com/contactus.php
>>> Here they have replaced the page text with a
>>> small graphic displaying the email address.
>>> The link behind this is to the actual email
>>> address. But this would not stop the
>>> harvesting of the addresses from the HTML
>>> source. So does anyone have any other
>>> solutions please? CJB.
>>
>> --
>> Ron Symonds - Microsoft MVP (Expression
>> Web)http://www.rxs-enterprises.org/fp/wf-menu.aspx
>> Microsoft is closing this newsgroup - for
>> details of why and where to go
>> seehttp://www.rxs-enterprises.org/fp/newsgroup-closure.aspx-
>> Hide quoted text -
>>
>> - Show quoted text -
> Excellent - now is there a way of detecting
> whether a user has Javascript enabled (hmm -
> but I'd also need to detect the browser being
> used I guess!!). Then if so I could code
> something like:
> If Javascript enabled then show this, otherwise
> then show that - kind of thing.
> Chris B.
--
Ron Symonds - Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp/wf-menu.aspx
Microsoft is closing this newsgroup - for details
of why and where to go see
http://www.rxs-enterprises.org/fp/newsgroup-closure.aspx
|
|
0
|
|
|
|
Reply
|
Ronx
|
6/6/2010 2:05:20 PM
|
|
On Sun, 6 Jun 2010 03:57:45 -0700 (PDT), CJB <chrisjbrady@gmail.com>
wrote:
>So does anyone have any other solutions please?
I use two valid email addresses with all my web addresses redirected
to both. Both the email hosts and my email client have excellent junk
filtering. The end result is that my valid messages arrive in pairs.
Anything else is junk!
Steve
--
Neural Planner Software Ltd www.NPSL1.com
EasyNN-plus. Neural Networks plus. www.easynn.com
SwingNN. Forecast with Neural Networks. www.swingnn.com
JustNN. Just Neural Networks. www.justnn.com
|
|
0
|
|
|
|
Reply
|
Stephen
|
6/6/2010 2:14:23 PM
|
|
I use Javascript to display the email address and just a picture (no
link from the picture) if Javascript is disabled. It's not perfect
but is good enough for me, an amateur web writer.
www.richardfisher.com
|
|
0
|
|
|
|
Reply
|
Helpful
|
6/6/2010 4:40:14 PM
|
|
|
7 Replies
320 Views
(page loaded in 3.398 seconds)
Similiar Articles: microsoft.public.frontpage.clientStopping the Harvesting of Email Addresses CJB 7 235 This must be an issue from time immemorial - well as far back as the original web pages of the last century. hacked contacts - microsoft.public.windows.live.mail.desktop ...... Thankfully my contacts deleted it.How can i stop ... clean, then there is a probability that your email address ... unless the perpetrator has used malware to harvest ... Function is not availalbe in expressions in query expression error ...Okay, when you open the database on your machine what >References are set? > >As a side note, stop using your real eMail address as the Spammers will >harvest! SSL connection - microsoft.public.windows.live.mail.desktop ...> > Fyi...never, ever post your real email address in a public newsgroup where > bots and others may harvest it for falsifying email ... non-SSL/TLS connection, and will stop ... Contacts adding without permission - microsoft.public.windows.live ...To stop it, I signed up for Live ID with a non hotmail email address. "akatwn" <user@msgroups.net ... to their contacts (though they still harvest your e-mail address). How do I sync Outlook 2007 with my Yahoo Mail account? - microsoft ...This is correct, as you can see by my email address in ... you just divulged to the spambots that harvest e-mail addresses ... Stop sync problem with Outlook 2007 1 ... Stop Email Harvesting Robots Or Bots From Harvesting Your Email ...Email harvesting robots or bots are a big problem for many web users. Learn about how you can stop these robots from harvesting your email address. Email address harvesting - Wikipedia, the free encyclopediaAnother method of email address harvesting is to offer a product or ... at a specific street address — with the address being clearly a business address including mail stop ... How to Stop Spam Harvesting With Email Obfuscation - SitePointPublishing your email address in a "mailto:" link is an open invitation for spammers. Craig provides a useful technique that stops the harvesters without ... How To Stop Email Harvesting Robots Or Bots - wandererh on HubPagesEmail harvesting robots are software programs that scans websites, forums, newsgroups and other online sources for email addresses. The email addresses will be ... Email Harvesting - Articles - Flying Cow DesignIn order to stop spammers from harvesting email addresses from your website we need to stop their spiders (or spam-bots). But how do you let people see the email address ... 7/10/2012 8:37:43 AM
|