From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29070 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: more IMAP Date: 03 Feb 2000 13:40:05 +0100 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 1035165804 643 80.91.224.250 (21 Oct 2002 02:03:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:03:24 +0000 (UTC) Cc: David Maslen , ding@gnus.org 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 C52D6D051F for ; Thu, 3 Feb 2000 07:44:52 -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 GAB23916; Thu, 3 Feb 2000 06:41:23 -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 06:40:56 -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 GAA27204 for ; Thu, 3 Feb 2000 06:40:38 -0600 (CST) Original-Received: from badis.pdc.kth.se (badis.pdc.kth.se [130.237.221.45]) by mailhost.sclp.com (Postfix) with ESMTP id CF4B5D051F for ; Thu, 3 Feb 2000 07:40:35 -0500 (EST) Original-Received: (from jas@localhost) by badis.pdc.kth.se (8.9.3/8.9.3) id NAA02673; Thu, 3 Feb 2000 13:40:06 +0100 X-Authentication-Warning: badis.pdc.kth.se: jas set sender to jas@pdc.kth.se using -f Original-To: Jaap-Henk Hoepman In-Reply-To: Jaap-Henk Hoepman's message of "01 Feb 2000 18:23:44 +0100" Original-Lines: 29 User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.5 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29070 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29070 Jaap-Henk Hoepman writes: > I noticed that Outlook creates IMAP folders for the Contacts and Schedule as > well. If you access them as mail folders (I tried using netscape) the > appointment text is the message subject, and any notes appear as message > body. But nowhere did I see the actual date and place of the appointment. Is > 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))