Andras Simonyi | 1 Dec 2003 21:14
Picon
Picon
Picon

Re: PGP signature verification

Dear Listers,

many thanks for the answers, now it works. The strange solution was to delete
the mailcap file in my home directory--strange, because there was nothing
pgp-related in it.

Interestingly enough, now I have a problem with some inline-signatures: in
certain cases, if I give the pgg-decrypt-region command after selecting
the region, wl says: invalid base64 data -- I have this problem for example
with the 516th message by S. Hida in this thread.

TIA & best wishes: Andras Simonyi

PS:One minor annoyance:
I like the idea of using the BBDB name in summary's FROM field, but in
this case the setting for displaying the TO instead of FROM in certain
folders doesn't work: I checked the bbdb-wl-from-func function and the code
is not there--unfortunately I don't know enough (yet:-) to change it.

Shinichiro HIDA | 2 Dec 2003 01:36
X-Face
Favicon

Re: PGP signature verification


Hi,

>>>>> In [Wanderlust English : No.00519] 
>>>>>	Andras Simonyi <simka <at> ludens.elte.hu> wrote:

AS> many thanks for the answers, now it works. 

It's Good!

AS> The strange solution was to delete the mailcap file in my home
AS> directory--strange, because there was nothing pgp-related in it.

I don't know sure this point, sorry.  Flim have the codes arround
the mailcap, and perhaps found your mailcap.

;; in the mime-conf.el
;; (defvar mime-mailcap-file "~/.mailcap"
;;   "*File name of user's mailcap file.")

AS> Interestingly enough, now I have a problem with some inline-signatures: in
AS> certain cases, if I give the pgg-decrypt-region command after selecting
AS> the region, wl says: invalid base64 data -- I have this problem for example
AS> with the 516th message by S. Hida in this thread.

Haha.. I think you could not *decrypt*, because I never encrypted
it, just signed. It would be `pgg-verify-region'.

;; And I didn't put my gpg-key at any key-servers, then displayed the
;; prompt as like `could not verify' without you have my gpg
(Continue reading)

YONEKURA Masaki | 2 Dec 2003 11:24
Picon

Re: imap via firewall

米倉です。

>   X-Mail-Count: 09280 のツリーにあったfirewall越しにIMAP接続し、サーバ
> 側でAutologoutされると自動再接続しない問題がうちでも出ました。
> 
>   FW-サーバ間のTCPコネクションがCLOSEDなのにクライアント-FW間が
> ESTABLISHEDなところに問題があるような気がしてますが、詳細はこれから調
> べるつもりです。

  接続後すぐに切断するテストサーバを作っても再現せず、テストの度に30分
待ちする必要があったので、解決まですごい時間が掛かってしまいました(--;

  うちの環境ではサーバから自動切断された後、なにかしらクライアント側か
らsendしないと、process-statusが変化しませんでした。
(tcpdumpとってみるとimapサーバからのBYEがクライアントに届いていないよ
うなので、自動切断しているのはfirewallである可能性が高いようです。)

  そのため、elmo-imap4-send-commandでprocess-statusがclosedに変わり、
elmo-imap4-read-responseのwhileループで永久ループという状態になってい
ました。

・私の場当たり的対応 :-) for wl-2.8.1

