Gnus development mailing list
 help / color / mirror / Atom feed
From: Simon Josefsson <jas@pdc.kth.se>
Cc: David Maslen <david.maslen@iname.com>, ding@gnus.org
Subject: Re: more IMAP
Date: 03 Feb 2000 13:40:05 +0100	[thread overview]
Message-ID: <ilud7qesbmi.fsf@badis.pdc.kth.se> (raw)
In-Reply-To: Jaap-Henk Hoepman's message of "01 Feb 2000 18:23:44 +0100"

Jaap-Henk Hoepman <hoepman@cs.utwente.nl> 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))



  parent reply	other threads:[~2000-02-03 12:40 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-02-01  0:22 Harry Putnam
2000-02-01  0:30 ` John Prevost
2000-02-01  1:13   ` Harry Putnam
2000-02-01  4:06     ` David Maslen
     [not found]       ` <kpbt60rg4f.fsf@utip202.cs.utwente.nl>
2000-02-03 12:40         ` Simon Josefsson [this message]
2000-02-03 13:00           ` Yair Friedman (Jerusalem)
2000-02-03 15:22             ` Simon Josefsson
2000-02-03 15:10           ` Jaap-Henk Hoepman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ilud7qesbmi.fsf@badis.pdc.kth.se \
    --to=jas@pdc.kth.se \
    --cc=david.maslen@iname.com \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).