Twiceler has come back with an alternative IP address starting 64.1
order allow,deny
deny from 38.99
deny from 64.1
allow from all
This will block it but also anyone properly using that IP address. I don't think that there will be that many ;-)
If your server allows it this code will block it and other user agents( If you add the code ie googlebot if you did not want Google's bots indexing your site!
RewriteCond %{HTTP_USER_AGENT} EmailSiphon
RewriteRule .* - [F,L]
RewriteCond %{HTTP_USER_AGENT} Exabot
RewriteRule .* - [F,L]
RewriteCond %{HTTP_USER_AGENT} Twiceler
RewriteRule .* - [F,L]
Options FollowSymLinks
RewriteEngine On
RewriteBase /
Doug