From clint at ivy.io Sat Aug 4 22:24:40 2012 From: clint at ivy.io (Clint Moore) Date: Sat, 4 Aug 2012 15:24:40 -0700 Subject: [clonsigna-devel] (parse-fetch-fields ...) -> nil? Message-ID: Is anyone else seeing this? Sample code: https://gist.github.com/3260337 err.. ignore (handle-messages) :) Anyway, I thought I'd ask before I started digging into what the issue might be. It might be that I'm getting weirdly formatted messages also. From clint at ivy.io Sat Aug 4 22:35:09 2012 From: clint at ivy.io (Clint Moore) Date: Sat, 4 Aug 2012 15:35:09 -0700 Subject: [clonsigna-devel] (parse-fetch-fields ...) -> nil? In-Reply-To: References: Message-ID: On Sat, Aug 4, 2012 at 3:24 PM, Clint Moore wrote: > Is anyone else seeing this? > > Sample code: https://gist.github.com/3260337 err.. ignore > (handle-messages) :) > > Anyway, I thought I'd ask before I started digging into what the > issue might be. It might be that I'm getting weirdly formatted > messages also. Ok, I updated the gist and here's a better version of my test code. I hope that there's something elementary I'm getting wrong. I've only been writing CL for about 6 months. (defun i/refresh-imap (login password server) (let ((iconn (make-imap :port 993 :host server :ssl-p t))) (cmd-connect iconn) (cmd-login iconn login password) (cmd-select iconn "inbox") (mapcar (lambda (x) (parse-fetch-fields (cmd-fetch-fields iconn (write-to-string x)))) (cdr (iota 100))))) From clint at ivy.io Sun Aug 5 00:03:26 2012 From: clint at ivy.io (Clint Moore) Date: Sat, 4 Aug 2012 17:03:26 -0700 Subject: [clonsigna-devel] (parse-fetch-fields ...) -> nil? In-Reply-To: References: Message-ID: On Sat, Aug 4, 2012 at 3:35 PM, Clint Moore wrote: > On Sat, Aug 4, 2012 at 3:24 PM, Clint Moore wrote: >> Is anyone else seeing this? >> I forgot to mention that this is using the git version.