jwiegley / gnus-harvest

Harvest e-mail addresses from read/written Gnus articles
5 stars 6 forks source link

Backtrace #1

Open dabrahams opened 13 years ago

dabrahams commented 13 years ago

Just doing next-article in my nntp gnus summary buffer

Debugger entered--Lisp error: (wrong-type-argument stringp nil)
  string-match("@public.gmane.org" nil)
  (if (string-match gnus-harvest-ignore-email-regexp (cadr addr)) nil (with-current-buffer tmp-buf (gnus-harvest-insert-address ... ... moment ...)))
  (unless (string-match gnus-harvest-ignore-email-regexp (cadr addr)) (with-current-buffer tmp-buf (gnus-harvest-insert-address ... ... moment ...)))
  (lambda (addr) (unless (string-match gnus-harvest-ignore-email-regexp ...) (with-current-buffer tmp-buf ...)))(("Usenet" nil))
  mapc((lambda (addr) (unless (string-match gnus-harvest-ignore-email-regexp ...) (with-current-buffer tmp-buf ...))) (("Usenet" nil)))
  (let ((field ...)) (mapc (lambda ... ...) (cdr info)))
  (if info (let (...) (mapc ... ...)))
  (lambda (info) (if info (let ... ...)))(("to" ("Usenet" nil)))
  mapc((lambda (info) (if info (let ... ...))) (("to" ("Usenet" nil)) ("reply-to" (nil "nmm1@cam.ac.uk")) ("from" (nil "nmm1@cam.ac.uk")) nil nil nil))
  (let ((tmp-buf ...) (moment ...)) (mapc (lambda ... ...) (mapcar ... ...)) (with-current-buffer tmp-buf (gnus-harvest-sqlite-invoke nil t) (kill-buffer ...)))
  gnus-harvest-addresses()
  run-hooks(gnus-article-prepare-hook)
  apply(run-hooks gnus-article-prepare-hook)
  gnus-run-hooks(gnus-article-prepare-hook)
  gnus-article-prepare(99351 nil)
  gnus-summary-display-article(99351)
  gnus-summary-next-article(nil nil t)
  gnus-summary-prev-article(nil)
  call-interactively(gnus-summary-prev-article nil nil)
jwiegley commented 13 years ago

dabrahams reply@reply.github.com writes:

Just doing next-article in my nntp gnus summary buffer ``` Debugger

Cool, should be fixed now.

John