> Without being able to decode that block of stuff myself and thus see what
> it says

It's a stock spam for some oil company.

Decoding anything base64 encoded is pretty easy if you have perl installed
somewhere:

----cut----
#!/usr/bin/perl

use MIME::Base64;
print decode_base64("<put the encoded data here>");
----cut----


Reply via email to