(defadvice elmo-imap4-get-session
  (before elmo-imap4-check-session (folder &optional if-exists) activate)
  (unless (elmo-folder-biff-internal folder)
      (let ((session
	     (elmo-network-get-session 'elmo-imap4-session
				       "IMAP" folder if-exists)))
	(elmo-imap4-send-command session "noop")
(Continue reading)

Len Trigg | 2 Dec 2003 22:17
Picon

Sorting messages by size.


I wanted to sort all messages in my junkmail folder so that I could
delete all the largest ones (I keep the others around for spam
filtering purposes). The list archives showed a question asking how to
do this, but no response, so I thought I'd post my solution here.

First, I defined a comparator function for size:

(defun wl-summary-overview-entity-compare-by-size (x y)
   "Compare entity X and Y by size."
  (<
   (elmo-msgdb-overview-entity-get-size x)
   (elmo-msgdb-overview-entity-get-size y)))

This could go into wl-summary.el with the other similar functions.
Then I just invoked the sort manually with the following function:

(defun my-sort-by-size ()
  (interactive)
  (wl-summary-rescan "size"))

I guess you could also add size as an option to the existing sort
method via wl-summary-sort-specs, but I haven't tried it.

Cheers,
Len.

Ron Isaacson | 2 Dec 2003 22:43
Favicon

Re: Detach attachment?

Angus Lees wrote:
> 
> At Wed, 26 Nov 2003 10:27:18 -0500, Ron Isaacson wrote:
> > If I have a message with an attachment in my IMAP box, is there any
> > way to discard the attachment but keep the message? i.e., remove one
> > of the MIME parts and save the message back to my IMAP box.
> 
> 'D' (`wl-message-delete-current-part') in the message buffer.

D'oh. I searched all over for functions with "detach" or "attach" in
the name, but that one does the trick. Thanks!

--
Ron Isaacson
Morgan Stanley
ron.isaacson <at> morganstanley.com / (718) 754-2345

NOTICE: If received in error, please destroy and notify sender.  Sender
does not waive confidentiality or privilege, and use is prohibited.

Ron Isaacson | 3 Dec 2003 16:53
Favicon

Re: Sorting messages by size.

Len Trigg wrote:
> 
> First, I defined a comparator function for size:
> 
> (defun wl-summary-overview-entity-compare-by-size (x y)
>    "Compare entity X and Y by size."
>   (<
>    (elmo-msgdb-overview-entity-get-size x)
>    (elmo-msgdb-overview-entity-get-size y)))

Thanks, this has been on my to-do list for a long time...

> I guess you could also add size as an option to the existing sort
> method via wl-summary-sort-specs, but I haven't tried it.

  (add-to-list 'wl-summary-sort-specs 'size)

works like a charm!

--
Ron Isaacson
Morgan Stanley
ron.isaacson <at> morganstanley.com / (718) 754-2345

NOTICE: If received in error, please destroy and notify sender.  Sender
does not waive confidentiality or privilege, and use is prohibited.

Picon

分割メールのMergeが出来ない

野宮です。

User Agentな環境です(2.11.3でも、同様でした)。
大きなサイズのファイルが添付されたメールを受信し、Merge parts をしよう
としますと、

  Wrong type argument: symbolp, 43

となり、添付ファイルを読めず、困っています。
調べましたら、以前は出来ていた過去メールもMergeが出来なくなっています。

Backtraceを添付しますので、宜しくお願いします。

Attachment (Backtrace.gz): application/octet-stream, 1129 bytes

---
  野宮  賢             mail-to: nomiya <at> ttmy.ne.jp

       「eメールや携帯電話に縛られた社会は、自分自身と向き合ったり、
        空想にふけったりする自由を奪う。」
                                                  -- M. Crichton --
Hiroya Murata | 4 Dec 2003 02:30
Picon

Re: 分割メールのMergeが出来ない

In the message [Wanderlust : No.12533]
   on Thu, 04 Dec 2003 09:58:32 +0900, 野宮 賢 / NOMIYA Masaru wrote:

野宮> User Agentな環境です(2.11.3でも、同様でした)。
野宮> 大きなサイズのファイルが添付されたメールを受信し、Merge
parts をしよう
野宮> としますと、

野宮>   Wrong type argument: symbolp, 43

野宮> となり、添付ファイルを読めず、困っています。

直しました.

;; elmo-mark 枝がマージされてからずっと, 駄目だったみたいですね.

--

-- 
Hiroya Murata (村田 浩也) mailto:lapis-lazuli <at> pop06.odn.ne.jp
PGP fingerprint: 53B6 1B4A 8193 A2D4 1526  BC9E 9AEF 2F6D 249D 5F17

Toshihiko Kodama | 4 Dec 2003 02:49
Picon

フィルタフォルダでのマルチフォルダ


  こだまです。

ちょっと教えてほしいのですが、いつの頃からかうまくフィルタフォルダが
動作していないように思えます。何か仕様等変わったのでしょうか?
infoを見ると大丈夫な気もするのですが。

*+inbox.2000,+inbox.2001,+inbox.2002,+inbox.2003                ※1
/tocc:drac80 <at> /+inbox.2003                                       ※2
/tocc:drac80 <at> /*+inbox.2000,+inbox.2001,+inbox.2002,+inbox.2003  ※3

※1のフォルダで"To"指定で"drac80 <at> "を検索した場合は問題ありません。
※2も問題なく検索出来ています。
※3は何もメッセージがヒットしません。

現象自体は結構前に気が付いていたのですが、忙しくて放置していました。
--

-- 
  富士通(株)  エンタプライズシステム事業本部 Eサーバ事業部)第三開発部
  小玉 利彦 (Kodama Toshihiko)      kodama <at> ayame.mfd.cs.fujitsu.co.jp
  TEL:044-754-3245 / ext:7113-4833

Picon

Re: 分割メールのMergeが出来ない

野宮です。

>>>>> In the Message: [Wanderlust ML: No.12534]
>>>>>   with the date of Thu, 04 Dec 2003 10:30:21 +0900
>>>>> [村田さん] == Hiroya Murata <lapis-lazuli <at> pop06.odn.ne.jp> has written:

小生> 大きなサイズのファイルが添付されたメールを受信し、Merge
parts をしよう
小生> としますと、

小生>   Wrong type argument: symbolp, 43

小生> となり、添付ファイルを読めず、困っています。

村田さん> 直しました.

早速試しましたところ、今度は、「Not all partials found」となります。
宜しくお願い致します。m(_ _)m

---
  野宮  賢             mail-to: nomiya <at> ttmy.ne.jp

          "Bill! You married with Computers.
           Not with Me!"
          "No..., with money."


Gmane