hashcash.org
home
faq
documentation
mailing-list
news
media articles
bitcoin
mail plugins 
  mua hooks 
  mfa hooks 
  mta hooks 
  anti-spam 
  web 
    coldfusion
blog plugins 
binaries 
source 
benchmarks
biggest stamp
developers
java applet
papers
 
web hashcash.org

hits since nov 03

macromedia coldfusion

Here are instructionsexample from Anders Green on how to create mail with a hashcash stamp attached using macromedia coldfusion:
<CFTRY> <CFEXECUTE name="c:\hashcash.exe" arguments="-mb20 user@place.com" variable="hashCashResult" timeout="5"> </CFEXECUTE> <CFCATCH type="Any"> <CFSET hashCashResult=""> </CFCATCH> </CFTRY> <CFMAIL TO="user@place.com" FROM="me@sender.com" SUBJECT="Password Reminder" > Hello user, The password for your account is: some_password Cheers, The Database <CFIF Len(hashCashResult) NEQ 0> <cfmailparam name = "X-HashCash" value = "#hashCashResult#" > </CFIF> </CFMAIL>