Intermedia First to Support iPhone Business Email
Leader in business email to launch first direct-push email plan for Apple iPhone.
MarketingSherpa Seeks Nominations for Email Marketing Awards: Best Email Newsletter, B-to-B Email Marketing, & Triggered Email Campaign Among Entr
MarketingSherpa is seeking nominations for its second annual Email Marketing Awards. Ten entry categories include best email newsletter, best email solo blast promotion, best triggered campaign, best opt-in (list growth) campaign, and best business-to-business email marketing. The deadline for entries is Friday Febrary 16. More info and entry forms are at: http://emailawards.marketingsherpa.com
Team of Engineers and Business Managers Select Zrinity On-Premise Email Delivery Systems.
Zrinity Inc, in Utica New York, announced today that it added another high tech, innovative, Web 2.0 firm to its list of customers. Jacobs Interactive team of engineers, developers and business managers choose Zrinity's on-premise email delivery and marketing systems.
GovDelivery Client, Somerset County, Reaches Milestone for Email Alerts
New Jersey's Somerset County uses GovDelivery's Email Subscription Service to improve communication with its residents. The county has seen an overwhelming response to the service and now has over 10,000 subscribers.
Nearly All Email Marketers Comply with 'Unsubscribe' Requirements, But Few Seize Opportunities to Reinforce Customer Relationships, Says New Survey
Marketers Still View the 'Unsubscribe' Process as Merely a Legal Obligation, Rather Than the Customer Loyalty-Building Tool it Can Be
Norman Selects Mailshell To Provide Email Reputation Data, Spam And Phishing Protection
Norman, the leading supplier of data security software, today announced its selection of Mailshell, the leading OEM provider of email reputation, anti-spam and anti-phishing technology, to provide enhanced protection from email-borne threats for Norman's full range of products.
Wadja.com Delivers Mobile Email and SMS Into Newly Launched Social Messaging Platform
Wadja.com (http://www.wadja.com) launches its new and innovative social messaging service, allowing users to deliver and receive web messages, Emails or SMS Texts on any mobile device or PC Notebook with complete control of their sending and receiving list, leading to a SPAM free messaging environment.
Datran Media and Forrester Research to Host Complimentary Webinar Series on Email Marketing Best Practices
Chief revenue officer of Datran Media, Sean O'Neal, and Forrester Research senior analyst Shar VanBoskirk will explore the current state of email marketing.
Native Mac Support - Friendly Email Groupware - Inftek Hosting Offers Small Business Alternative With Hosted Kerio Solutions
Small and medium-size businesses now have access to yet another simple solution: Kerio MailServer, an inexpensive alternative to Microsoft Exchange with native mac compatibility bridges the gap between mac and pc users.
Blackbaud Selects SocketLabs' Hurricane Server to Power Email Delivery Services
Blackbaud has selected SocketLabs' Hurricane Server to deliver its growing volume of outbound email. Hurricane Server's rich integration API, tracking and reporting have substantially reduced administrative and management costs. The increased deliverability enables Blackbaud to provide better service and ROI to its growing customer base.
Email marketing strategy for capturing your target audience.
Email marketing services, also known as autoresponder services, are a dime a dozen. There are an abundance of providers and products available and each one is pitched as the next best thing. Comparing products can be a time consuming process. Here are some tips on how to pick the right email marketing service to use when marketing your business.
Postal Service Wants 5 Cents an Email
You may have received an email about how the US Postal Service is trying to push through a bill that would allow them to charge 5 cents per email. I can understand why people would think that it's true.
Sum Effect Software, Inc. Releases Email Marketing Software
Sum Effect Software, Inc., a leading developer of web-based applications, today announced the release of fireBLAST. fireBLAST gives organizations the tools to effectively communicate via email marketing with their prospects and customers.
New Transactional Email Marketing White Paper
Zrinity begins dozens of blog posts based upon newly released, "Transactional Email Marketing White Paper."
How Opt-in Email Marketing Helps You In Your Online Business
The consumer of today is increasingly bombarded by marketing messages from various media channels. For those that tire of the constant onslaught of ads, they have the option to "opt-out".
|
 |
 |
Invasion of the Email Snatchers
They're sneaky. And stealthy. They're quiet and mostly unobtrusive, but once you've been visited by them, you'll know it. Because you'll be inundated with a seemingly never-ending stream of spam-mails. They're email harvesting robots, and chances are you've been visited by one. What these insidious creatures do is crawl your site, much like the search engine spiders do, and collect any and all email addresses they find there. Many of them crawl your entire site, following every link, gathering email addresses from your guestbook, your message boards, databases, and everywhere else they can get to. What happens next is so sinister, so unthinkable; I can barely say it. They put your email addresses on CDRom and sell them- as opt-in lists. You've seen them, "20,000 targeted email addresses for only $29.95!", or my personal favorite, "Send 10 Bazillion emails- WITHOUT SPAMMING!!". What you didn't know was that it was YOUR email address they were selling. To find out if your site has been visited by an email harvester, you only need to look at your logs. If your web host provides you with your stats, you can look in the Browser report for any of the following:
- EmailSiphon
- Crescent Internet Tool Pack v1.0
- Cherry Picker
- Email Collector
- Libwww-perl 1.0
If you don't have a stats program, you can examine your logs for visits from these agents. The easiest way to do this is to download them and open them in a program with a search function (like Wordpad). Then you can search for the names listed above. So, what can you do to protect your site from these evil robots? Unfortunately, there's no single magic solution. There are, however steps you can take to discourage them. The first thing you can do is create a Robots Exclusion file. This is simply a text file named robots.txt that you place in your root directory. What this file does is tells robots where they can and cannot go (as well as which robots can and cannot visit your site). The drawback of using this file to combat email harvesting robots is that as a rule, the robots.txt file is based on a sort of robot honor system. That is to say that you are assuming that any robot that visits will ask for and comply with the directives that you put there. Unfortunately, harvesting robots are typically ill-mannered robots that ignore this file. For more information on Robot Exclusion, visit the Robots Exclusion Standard A really fun solution is to use a cgi-script that punishes bad robots. What these do is to direct the robot to a page full of fake email addresses- lots and lots of them. So, what the spammer gets is a whole lot of bounced email messages, which will discourage them from visiting you again. The downside of this method is that they do also collect the valid email addresses. Also, most scripts of this type have a little disclaimer attached to them stating that they won't be held responsible for any legal issues that arise from the use of their script- and that has to make you wonder. There are other scripts that hide your email address from the robots, but not your site visitors. This is a great solution for smaller sites that don't have more than one or two addresses listed. You can find both types of scripts at the CGI Resource Index Another handy script is one that will check to see if a robot is friendly, and if not it will put it to sleep for say, 10,000 minutes. This will cause the robot to terminate the request and move on to another victim.
$number = $ENV{REMOTE_ADDR};
($a,$b,$c,$d)=split(/./,$number);
$ipadr=pack("C4",$a,$b,$c,$d);
($name,$aliases,$addrtype,$length,
@addrs)=(gethostbyaddr("$ipadr", 2));
if ($name =~ /foo.com/i) {
$ENV{HTTP_USER_AGENT} =~ /emailsiphon/i;
$access_denied++;
sleep(10000);
}
The last option is, in my humble opinion, the best option. If you have the ability to modify your .htaccess file, you can specify certain host agents that are not allowed to visit your site using the mod_rewrite file. This effectively blocks the offending robots from ever touching your site. You should definitely check with your hosting provider to see whether or not you can make such a modification. Most hosts will be more than happy to make the modification for you. For those of you willing and able to make the changes yourself, just add the following to your.htaccess file: RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*NEWT [OR]
RewriteCond %{HTTP_USER_AGENT} ^Crescent [OR]
RewriteCond %{HTTP_USER_AGENT} ^CherryPicker [OR]
RewriteCond %{HTTP_USER_AGENT} ^[Ww]eb[Bb]andit [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebEMailExtrac.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^NICErsPRO [OR]
RewriteCond %{HTTP_USER_AGENT} ^Telesoft [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus.*Webster [OR]
RewriteCond %{HTTP_USER_AGENT} ^Microsoft.URL [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/3.Mozilla/2.01 [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailCollector
RewriteRule ^.*$ /badspammer.html [L] While these are all effective measures to fight the Email Snatchers, there are new robots evolving every day. It's important to stay informed with the latest tools that the spammers are using. Some excellent sources of information can be found at: Search Engine World
http://searchengineworld.com/engine/denied.htm Apache Today
"Restricting Access by Host" SpiderHunter.com
http://www.spiderhunter.com/ -------------------------------- © Copyright 2001 Sharon Davis. When she is not waging war on spammers, she is the owner of 2Work-At-Home.Com, Work At Home Articles.net and the Editor of the site's monthly ezine, America's Home. In her spare time she reminisces about what it was like to have spare time. To subscribe to her free ezine, Click Here
|