From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29071 Path: main.gmane.org!not-for-mail From: "Yair Friedman (Jerusalem)" Newsgroups: gmane.emacs.gnus.general Subject: Re: more IMAP Date: 03 Feb 2000 15:00:11 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: <87emaxtvm1.fsf@iname.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035165805 652 80.91.224.250 (21 Oct 2002 02:03:25 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:03:25 +0000 (UTC) Cc: Gnus Mailing List Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by mailhost.sclp.com (Postfix) with ESMTP id 2EA48D051F for ; Thu, 3 Feb 2000 08:01:40 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id HAB23957; Thu, 3 Feb 2000 07:01:32 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 03 Feb 2000 07:01:22 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id HAA28741 for ; Thu, 3 Feb 2000 07:01:12 -0600 (CST) Original-Received: from lovely.amdocs.com (unknown [204.151.97.17]) by mailhost.sclp.com (Postfix) with ESMTP id 64ACCD051F for ; Thu, 3 Feb 2000 08:01:09 -0500 (EST) Original-Received: from amdocs.com (speedy1.amdocs.com [204.151.97.67]) by lovely.amdocs.com (8.9.1/8.9.1) with ESMTP id PAA07410; Thu, 3 Feb 2000 15:01:06 +0200 (IST) Original-Received: from YAIRFRNT ([10.128.3.44]) by amdocs.com (8.9.1/8.9.1) with ESMTP id OAA28034; Thu, 3 Feb 2000 14:58:07 +0200 (IST) Original-To: Simon Josefsson In-Reply-To: Simon Josefsson's message of "03 Feb 2000 13:40:05 +0100" Original-Lines: 45 User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.4 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29071 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29071 Simon Josefsson writes: > > there some special trick to get at these, perhaps??? > > I believe Outlook store the date of the appointment in the > INTERNALDATE field on the article on the IMAP server. That field is > not available to Gnus, I think. > > > Would be very cool to integrate this somehow with linux schedulers, to allow > > anybody full use of their exchange server. We're stuck with these at work to > > manage our schedules and give our secretaries access to them.... > > and I occasionally have to boot up windows just to check my schedule :-( > > What are "linux schedulers"? It's easy to write something that > iterate through your Schedule mailbox and do something: > > (with-current-buffer (imap-open "mail.server.com") > (when (imap-mailbox-select "Schedule") > (dolist (uid (imap-search "UNDELETED")) > (imap-fetch uid 'FULL) > (message "Internal date: %s" (imap-message-get uid 'INTERNALDATE)) > (message "Envelope: %s" (imap-message-get uid 'ENVELOPE)) > (message "Body: %s" (imap-message-get uid 'BODY)))) > ...etc... > (imap-close)) I am currently more interested in Calendar entries, So I tried this: (with-current-buffer (imap-open "jermail1.amdocs.com") (when (imap-mailbox-select "Calendar") (dolist (uid (imap-search "UNDELETED")) (imap-fetch uid 'FULL) (message "Internal date: %s" (imap-message-get uid 'INTERNALDATE)) (message "Envelope: %s" (imap-message-get uid 'ENVELOPE)) (message "Body: %s" (imap-message-get uid 'BODY)))) (imap-close)) and got the following error: Waiting for response from jermail1.amdocs.com...done error in process filter: Internal error, tag 4 status BAD code nil text SELECT command received in invalid state. [2 times] Any other pointers? Thanks, Yair Friedman.