Gnus development mailing list
 help / color / mirror / Atom feed
* New Gnus and Exchange 2003 - Usable?
@ 2010-09-29 13:06 Jake Colman
  2010-09-29 13:56 ` Robert Pluim
  2010-09-29 16:46 ` Ted Zlatanov
  0 siblings, 2 replies; 10+ messages in thread
From: Jake Colman @ 2010-09-29 13:06 UTC (permalink / raw)
  To: ding


I've been avidly reading all the posts regarding Lars' rework of nnimap.
I currently use Xemacs 21.4.17 and No Gnus 0.7 (from an old CVS fetch).
Is it smart to pull the latest Gnus and jump on the bandwagon as an
Exchange 2003 IMAP user?  Or should I wait a bit longer?

How do I get fetch Gnus out of git?  I guess I need to build a git
client too...

...Jake


-- 
Jake Colman | Director, Software Development
Principia Partners LLC
101 West Elm Street | Conshohocken | PA 19428 | +1 (610) 755 9770
t: +1 (610) 755 9786 | c: +1 (610) 348 2788 | f: +1 (201) 221 8929
e: colman@ppllc.com | w: www.principiapartners.com
Credit technology innovation awards winner 2008 and 2009




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-29 13:06 New Gnus and Exchange 2003 - Usable? Jake Colman
@ 2010-09-29 13:56 ` Robert Pluim
  2010-09-29 18:04   ` Steinar Bang
  2010-10-03 11:35   ` Tibor Simko
  2010-09-29 16:46 ` Ted Zlatanov
  1 sibling, 2 replies; 10+ messages in thread
From: Robert Pluim @ 2010-09-29 13:56 UTC (permalink / raw)
  To: ding

Jake Colman <colman@ppllc.com> writes:

> I've been avidly reading all the posts regarding Lars' rework of nnimap.
> I currently use Xemacs 21.4.17 and No Gnus 0.7 (from an old CVS fetch).
> Is it smart to pull the latest Gnus and jump on the bandwagon as an
> Exchange 2003 IMAP user?  Or should I wait a bit longer?
>

I don't know about Exchange 2003, but I'm happily using git gnus with
Exchange 2007 IMAP.  Probably the two implementations are wildly
different :)

> How do I get fetch Gnus out of git?  I guess I need to build a git
> client too...

git clone http://git.gnus.org/gnus.git

should be enough (further details at <http://git.gnus.org/>).

Robert




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-29 13:06 New Gnus and Exchange 2003 - Usable? Jake Colman
  2010-09-29 13:56 ` Robert Pluim
@ 2010-09-29 16:46 ` Ted Zlatanov
  2010-10-03  1:50   ` Jake Colman
  1 sibling, 1 reply; 10+ messages in thread
From: Ted Zlatanov @ 2010-09-29 16:46 UTC (permalink / raw)
  To: ding

On Wed, 29 Sep 2010 09:06:13 -0400 Jake Colman <colman@ppllc.com> wrote: 

Jake> I've been avidly reading all the posts regarding Lars' rework of nnimap.
Jake> I currently use Xemacs 21.4.17 and No Gnus 0.7 (from an old CVS fetch).
Jake> Is it smart to pull the latest Gnus and jump on the bandwagon as an
Jake> Exchange 2003 IMAP user?  Or should I wait a bit longer?

The Exchange fix became standard behavior IIRC.

Jake> How do I get fetch Gnus out of git?  I guess I need to build a git
Jake> client too...

We could set up a daily tarball I guess, but is it hard for you to
install http://code.google.com/p/tortoisegit/ or something similar?

Ted




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-29 13:56 ` Robert Pluim
@ 2010-09-29 18:04   ` Steinar Bang
  2010-09-30  7:02     ` Reiner Steib
  2010-10-03 11:35   ` Tibor Simko
  1 sibling, 1 reply; 10+ messages in thread
From: Steinar Bang @ 2010-09-29 18:04 UTC (permalink / raw)
  To: ding

>>>>> Robert Pluim <rpluim@gmail.com>:

>> How do I get fetch Gnus out of git?  I guess I need to build a git
>> client too...

> git clone http://git.gnus.org/gnus.git

> should be enough (further details at <http://git.gnus.org/>).

I've got my cloned git repo/workspace in ~/git/gnus and here's the setup
from my ~/.emacs (it also sets up the info path, and allows you to have
a separate checkout for xemacs in ~/git/gnus.xemacs ):

;; Are we running XEmacs or Emacs?
(defvar running-xemacs (string-match "XEmacs\\|Lucid" (emacs-version))
  "Hold a numerical value if this is XEmacs, nil if it isn't")

(defvar git-workspace (expand-file-name "~/git"))

;; Git version of Gnus:
(let ((git-gnus-directory
       (if running-xemacs
	   (concat git-workspace "/gnus.xemacs")
	 (concat git-workspace "/gnus"))))
  (push (concat git-gnus-directory "/lisp") load-path)
  (let ((git-gnus-info-dir (concat git-gnus-directory "/texi")))
    (if (boundp 'Info-directory-list)
	(push git-gnus-info-dir Info-directory-list)
      (setq Info-directory-list (append
				 (list git-gnus-info-dir)
				 Info-default-directory-list)))))







^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-29 18:04   ` Steinar Bang
@ 2010-09-30  7:02     ` Reiner Steib
  2010-09-30  7:40       ` Steinar Bang
  0 siblings, 1 reply; 10+ messages in thread
From: Reiner Steib @ 2010-09-30  7:02 UTC (permalink / raw)
  To: ding

On Wed, Sep 29 2010, Steinar Bang wrote:

> ;; Are we running XEmacs or Emacs?
> (defvar running-xemacs (string-match "XEmacs\\|Lucid" (emacs-version))
>   "Hold a numerical value if this is XEmacs, nil if it isn't")

I'd recommend (featurep 'xemacs) instead.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-30  7:02     ` Reiner Steib
@ 2010-09-30  7:40       ` Steinar Bang
  2010-09-30  7:48         ` Steinar Bang
  0 siblings, 1 reply; 10+ messages in thread
From: Steinar Bang @ 2010-09-30  7:40 UTC (permalink / raw)
  To: ding

>>>>> Reiner Steib <reinersteib+gmane@imap.cc>:

> On Wed, Sep 29 2010, Steinar Bang wrote:
>> ;; Are we running XEmacs or Emacs?
>> (defvar running-xemacs (string-match "XEmacs\\|Lucid" (emacs-version))
>> "Hold a numerical value if this is XEmacs, nil if it isn't")

> I'd recommend (featurep 'xemacs) instead.

Ok.  My .emacs file has... er... lots of history in it.  The reference
to "Lucid", is a clue...:-)

Parts of it goes back to 18.55 in 1989.  I'm not entirely sure, because
I didn't start version controlling it until 1997, and the current
history doesn't go further back than 2001.





^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-30  7:40       ` Steinar Bang
@ 2010-09-30  7:48         ` Steinar Bang
  0 siblings, 0 replies; 10+ messages in thread
From: Steinar Bang @ 2010-09-30  7:48 UTC (permalink / raw)
  To: ding

>>>>> Steinar Bang <sb@dod.no>:

> Parts of it goes back to 18.55 in 1989.

Or 18.52, perhaps...?  I remember 18.55 as a number that stayed for a
long time.  Also 19.34.  That was before switching to an emacs with a
major version number increase, which seemed like a scary leap.

But I digress...




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-29 16:46 ` Ted Zlatanov
@ 2010-10-03  1:50   ` Jake Colman
  0 siblings, 0 replies; 10+ messages in thread
From: Jake Colman @ 2010-10-03  1:50 UTC (permalink / raw)
  To: ding

>>>>> "TZ" == Ted Zlatanov <tzz@lifelogs.com> writes:

   TZ> On Wed, 29 Sep 2010 09:06:13 -0400 Jake Colman <colman@ppllc.com> wrote: 
   Jake> I've been avidly reading all the posts regarding Lars' rework of
   Jake> nnimap.
   Jake> I currently use Xemacs 21.4.17 and No Gnus 0.7 (from an old CVS fetch).
   Jake> Is it smart to pull the latest Gnus and jump on the bandwagon as an
   Jake> Exchange 2003 IMAP user?  Or should I wait a bit longer?

   TZ> The Exchange fix became standard behavior IIRC.

   Jake> How do I get fetch Gnus out of git?  I guess I need to build a git
   Jake> client too...

   TZ> We could set up a daily tarball I guess, but is it hard for you to
   TZ> install http://code.google.com/p/tortoisegit/ or something similar?

I shouldn't have any trouble building a git client for myself.  I'll do
that and use Steiner's suggestion for switching between my current
cvs-based gnus and the new one.

Thanks all!

...Jake

-- 
Jake Colman | Director, Software Development
Principia Partners LLC
101 West Elm Street | Conshohocken | PA 19428 | +1 (610) 755 9770
t: +1 (610) 755 9786 | c: +1 (610) 348 2788 | f: +1 (201) 221 8929
e: colman@ppllc.com | w: www.principiapartners.com
Credit technology innovation awards winner 2008 and 2009




^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-09-29 13:56 ` Robert Pluim
  2010-09-29 18:04   ` Steinar Bang
@ 2010-10-03 11:35   ` Tibor Simko
  2010-10-05 18:07     ` Tibor Simko
  1 sibling, 1 reply; 10+ messages in thread
From: Tibor Simko @ 2010-10-03 11:35 UTC (permalink / raw)
  To: ding

On Wed, 29 Sep 2010, Robert Pluim wrote:
> I'm happily using git gnus with Exchange 2007 IMAP.

I can confirm this, including client side fancy splitting and stuff,
with the following system:

? CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN IDLE
  NAMESPACE LITERAL+

? LOGOUT
* BYE Microsoft Exchange Server 2007 IMAP4 server signing off.

Best regards
-- 
Tibor Simko



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: New Gnus and Exchange 2003 - Usable?
  2010-10-03 11:35   ` Tibor Simko
