* [sup-talk] [ANN] Sup 0.1 released
@ 2007-07-19 18:58 Eugen Minciu
2007-07-19 20:29 ` William Morgan
0 siblings, 1 reply; 10+ messages in thread
From: Eugen Minciu @ 2007-07-19 18:58 UTC (permalink / raw)
Excerpts from nicholas a. evans's message of Thu Jul 19 21:18:58 +0300 2007:
> Excerpts from William Morgan's message of Thu Jul 19 14:01:06 -0400 2007:
> > Features:
> > - GPG support
> > - attachment forwarding
> > - maybe: tab-completion in to: and cc: for composing messages
> >
> > Comments? Complaints?
>
> Could we get tab completion for setting labels? And also a keymapping to
> set labels from thread-view-mode?
>
> Thanks!
>
>
Hi list!
Thanks for a wonderful program William. Here are a few of my desired
features:
- color schemes.
Somehow I'm not that fond of the defaults :) I know I can edit the code
but I'd like to be able to "theme" sup.
- incoming message filters
I'd like to be able to apply filters on incoming messages: label them,
archive some of them and so on
- polling with fetchmail
I use fetchmail and I'd like to be able to add some sort of hook before
polling that would run fetchmail first.
- moving archived articles to another mbox
This would be very useful because it would let me run biff programs.
I might be able to give you a hand (or patch) for one or two of these.
Which ones would you like and which would be the easiest?
Once again, thanks a lot,
--
Eugen Minciu.
Wasting valuable time since 1985.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
2007-07-19 18:58 [sup-talk] [ANN] Sup 0.1 released Eugen Minciu
@ 2007-07-19 20:29 ` William Morgan
2007-08-19 0:12 ` William Morgan
0 siblings, 1 reply; 10+ messages in thread
From: William Morgan @ 2007-07-19 20:29 UTC (permalink / raw)
Hi Eugen,
Excerpts from Eugen Minciu's message of Thu Jul 19 11:58:49 -0700 2007:
> Thanks for a wonderful program William. Here are a few of my desired
> features:
> - color schemes.
On the todo list, along with customizable keybindings, but they're both
pretty far down. :)
> - incoming message filters
> I'd like to be able to apply filters on incoming messages: label them,
> archive some of them and so on
The way to do this currently is to use procmail to sort mail into
different folders, and then set labels, auto-archive/auto-read, etc. for
each source in Sup.
I realize that's not ideal (in particular, users whose mail is delivered
to IMAP servers not under their control are left out in the cold), but I
really really don't want to write a slow, buggy, Ruby procmail clone as
part of Sup.
Is there another option? I would really like the full power of procmail.
> - polling with fetchmail
> I use fetchmail and I'd like to be able to add some sort of hook before
> polling that would run fetchmail first.
I use fetchmail too, so I agree this would be nice. A near-term goal is
to have a good system of user-defined hooks, and I think this would be
the right place for that.
> - moving archived articles to another mbox
> This would be very useful because it would let me run biff programs.
This could be done easily, at least in a batch fashion, with a few
changes to sup-sync-back. I'm not sure if that's what you want. How do
you want to use biff with this?
(This reminds me that there is still a completely unresolved question of
how sup-sync-back should lock mboxes. It doesn't do any locking at all
currently, which means you should be probably very careful with it.)
> I might be able to give you a hand (or patch) for one or two of these.
> Which ones would you like and which would be the easiest?
If batch moving of archived messages is useful to you, that's probably
the easiest one to do.
Making the colors configurable wouldn't be too hard either. I'm
imagining a yaml config file that can override the color setup in
sup.rb. What do you think?
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
2007-07-19 20:29 ` William Morgan
@ 2007-08-19 0:12 ` William Morgan
0 siblings, 0 replies; 10+ messages in thread
From: William Morgan @ 2007-08-19 0:12 UTC (permalink / raw)
Excerpts from William Morgan's message of Thu Jul 19 13:29:30 -0700 2007:
> > - polling with fetchmail
> > I use fetchmail and I'd like to be able to add some sort of hook before
> > polling that would run fetchmail first.
I'm about to commit a changeset that makes this possible.
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
2007-07-19 18:18 ` nicholas a. evans
2007-07-19 18:55 ` William Morgan
@ 2007-08-01 16:15 ` William Morgan
1 sibling, 0 replies; 10+ messages in thread
From: William Morgan @ 2007-08-01 16:15 UTC (permalink / raw)
Excerpts from nicholas a. evans's message of Thu Jul 19 11:18:58 -0700 2007:
> Could we get tab completion for setting labels? And also a keymapping
> to set labels from thread-view-mode?
These are both in svn now.
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
@ 2007-07-19 20:49 William Morgan
0 siblings, 0 replies; 10+ messages in thread
From: William Morgan @ 2007-07-19 20:49 UTC (permalink / raw)
Excerpts from William Morgan's message of Thu Jul 19 13:29:30 -0700 2007:
> I realize that's not ideal (in particular, users whose mail is delivered
> to IMAP servers not under their control are left out in the cold), but I
> really really don't want to write a slow, buggy, Ruby procmail clone as
> part of Sup.
>
> Is there another option? I would really like the full power of procmail.
There is a way of tricking procmail into doing what I want. Sup could
take in a list of procmail rules and corresponding label assignments,
create a procmail configuration file that makes procmail act as a filter
that adds an X-Sup-Labels header with the corresponding labels, run all
new messages through procmail with that config file at poll time, and
then parse that header to determine the labels.
Pretty painful. But then you can just write some procmail rules for the
labels you want, and it doesn't matter what source the messages come
from (as long as you have procmail locally!).
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
2007-07-19 18:18 ` nicholas a. evans
@ 2007-07-19 18:55 ` William Morgan
2007-08-01 16:15 ` William Morgan
1 sibling, 0 replies; 10+ messages in thread
From: William Morgan @ 2007-07-19 18:55 UTC (permalink / raw)
Excerpts from nicholas a. evans's message of Thu Jul 19 11:18:58 -0700 2007:
> Could we get tab completion for setting labels? And also a keymapping
> to set labels from thread-view-mode?
Sure!
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
2007-07-19 18:01 ` William Morgan
@ 2007-07-19 18:18 ` nicholas a. evans
2007-07-19 18:55 ` William Morgan
2007-08-01 16:15 ` William Morgan
0 siblings, 2 replies; 10+ messages in thread
From: nicholas a. evans @ 2007-07-19 18:18 UTC (permalink / raw)
Excerpts from William Morgan's message of Thu Jul 19 14:01:06 -0400 2007:
> Features:
> - GPG support
> - attachment forwarding
> - maybe: tab-completion in to: and cc: for composing messages
>
> Comments? Complaints?
Could we get tab completion for setting labels? And also a keymapping to
set labels from thread-view-mode?
Thanks!
--
Nick
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
2007-07-18 22:21 ` jeff covey
@ 2007-07-19 18:01 ` William Morgan
2007-07-19 18:18 ` nicholas a. evans
0 siblings, 1 reply; 10+ messages in thread
From: William Morgan @ 2007-07-19 18:01 UTC (permalink / raw)
Excerpts from jeff.covey's message of Wed Jul 18 15:21:17 -0700 2007:
> Excerpts from William Morgan's message of Tue Jul 17 21:42:41 -0400 2007:
> > Sup version 0.1 has been released!
> congrats! :)
Thanks! Here's my tentative plans for the next release:
Bug fixes:
- Brian's inbox bug
- Jeff's index.c:901 bug (There's a Ferret trac item for this now.)
Features:
- GPG support
- attachment forwarding
- maybe: tab-completion in to: and cc: for composing messages
Comments? Complaints?
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
2007-07-18 1:42 William Morgan
@ 2007-07-18 22:21 ` jeff covey
2007-07-19 18:01 ` William Morgan
0 siblings, 1 reply; 10+ messages in thread
From: jeff covey @ 2007-07-18 22:21 UTC (permalink / raw)
Excerpts from William Morgan's message of Tue Jul 17 21:42:41 -0400 2007:
> Sup version 0.1 has been released!
congrats! :)
--
jeff covey
http://jeffcovey.net/
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sup-talk] [ANN] Sup 0.1 released
@ 2007-07-18 1:42 William Morgan
2007-07-18 22:21 ` jeff covey
0 siblings, 1 reply; 10+ messages in thread
From: William Morgan @ 2007-07-18 1:42 UTC (permalink / raw)
Sup version 0.1 has been released!
http://sup.rubyforge.org
Sup is a console-based email client for people with a lot of email.
It supports tagging, very fast full-text search, automatic contact-
list management, and more. If you're the type of person who treats
email as an extension of your long-term memory, Sup is for you.
Changes:
== 0.1 / 2007-07-17
* MIME attachment creation.
* i18n support: character set conversion and rfc2047 header decoding.
* Better MIME handling.
* Multiple account support.
* Locking and concurrent Sup process detection and killation.
* Thread autoloading when you scroll down.
* Batch deletion of messages marked deleted or spam from message
sources via sup-sync-back tool (mbox only).
* Millions of bugfixes.
--
William <wmorgan-sup at masanjin.net>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2007-08-19 0:12 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-19 18:58 [sup-talk] [ANN] Sup 0.1 released Eugen Minciu
2007-07-19 20:29 ` William Morgan
2007-08-19 0:12 ` William Morgan
-- strict thread matches above, loose matches on Subject: below --
2007-07-19 20:49 William Morgan
2007-07-18 1:42 William Morgan
2007-07-18 22:21 ` jeff covey
2007-07-19 18:01 ` William Morgan
2007-07-19 18:18 ` nicholas a. evans
2007-07-19 18:55 ` William Morgan
2007-08-01 16:15 ` William Morgan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox