[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Issue with Filter Folder and wl-folder-empty-trash
- To: wl-en@ml.gentei.org
- Subject: Issue with Filter Folder and wl-folder-empty-trash
- From: "Herbert J. Skuhra" <hskuhra@eumx.net>
- Date: Sat, 01 Dec 2012 13:34:37 +0100
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed; d=eumx.net; h=date :message-id:from:to:subject:mime-version:content-type; s= default; bh=FUVzlonl7CbtfZ8P+MkF2rUQlpE=; b=KJ2vqCaC8fUIX21gwh3N 7/HeUYPPexk/u577mxNy2Lw9Rq/kG8fa9o2qzKjhejpMPMuLqzWG78NaFMBxEFOS v1Z39X5hbkGzNpEZ9uFGtJzkFNXoifkCHz09Ngq5VT7ygWGTRWyzTQy6YwILcQk4 cYrVLOozW2q9cUvDQnpz0CQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=eumx.net; h=date:message-id :from:to:subject:mime-version:content-type; q=dns; s=default; b= gR9GuehrBGPZPXzKLvQZ6JyNoOVcu8Ki/yy6ZjKupeRE63wJZcPcGqtdVOk37J21 /3Axj5v14ja0KdtZY0XlD1vhQUGuI5+IGQhQTHs3hhc6QzJGOTJxJmJcVloBqeVQ e9JBFVkMv4tpKtmmLBC0wxBnCd4drt4BU33CF5Slhrw=
- List-help: <mailto:wl-en-ctl@ml.gentei.org?body=help>
- List-id: wl-en.ml.gentei.org
- List-owner: <mailto:wl-en-admin@ml.gentei.org>
- List-post: <mailto:wl-en@ml.gentei.org>
- List-software: fml [fml 4.0 STABLE (20040215/4.0.4_BETA)]
- List-unsubscribe: <mailto:wl-en-ctl@ml.gentei.org?body=unsubscribe>
- Reply-to: wl-en@ml.gentei.org
- User-agent: Wanderlust/2.15.9 (Almost Unreal) SEMI-EPG/1.14.7 (Harue) FLIM/1.14.9 (Gojō) APEL/10.8 EasyPG/1.0.0 Emacs/23.4 (i386-unknown-freebsd9.1) MULE/6.0 (HANACHIRUSATO)
Hi,
I've added the follwing filter folders to my config:
/flag:unread/%INBOX "Unread"
/subject:[Spam]/%INBOX "Spam"
While the first folder works, the 2nd one does not show the correct
message numbers:
Inbox:0/275/1977
Unread:0/275/275
Spam:*/*/1977
When I open&close the Spam folder I get the correct counter:
Spam:0/0/1
But after pressing "s" the counter is wrong again (*/*/1977).
With "S" (wl-folder-sync-current-entity) it also works.
And why does '[Spam]' also match 'Spam'?
Do I need some regex magic here?
There is a bug in wl-folder-empty-trash in Emacs 24.x.
The folder stays open in Folder buffer.
What's the best way to disable the "*trace of SMTP session" buffer in
flim? At the moment I use:
diff --git a/smtp.el b/smtp.el
index fe511e9..dfa07b0 100644
--- a/smtp.el
+++ b/smtp.el
@@ -374,7 +374,8 @@ BUFFER may be a buffer or a buffer name which contains mail
(smtp-open-connection (current-buffer) server smtp-service))
(make-local-variable 'smtp-read-point)
(setq smtp-read-point (point-min))
- (funcall smtp-submit-package-function package)))))
+ (funcall smtp-submit-package-function package)
+ (kill-buffer)))))
Thanks.
--
Herbert