1 Apr 2010 08:24
1 Apr 2010 15:16
Re: Try tmux to replace screen, was: How to spawn terminal/screen to reply to messages separately?
Yue Wu <vanopen <at> gmail.com>
2010-04-01 13:16:37 GMT
2010-04-01 13:16:37 GMT
On Tue, Mar 30, 2010 at 11:38:09PM -0400, Patrick Shanahan wrote: > > yes, tmux is a replacement for screen functions. > Don't know if tmux supports detach then reboot then reattach in local OS? -- -- Regards, Yue Wu Key Laboratory of Modern Chinese Medicines Department of Traditional Chinese Medicine China Pharmaceutical University No.24, Tongjia Xiang Street, Nanjing 210009, China
1 Apr 2010 16:07
Re: Date pattern and week number
On Thu, Apr 01, 2010 at 08:24:48AM +0200, Jostein Berntsen wrote: > Is it possible to limit the mail view to a specific week by using just > the week number with the date pattern in some way? Mutt's date patterns only support match by weeks in the relative date format, not the absolute format, so it isn't possible to match a specific week in the year by number. me
1 Apr 2010 17:27
[PATCH] Add 'uncollapse_view' option.
Simon Ruderich <simon <at> ruderich.org>
2010-04-01 15:27:45 GMT
2010-04-01 15:27:45 GMT
Hi, This was requested on #mutt some time ago and I thought it may be useful to others as well. It doesn't change the default behavour. If it would get included into mutt I would be happy as well(Continue reading)Thanks, Simon Prevents uncollapse of threads when they are viewed. --- curs_main.c | 4 +++- init.h | 6 ++++++ mutt.h | 1 + 3 files changed, 10 insertions(+), 1 deletions(-) diff --git a/curs_main.c b/curs_main.c index 58d5305..45e5779 100644 --- a/curs_main.c +++ b/curs_main.c <at> <at> -1191,7 +1191,9 <at> <at> int mutt_index_menu (void) unset_option (OPTNEEDRESORT); - if ((Sort & SORT_MASK) == SORT_THREADS && CURHDR->collapsed) + /* Uncollapse the thread when viewing it if "uncollapse_view" is set. */ + if ((Sort & SORT_MASK) == SORT_THREADS && CURHDR->collapsed && + option (OPTUNCOLLAPSEVIEW)) { mutt_uncollapse_thread (Context, CURHDR);
1 Apr 2010 21:58
Re: Try tmux to replace screen, was: How to spawn terminal/screen to reply to messages separately?
Patrick Shanahan <ptilopteri <at> gmail.com>
2010-04-01 19:58:51 GMT
2010-04-01 19:58:51 GMT
* Yue Wu <vanopen <at> gmail.com> [04-01-10 09:18]: > On Tue, Mar 30, 2010 at 11:38:09PM -0400, Patrick Shanahan wrote: > > > > yes, tmux is a replacement for screen functions. > > > > Don't know if tmux supports detach then reboot then reattach in local OS? Neither screen nor tmux can survive reboot of the host system. Both can survive reboot of a remote system. -- -- Patrick Shanahan Plainfield, Indiana, USA HOG # US1244711 http://wahoo.no-ip.org Photo Album: http://wahoo.no-ip.org/gallery2 Registered Linux User #207535 <at> http://counter.li.org
2 Apr 2010 06:01
Re: Try tmux to replace screen, was: How to spawn terminal/screen to reply to messages separately?
Yue Wu <vanopen <at> gmail.com>
2010-04-02 04:01:01 GMT
2010-04-02 04:01:01 GMT
On Thu, Apr 01, 2010 at 03:58:51PM -0400, Patrick Shanahan wrote: > > > > Don't know if tmux supports detach then reboot then reattach in local OS? > > Neither screen nor tmux can survive reboot of the host system. Both can > survive reboot of a remote system. Yes, I just want to know if tmux has such super feature :) Seems it's impossible at present. -- -- Regards, Yue Wu Key Laboratory of Modern Chinese Medicines Department of Traditional Chinese Medicine China Pharmaceutical University No.24, Tongjia Xiang Street, Nanjing 210009, China
4 Apr 2010 01:08
Is there a modernized procmail?
Yue Wu <vanopen <at> gmail.com>
2010-04-03 23:08:18 GMT
2010-04-03 23:08:18 GMT
Hi, list, Is there one modernized procmail? The biggest complain on procmail is that it doesn't support multibyte charactors at all(w/o dirty trick). Or maybe there is one better replacement for filtering the mails? I'm seaking the infos to make my mutt work with imap(offlineimap?). -- -- Regards, Yue Wu Key Laboratory of Modern Chinese Medicines Department of Traditional Chinese Medicine China Pharmaceutical University No.24, Tongjia Xiang Street, Nanjing 210009, China
4 Apr 2010 03:54
Re: Is there a modernized procmail?
Freeman <evenso <at> worldwidehtml.com>
2010-04-04 01:54:13 GMT
2010-04-04 01:54:13 GMT
On Sun, Apr 04, 2010 at 07:08:18AM +0800, Yue Wu wrote: > Hi, list, > > Is there one modernized procmail? The biggest complain on procmail is that it > doesn't support multibyte charactors at all(w/o dirty trick). Or maybe there > is one better replacement for filtering the mails? I'm seaking the infos to > make my mutt work with imap(offlineimap?). > > -- I think it comes down to maildrop. http://www.courier-mta.org/maildrop/maildropfilter.html -- -- Kind Regards, Freeman http://bugs.debian.org/release-critical/
4 Apr 2010 12:29
Re: Is there a modernized procmail?
Zeerak Mustafa Waseem <zeerak.w <at> gmail.com>
2010-04-04 10:29:03 GMT
2010-04-04 10:29:03 GMT
On Sun, Apr 04, 2010 at 07:08:18AM +0800, Yue Wu wrote: > Hi, list, > > Is there one modernized procmail? The biggest complain on procmail is that it > doesn't support multibyte charactors at all(w/o dirty trick). Or maybe there > is one better replacement for filtering the mails? I'm seaking the infos to > make my mutt work with imap(offlineimap?). > > -- > Regards, > Yue Wu > > Key Laboratory of Modern Chinese Medicines > Department of Traditional Chinese Medicine > China Pharmaceutical University > No.24, Tongjia Xiang Street, Nanjing 210009, China As far as offline imap goes there are some good ressources for it around the web. And for online imap, well if you only have one account google should be enough, if there are more you might want to look through the list archives for these three mails (there may be minor errors in the names, but they are all called something along the lines of what I've written): Multiple imap accounts Need help on setting multiple accounts imap and mailboxes -- -- Zeerak Waseem
5 Apr 2010 09:29
deleting new mails in a thread already seen and deleted
Matthias Apitz <guru <at> unixarea.de>
2010-04-05 07:29:13 GMT
2010-04-05 07:29:13 GMT
Hello, Is it somehow possible delete a mail and mark the same thread as unwanted, i.e. that new mails arriving in this thread will be automagically deleted without being presented? Thanks matthias -- -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e <guru <at> unixarea.de> - w http://www.unixarea.de/ Solidarity with the imperialistic Israel? Not in my name! ¿Solidaridad con el imperialismo de Israel? ¡No en mi nombre!
Thanks,
Simon
Prevents uncollapse of threads when they are viewed.
---
curs_main.c | 4 +++-
init.h | 6 ++++++
mutt.h | 1 +
3 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/curs_main.c b/curs_main.c
index 58d5305..45e5779 100644
--- a/curs_main.c
+++ b/curs_main.c
<at> <at> -1191,7 +1191,9 <at> <at> int mutt_index_menu (void)
unset_option (OPTNEEDRESORT);
- if ((Sort & SORT_MASK) == SORT_THREADS && CURHDR->collapsed)
+ /* Uncollapse the thread when viewing it if "uncollapse_view" is set. */
+ if ((Sort & SORT_MASK) == SORT_THREADS && CURHDR->collapsed &&
+ option (OPTUNCOLLAPSEVIEW))
{
mutt_uncollapse_thread (Context, CURHDR);
RSS Feed