@ 2010-10-05 18:07     ` Tibor Simko
  0 siblings, 0 replies; 10+ messages in thread
From: Tibor Simko @ 2010-10-05 18:07 UTC (permalink / raw)
  To: ding

On Sun, 03 Oct 2010, Tibor Simko wrote:
> On Wed, 29 Sep 2010, Robert Pluim wrote:
>> I'm happily using git gnus with Exchange 2007 IMAP.
>
> I can confirm this, including client side fancy splitting and stuff,
> with the following system:
>
> ? CAPABILITY
> * CAPABILITY IMAP4 IMAP4rev1 AUTH=NTLM AUTH=GSSAPI AUTH=PLAIN IDLE
>   NAMESPACE LITERAL+
>
> ? LOGOUT
> * BYE Microsoft Exchange Server 2007 IMAP4 server signing off.

... and Exchange 2010 works well too, in case this info may be useful to
somebody.

? CAPABILITY
* CAPABILITY IMAP4 IMAP4rev1 AUTH=PLAIN CHILDREN IDLE NAMESPACE LITERAL+

? LOGOUT
* BYE Microsoft Exchange Server 2010 IMAP4 server signing off.

Best regards
-- 
Tibor Simko



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-10-05 18:07 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-29 13:06 New Gnus and Exchange 2003 - Usable? Jake Colman
2010-09-29 13:56 ` Robert Pluim
2010-09-29 18:04   ` Steinar Bang
2010-09-30  7:02     ` Reiner Steib
2010-09-30  7:40       ` Steinar Bang
2010-09-30  7:48         ` Steinar Bang
2010-10-03 11:35   ` Tibor Simko
2010-10-05 18:07     ` Tibor Simko
2010-09-29 16:46 ` Ted Zlatanov
2010-10-03  1:50   ` Jake Colman

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).