Gnus development mailing list
 help / color / mirror / Atom feed
* imap.el still essential to mail-source.el
@ 2011-02-14  0:43 Ted Zlatanov
  2011-02-14  1:23 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 6+ messages in thread
From: Ted Zlatanov @ 2011-02-14  0:43 UTC (permalink / raw)
  To: ding

Oops, I shouldn't have done 84d800cd31de3064f0ed39617d725709a2f8f42f.
So now it's reverted and imap.el is back.

Lars, can you look at fixing mail-source.el to use nnimap.el's
functions?

Thanks
Ted




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

* Re: imap.el still essential to mail-source.el
  2011-02-14  0:43 imap.el still essential to mail-source.el Ted Zlatanov
@ 2011-02-14  1:23 ` Lars Ingebrigtsen
  2011-02-14  7:35   ` Tassilo Horn
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Ingebrigtsen @ 2011-02-14  1:23 UTC (permalink / raw)
  To: ding

Ted Zlatanov <tzz@lifelogs.com> writes:

> Lars, can you look at fixing mail-source.el to use nnimap.el's
> functions?

Hm...

I'm looking at `mail-source-fetch-imap', and I'm not totally sure how to
do that.  I mean, the authenticator stuff and, er, stuff.  But it should
certainly be doable.

Is that the final thing that uses imap.el?

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




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

* Re: imap.el still essential to mail-source.el
  2011-02-14  1:23 ` Lars Ingebrigtsen
@ 2011-02-14  7:35   ` Tassilo Horn
  2011-02-14  7:39     ` Lars Ingebrigtsen
  0 siblings, 1 reply; 6+ messages in thread
From: Tassilo Horn @ 2011-02-14  7:35 UTC (permalink / raw)
  To: ding

Lars Ingebrigtsen <larsi@gnus.org> writes:

> Is that the final thing that uses imap.el?

No, have a look at

  <87d3mv401s.fsf@anzu.internal.golden-gryphon.com>

There's also url-imap.el which is part of Emacs itself and requires
imap.el.

Bye,
Tassilo
-- 
Sent from my Emacs



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

* Re: imap.el still essential to mail-source.el
  2011-02-14  7:35   ` Tassilo Horn
@ 2011-02-14  7:39     ` Lars Ingebrigtsen
  2011-02-14  9:10       ` Leo
  0 siblings, 1 reply; 6+ messages in thread
From: Lars Ingebrigtsen @ 2011-02-14  7:39 UTC (permalink / raw)
  To: ding

Tassilo Horn <tassilo@member.fsf.org> writes:

> There's also url-imap.el which is part of Emacs itself and requires
> imap.el.

Ok, then I don't think deleting imap.el would be the right thing to do
(at least in the Emacs 24 cycle).

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen




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

* Re: imap.el still essential to mail-source.el
  2011-02-14  7:39     ` Lars Ingebrigtsen
@ 2011-02-14  9:10       ` Leo
  2011-02-14 15:15         ` Ted Zlatanov
  0 siblings, 1 reply; 6+ messages in thread
From: Leo @ 2011-02-14  9:10 UTC (permalink / raw)
  To: ding

On 2011-02-14 15:39 +0800, Lars Ingebrigtsen wrote:
> Tassilo Horn <tassilo@member.fsf.org> writes:
>
>> There's also url-imap.el which is part of Emacs itself and requires
>> imap.el.
>
> Ok, then I don't think deleting imap.el would be the right thing to do
> (at least in the Emacs 24 cycle).

The header of url-imap.el says:

;; Anyway, here's a teaser. It's quite broken in lots of regards, but at
;; least it seem to work. At least a little. At least when called
;; manually like this (I've no idea how it's supposed to be called):

;; (url-imap (url-generic-parse-url "imap://cyrus.andrew.cmu.edu/archive.c-client;UID=1021"))


Does anyone actually use url-imap?

Leo




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

* Re: imap.el still essential to mail-source.el
  2011-02-14  9:10       ` Leo
@ 2011-02-14 15:15         ` Ted Zlatanov
  0 siblings, 0 replies; 6+ messages in thread
From: Ted Zlatanov @ 2011-02-14 15:15 UTC (permalink / raw)
  To: ding; +Cc: Simon Josefsson, Simon Josefsson

On Mon, 14 Feb 2011 17:10:31 +0800 Leo <sdl.web@gmail.com> wrote: 

L> On 2011-02-14 15:39 +0800, Lars Ingebrigtsen wrote:
>> Tassilo Horn <tassilo@member.fsf.org> writes:
>> 
>>> There's also url-imap.el which is part of Emacs itself and requires
>>> imap.el.
>> 
>> Ok, then I don't think deleting imap.el would be the right thing to do
>> (at least in the Emacs 24 cycle).

L> The header of url-imap.el says:

L> ;; Anyway, here's a teaser. It's quite broken in lots of regards, but at
L> ;; least it seem to work. At least a little. At least when called
L> ;; manually like this (I've no idea how it's supposed to be called):

L> ;; (url-imap (url-generic-parse-url "imap://cyrus.andrew.cmu.edu/archive.c-client;UID=1021"))

L> Does anyone actually use url-imap?

I haven't seen questions or bugs about it.  CC to Simon Josefsson, who
wrote it.

It uses nnimap heavily, which probably makes it a better fit for Gnus
contrib/ than Emacs itself.

Ted




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

end of thread, other threads:[~2011-02-14 15:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-14  0:43 imap.el still essential to mail-source.el Ted Zlatanov
2011-02-14  1:23 ` Lars Ingebrigtsen
2011-02-14  7:35   ` Tassilo Horn
2011-02-14  7:39     ` Lars Ingebrigtsen
2011-02-14  9:10       ` Leo
2011-02-14 15:15         ` Ted Zlatanov

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