Gnus development mailing list
 help / color / mirror / Atom feed
From: Steinar Bang <sb@dod.no>
To: ding@gnus.org
Cc: "Mat Marcus" <mat-lists@emarcus.org>
Subject: Re: gnus IMAP vs. Exchange Server 2007
Date: Wed, 24 Sep 2008 22:25:45 +0200	[thread overview]
Message-ID: <877i91nvee.fsf@dod.no> (raw)
In-Reply-To: <9206c7e10809241007t13f92263lb4946826a852560f@mail.gmail.com>

>>>>> "Mat Marcus" <mat-lists@emarcus.org>:

> Thanks for the reply. This variable is just what I need. C-h v
> indicates that it is not present in the version of gnus that I have
> (see 3, above). Do I just grab an arbitrary nightly snapshot and
> replace my lisp/gnus folder?

I wouldn't have done that.  I would have unpacked the nightly snapshot,
or perhaps just checked out the current CVS in a separate place, and add
the lisp subdirectory to load-path and the info subdirectory to
Info-directory-list.

Below are the fragments from my ~/.emacs to make the CVS version of Gnus
be the Gnus that emacs uses.  They are a bit complicated, because they
are trying to handle both emacs and XEmacs, and emacs on windows
(ie. they can be simplified a lot).


(defvar windows-emacs (string-match "mingw" (emacs-version))
  "Hold a numerical value if this is an Emacs running on Windows, and
nil if this isn't windows")

(defvar cvs-workspace
  (if windows-emacs
      (expand-file-name "~/workspacecvs/")
    (expand-file-name "~/cvs/"))
   "The place where I check out CVS workspaces.  On linux I like this to 
be lowercase \"cvs\" for shortness.  But on Win32, that name conflicts 
with the \"CVS\" directory in my CVS-versioned home directory, so it has 
to be something different.")

;; CVS version of Gnus:
(let ((cvs-gnus-directory
       (if (string-match "XEmacs" emacs-version)
	   (concat cvs-workspace "gnus.xemacs")
	   (concat cvs-workspace "gnus"))))
  (add-to-list 'load-path (concat cvs-gnus-directory "/lisp"))
  (let ((cvs-gnus-info-dir (concat cvs-gnus-directory "/texi")))
    (if (boundp 'Info-directory-list)
	(add-to-list 'Info-directory-list cvs-gnus-info-dir)
      (setq Info-directory-list (append
				 (list cvs-gnus-info-dir)
				 Info-default-directory-list)))))




  parent reply	other threads:[~2008-09-24 20:25 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-09-23 20:52 Mat Marcus
2008-09-24  6:21 ` Vitaly Mayatskikh
2008-09-24  7:28   ` David Engster
2008-09-24 17:07   ` Mat Marcus
2008-09-24 18:13     ` Vitaly Mayatskikh
2008-09-24 18:27     ` Reiner Steib
2008-09-24 20:25     ` Steinar Bang [this message]
2008-09-25 17:31     ` Mat Marcus

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=877i91nvee.fsf@dod.no \
    --to=sb@dod.no \
    --cc=ding@gnus.org \
    --cc=mat-lists@emarcus.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).