Gnus development mailing list
 help / color / mirror / Atom feed
* hashcash.el questions and issues
@ 2003-03-04 20:51 Ted Zlatanov
  2003-03-06  2:19 ` Mail-Followup-To in newsgroups (was: hashcash.el questions and issues) Jesper Harder
       [not found] ` <m2heaiwtjk.fsf@mycroft.actrix.gen.nz>
  0 siblings, 2 replies; 9+ messages in thread
From: Ted Zlatanov @ 2003-03-04 20:51 UTC (permalink / raw)
  Cc: ding

Paul,

1) is hashcash.el OK to be used within spam.el?  I was thinking of
   just a spam-use-hashcash variable as a check for incoming mail.

2) The definition of hashcash-accept-resources:

(defcustom hashcash-accept-resources `((,(user-mail-address) nil)) ...

does not work for me, since there's no function user-mail-address
(it's a variable).  I'm not sure if this was meant:

(defcustom hashcash-accept-resources `((,(message-user-mail-address) nil)) ...

or this:

(defcustom hashcash-accept-resources `((,user-mail-address nil)) ...

Also, executable-find might be better than hardcoding the location of
the hashcash executable, so maybe this:

(defcustom hashcash "/usr/local/bin/hashcash" ...

could be replaced with this:

;; autoload executable-find
(eval-and-compile
  ;; executable-find is not autoloaded in Emacs 20
  (autoload 'executable-find "executable"))

(defcustom hashcash-path (executable-find "hashcash") ...

Note the renaming of the variable, just "hashcash" is a little
counter-intuitive.

3) I'm not sure I understand how hashcash.el uses resource - they
   don't seem to be used at all when generating the hashcash cookie.

I didn't write a patch for (2) because I'm not sure if my way is
necessarily better :) Also, I cc-ed the ding list in case anyone had
comments.

FWIW, I think hashcash is our best shot at marking ham (non-spam) as
positively ham without whitelists.  Nothing beats cold, hard CPU cash.

Thanks
Ted



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2003-03-08 19:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-03-04 20:51 hashcash.el questions and issues Ted Zlatanov
2003-03-06  2:19 ` Mail-Followup-To in newsgroups (was: hashcash.el questions and issues) Jesper Harder
2003-03-06  7:11   ` Mail-Followup-To in newsgroups Andreas Fuchs
2003-03-07  4:25     ` Jesper Harder
2003-03-07  9:08       ` Per Abrahamsen
2003-03-07 17:05         ` Kai Großjohann
2003-03-08 19:26         ` Lars Magne Ingebrigtsen
2003-03-07 20:15       ` Andreas Fuchs
     [not found] ` <m2heaiwtjk.fsf@mycroft.actrix.gen.nz>
     [not found]   ` <4nel5lbwpg.fsf@lockgroove.bwh.harvard.edu>
     [not found]     ` <m2bs0pwop2.fsf@mycroft.actrix.gen.nz>
2003-03-07 16:40       ` hashcash.el questions and issues Ted Zlatanov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).