Archive of RubyForge sup-devel mailing list
 help / color / mirror / Atom feed
* [sup-devel] state of maildir-sync branch?
@ 2010-11-15 19:29 Ali Lown
  2010-11-15 20:52 ` Rich Lane
  2010-11-16 14:30 ` Damien Leone
  0 siblings, 2 replies; 6+ messages in thread
From: Ali Lown @ 2010-11-15 19:29 UTC (permalink / raw)
  To: sup-devel

What happened to this branch, because it hasn't been worked on since July, but doesn't appear to have been merged into master/next.
Does anyone know what else needs to be done to get it suitable for merging (besides a git rebase)?
-Ali

_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel


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

* Re: [sup-devel] state of maildir-sync branch?
  2010-11-15 19:29 [sup-devel] state of maildir-sync branch? Ali Lown
@ 2010-11-15 20:52 ` Rich Lane
  2010-11-16 14:30 ` Damien Leone
  1 sibling, 0 replies; 6+ messages in thread
From: Rich Lane @ 2010-11-15 20:52 UTC (permalink / raw)
  To: Ali Lown; +Cc: sup-devel

Excerpts from Ali Lown's message of Mon Nov 15 14:29:22 -0500 2010:
> What happened to this branch, because it hasn't been worked on since July, but doesn't appear to have been merged into master/next.
> Does anyone know what else needs to be done to get it suitable for merging (besides a git rebase)?
> -Ali

I'll take a look.
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel


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

* Re: [sup-devel] state of maildir-sync branch?
  2010-11-15 19:29 [sup-devel] state of maildir-sync branch? Ali Lown
  2010-11-15 20:52 ` Rich Lane
@ 2010-11-16 14:30 ` Damien Leone
  2010-11-16 15:35   ` Alvaro Herrera
  1 sibling, 1 reply; 6+ messages in thread
From: Damien Leone @ 2010-11-16 14:30 UTC (permalink / raw)
  To: sup-devel

Hello,

I would say that the work is almost done, I still have things on my
todo list which are:

- Merge the replied/forwarded tag at the first synchronisation back to
  the IMAP so no information is lost

- There is still some work to do on the Polling#do_poll function
  because the way it is in the branch is too hackish

- Allow to move an email from a maildir to another

- Put a special flag or file for the first time you run sup with the
  branch so you get asked if you want to sync everything now

Beside that I have been running the branch for months without issue,
just a little bug that might be related to the point 2 of the list.

I often rebase the branch to master so it stays up to date, you can
find this on my repository [0] in the maildir-sync-master branch. The
damien branch is the same with extra patches I made months ago that
have not been reviewed.

Cheers,

[0] : http://git.fensalir.fr/?p=dleone/sup.git;a=summary

Excerpts from Ali Lown's message of lun. nov. 15 20:29:22 +0100 2010:
> What happened to this branch, because it hasn't been worked on since July, but doesn't appear to have been merged into master/next.
> Does anyone know what else needs to be done to get it suitable for merging (besides a git rebase)?

-- 
Damien Leone <damien.leone@fensalir.fr>

Web: http://dleone.fensalir.fr/
GPG: 0x82EB4DDF
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel


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

* Re: [sup-devel] state of maildir-sync branch?
  2010-11-16 14:30 ` Damien Leone
@ 2010-11-16 15:35   ` Alvaro Herrera
  2010-11-18 12:30     ` Damien Leone
  0 siblings, 1 reply; 6+ messages in thread
From: Alvaro Herrera @ 2010-11-16 15:35 UTC (permalink / raw)
  To: sup-devel

Excerpts from Damien Leone's message of mar nov 16 11:30:14 -0300 2010:

> - Allow to move an email from a maildir to another

Somewhat related: I'd like to have a display of which source(s) a
message belongs to, in the header widget.  I have no idea how to
implement this though.  Any pointers?

-- 
Álvaro Herrera <alvherre@alvh.no-ip.org>
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel

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

* Re: [sup-devel] state of maildir-sync branch?
  2010-11-16 15:35   ` Alvaro Herrera
@ 2010-11-18 12:30     ` Damien Leone
  2010-11-18 14:50       ` Alvaro Herrera
  0 siblings, 1 reply; 6+ messages in thread
From: Damien Leone @ 2010-11-18 12:30 UTC (permalink / raw)
  To: sup-devel

Hi,

Excerpts from Alvaro Herrera's message of mar. nov. 16 16:35:32 +0100 2010:
> Somewhat related: I'd like to have a display of which source(s) a
> message belongs to, in the header widget.  I have no idea how to
> implement this though.  Any pointers?

If I remember correctly you can retrieve the source informations of a
mail by its "locations" attribute in the Message class.

A Location is a class which has a "source" attribute that can be
Maildir or Mbox and an "info" attribute that holds the filename on the
disk.

-- 
Damien Leone <damien.leone@fensalir.fr>

Web: http://dleone.fensalir.fr/
GPG: 0x82EB4DDF
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel


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

* Re: [sup-devel] state of maildir-sync branch?
  2010-11-18 12:30     ` Damien Leone
@ 2010-11-18 14:50       ` Alvaro Herrera
  0 siblings, 0 replies; 6+ messages in thread
From: Alvaro Herrera @ 2010-11-18 14:50 UTC (permalink / raw)
  To: sup-devel

Excerpts from Damien Leone's message of jue nov 18 09:30:24 -0300 2010:
> Hi,
> 
> Excerpts from Alvaro Herrera's message of mar. nov. 16 16:35:32 +0100 2010:
> > Somewhat related: I'd like to have a display of which source(s) a
> > message belongs to, in the header widget.  I have no idea how to
> > implement this though.  Any pointers?
> 
> If I remember correctly you can retrieve the source informations of a
> mail by its "locations" attribute in the Message class.
> 
> A Location is a class which has a "source" attribute that can be
> Maildir or Mbox and an "info" attribute that holds the filename on the
> disk.

Ah, great, thanks.

-- 
Álvaro Herrera <alvherre@alvh.no-ip.org>
_______________________________________________
Sup-devel mailing list
Sup-devel@rubyforge.org
http://rubyforge.org/mailman/listinfo/sup-devel

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

end of thread, other threads:[~2010-11-18 15:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-15 19:29 [sup-devel] state of maildir-sync branch? Ali Lown
2010-11-15 20:52 ` Rich Lane
2010-11-16 14:30 ` Damien Leone
2010-11-16 15:35   ` Alvaro Herrera
2010-11-18 12:30     ` Damien Leone
2010-11-18 14:50       ` Alvaro Herrera

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox