Hiroya Murata | 1 Apr 2004 03:20
Picon

Re: Refiling on IMAP server

;; 日本語です. すみません.

In the message [Wanderlust English : No.00631]
   on Thu, 01 Apr 2004 07:30:00 +0900, Yoichi NAKAYAMA wrote:

> Since there was no objection, I've committed it on cvs trunk.

調べて書いてる訳ではないので, おかしな事を言ってるかもしれません
が...

imap の場合, LIST コマンドの返すセパレータを使う様にした方が良い
のではないですか?

--

-- 
Hiroya Murata (村田 浩也) mailto:lapis-lazuli <at> pop06.odn.ne.jp
PGP fingerprint: 53B6 1B4A 8193 A2D4 1526  BC9E 9AEF 2F6D 249D 5F17
;; 時間ないので言うだけ...

Yoichi NAKAYAMA | 2 Apr 2004 05:46
Gravatar

Office での添付ファイルの表示

なかやまです
Windows で使っている時に、添付されてきた word や excel
のファイルを見るのに、一旦保存してから見ているのですが、
message buffer から Word/Excel を直接立ち上げるのことは
できますか?できるならどういう設定をすればよいのでしょうか。
# linux の時は octet.el を使って Emacs 内で見ています。
--

-- 
Yoichi NAKAYAMA

Shuntaro Yamazaki | 2 Apr 2004 06:17
X-Face
Picon

Re: Office での添付ファイルの表示

~/.mailcap に

application/msword;	cmd /c start /wait %s;

と一行書くとできます.Windows XP で動作を確認しています.

--
山崎 俊太郎

> Windows で使っている時に、添付されてきた word や excel
> のファイルを見るのに、一旦保存してから見ているのですが、
> message buffer から Word/Excel を直接立ち上げるのことは
> できますか?できるならどういう設定をすればよいのでしょうか。

Kousuke Taniguchi | 2 Apr 2004 07:07
Picon

Forward: Re: Office での添付ファイルの表示

wanderlustのMLの情報です。
あとPowerPointとかを素で添付しておくると
「*.datってなってるんだけど」というのは
.emacsとか.wlで設定する方法もあるとは思いますけど
semiのmime-edit.elに
 "application" "msword" nil
 "application" "vnd.ms-powerpoint" nil
を加えるとOutlookでちゃんと認識します。
--
*********************************
 Uchida Yoko Co.,ltd
 Kousuke Taniguchi
 mailto:tani19 <at> uchida.co.jp
*********************************

X-Face Picon
From: Shuntaro Yamazaki <shun <at> cvl.iis.u-tokyo.ac.jp>
Subject: Re: Office での添付ファイルの表示
Date: 2004-04-02 04:17:33 GMT
~/.mailcap に

application/msword;	cmd /c start /wait %s;

(Continue reading)

Kousuke Taniguchi | 2 Apr 2004 08:53
Picon

Re: Forward: Re: Office での添付ファイルの表示

谷口と申します。

職場の同僚に転送する際に誤送信をしてしました。
申し訳ありません。

今後同様の間違いをしない為にも質問させて下さい。

Summaryモードで`f'して転送用のドラフトを作成し、
`C-a'でアドレス帳を開いたときには元のメールの
To:Cc:が既に選択されています。

プレビューして確認しなさいという話がもっともなのですが、
アドレス帳を開いた時に転送元のメールの送り先が選択されていない
状態にはならないでしょうか?

--
*********************************
 Uchida Yoko Co.,ltd
 Kousuke Taniguchi
 mailto:tani19 <at> uchida.co.jp
*********************************

Hiroya Murata | 2 Apr 2004 09:59
Picon

Re: Forward: Re: Office での添付ファイルの表示

In the message [Wanderlust : No.12825]
   on Fri, 02 Apr 2004 15:53:52 +0900, Kousuke Taniguchi wrote:

> Summaryモードで`f'して転送用のドラフトを作成し、
> `C-a'でアドレス帳を開いたときには元のメールの
> To:Cc:が既に選択されています。

現在のドラフトの宛先を選択状態にするのが目的の筈なので, 上記の動
作は単に転送の場合が考慮されていなかっただけだと思います.

ですので,

> プレビューして確認しなさいという話がもっともなのですが、
> アドレス帳を開いた時に転送元のメールの送り先が選択されていない
> 状態にはならないでしょうか?

この様に変更してみました. (幹の先端のみ)

--

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

Colin Rafferty | 2 Apr 2004 16:03
Favicon

patch about mail-header-separator

My mail-header-separator is just ".".  This breaks the wl-highlight.el
because it doesn't always regexp-quote it, and doesn't bracket it by ^$.

Here is the patch against version 2.10.1.

-- Colin

--- wl-highlight.el~	2004-04-02 08:41:44.000000000 -0500
+++ wl-highlight.el	2004-04-02 08:28:03.000000000 -0500
 <at>  <at>  -1122,7 +1122,7  <at>  <at> 
 	    ;; If this search fails then the narrowing performed above
 	    ;; is sufficient
 	    (if (re-search-forward (format
-				    "^$\\|%s"
+				    "^\\(%s\\)?$"
 				    (regexp-quote mail-header-separator))
 				   nil t)
 		(narrow-to-region (point-min) (match-beginning 0)))
 <at>  <at>  -1158,7 +1158,7  <at>  <at> 
 	  (let (prefix prefix-face-alist pair end)
 	    (while (not (eobp))
 	      (cond
-	       ((looking-at mail-header-separator)
+	       ((looking-at (concat "^" (regexp-quote mail-header-separator) "$"))
 		(put-text-property (match-beginning 0) (match-end 0)
 				   'face 'wl-highlight-header-separator-face)
 		(goto-char (match-end 0)))
(Continue reading)

Colin Rafferty | 2 Apr 2004 16:41
Favicon

not moving forward

Hi-

I just switched to WL from VM, so that I can use my company's IMAP as
IMAP rather than sucking everything down.

So far, it's working great for me.  It's a great mail reader.

However, I have a few customization issues that I can't seem to find
after reading the manual and grepping the source.

1. When I delete a message (wl-summary-delete), it moves to the next
   (or previous) message and displays it.  How do I stop WL from
   displaying a message that is unread?

2. I would like to hook w3 as the html viewer rather than an external
   program.  How can I do this?

3. 

Colin Rafferty | 2 Apr 2004 16:44
Favicon

not moving forward

Hi-

Apologies about the previous mail.  I'm still learning the key
bindings.

I just switched to WL from VM, so that I can use my company's IMAP as
IMAP rather than sucking everything down.

So far, it's working great for me.  It's a great mail reader.

However, I have a few customization issues that I can't seem to find
after reading the manual and grepping the source.

1. When I delete a message (wl-summary-delete), it moves to the next
   (or previous) message and displays it.  How do I stop WL from
   displaying a message that is unread?

2. I would like to hook w3 as the html viewer rather than an external
   program.  How can I do this?

3. Is there a way to read mbox style mail in WL?  I have tons of
   existing VM folders that I would like to be able to read (and write
   to).

Thanks.

--

-- 
Colin

(Continue reading)

Yoichi NAKAYAMA | 3 Apr 2004 03:52
X-Face
Gravatar

Re: patch about mail-header-separator

At Fri, 02 Apr 2004 09:03:25 -0500, Colin Rafferty wrote:
> My mail-header-separator is just ".".  This breaks the wl-highlight.el
> because it doesn't always regexp-quote it, and doesn't bracket it by ^$.
> 
> Here is the patch against version 2.10.1.

Thanks. Committed to the cvs trunk.
--

-- 
Yoichi NAKAYAMA


Gmane