Kenichi Okada | 1 Jun 2005 04:11
X-Face

Re: STARTTLS before AUTH

Hi,

> Am I right? Can someone change this behaviour so that STARTTLS be called
> before AUTH part?

No.

STARTTLS is done before AUTH.

> (setq wl-smtp-connection-type 'starttsl)
> (setq smtp-use-starttls t)
> (setq smtp-use-starttls-ignore-error t)
> (setq wl-smtp-posting-server "smtp.ira.uka.de")

Please try the following config.
(setq wl-smtp-connection-type 'starttls)
                                    ^^^

smtp-use-starttls is overridden by wl-smtp-connection-type.

Regards,

--

-- 
Kenichi Okada
mailto:okada <at> opaopa.org

Hiroya Murata | 1 Jun 2005 12:15
Picon

Re: <at> 入りフォルダ名

In the message [Wanderlust : No.13644]
   on Tue, 31 May 2005 19:58:01 +0900, Yuuichi Teranishi wrote:

> * access フォルダで、特別な文字が出てきたら、quoted でエスケープする
>   処理をどこかで入れる
> * net-folder でフォルダ名を左から右に parse するようにする

これ, やってみました.

POP フォルダでちゃんとアクセス出来るので, parse の方は大丈夫そうで
すが, imap の環境はないので, パッチで出します. 誰か確認して下さい.

;; 函数名とか適当なので, 直して commit して頂いても構いません.

--

-- 
Hiroya Murata (村田 浩也) mailto:lapis-lazuli <at> pop06.odn.ne.jp
PGP fingerprint: 53B6 1B4A 8193 A2D4 1526  BC9E 9AEF 2F6D 249D 5F17
Attachment (elmo-quote-folder-name.patch): application/octet-stream, 2669 bytes
KENMOTSU Shinichi | 2 Jun 2005 08:18
Picon

アーカイブフォルダの作成方法

こんにちは。けんもつといいます。

以前使っていた別のメーラ(Edmax)で受信したメールを Wanderlust のアーカイ
ブフォルダで扱いたく作業していたのですが、アーカイブフォルダとして使え
なくて困っています。

wl で扱いたいメールを 1メール 1ファイルにして zip で old_hoge.zip のよ
うにアーカイブしました。これをアーカイブフォルダとして見立てればよいと
考えて .folder に

  $old_hoge.zip

のように追加しましたが、フォルダ一覧から開くと

  No updates for "$old_hoge.zip".

と表示されるだけでメールのリストが表示されません。たぶん、メールリスト
の更新のような作業が必要だと思い調べてみましたが、分かりませんでした。

すみませんが、どのようにすれば自分でアーカイブフォルダを作成することが
できるのでしょうか?

よろしく御願いします。

----
けんもつ

Hiroya Murata | 2 Jun 2005 08:50
Picon

Re: アーカイブフォルダの作成方法

In the message [Wanderlust : No.13646]
   on Thu, 02 Jun 2005 15:18:17 +0900, KENMOTSU Shinichi wrote:

> wl で扱いたいメールを 1メール 1ファイルにして zip で old_hoge.zip のよ
> うにアーカイブしました。これをアーカイブフォルダとして見立てればよいと
> 考えて .folder に

>   $old_hoge.zip

(let ((f (elmo-make-folder "$old_hoge.zip" t)))
  (elmo-archive-get-archive-name f))

試しに, ↑の式を *scratch* バッファにコピーして評価すると, どうな
りますか?

;; ~/Mail/hoge にでも, ファイルを展開して $hoge.zip とかにリファイ
;; ルするって手もありますが.

--

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

KENMOTSU Shinichi | 2 Jun 2005 09:46
Picon

Re: アーカイブフォルダの作成方法

こんにちは。けんもつです。
返信ありがとうございます。

> > wl で扱いたいメールを 1メール 1ファイルにして zip で old_hoge.zip のよ
> > うにアーカイブしました。これをアーカイブフォルダとして見立てればよいと
> > 考えて .folder に
> >   $old_hoge.zip
> 
> (let ((f (elmo-make-folder "$old_hoge.zip" t)))
>   (elmo-archive-get-archive-name f))
> 試しに, ↑の式を *scratch* バッファにコピーして評価すると, どうな
> りますか?

ミニバッファに
  "e:/home/Mail/old_hoge.zip"
と表示されました。

> ;; ~/Mail/hoge にでも, ファイルを展開して $hoge.zip とかにリファイ
> ;; ルするって手もありますが.

アーカイブにまとめないで MH フォルダに展開する方法では、移行したメール
を閲覧できたので、手動でアーカイブフォルダに入れるのが正攻法なんでしょうね。

ただ、wl に移行したいメールフォルダが
40個もあるのでできれば、zip した
ファイルをフォルダに見立てたいところです。

すみませんが、よろしく御願い致します。

----
(Continue reading)

KENMOTSU Shinichi | 2 Jun 2005 09:59
Picon

Re: アーカイブフォルダの作成方法

こんにちは。けんもつです。

自己フォローです。

> > > wl で扱いたいメールを 1メール 1ファイルにして zip で old_hoge.zip のよ
> > > うにアーカイブしました。これをアーカイブフォルダとして見立てればよいと
> > > 考えて .folder に
> > >   $old_hoge.zip
> > 
> > (let ((f (elmo-make-folder "$old_hoge.zip" t)))
> >   (elmo-archive-get-archive-name f))
> > 試しに, ↑の式を *scratch* バッファにコピーして評価すると, どうな
> > りますか?
> 
> ミニバッファに
>   "e:/home/Mail/old_hoge.zip"
> と表示されました。
>  
> > ;; ~/Mail/hoge にでも, ファイルを展開して $hoge.zip とかにリファイ
> > ;; ルするって手もありますが.
> 
> アーカイブにまとめないで MH フォルダに展開する方法では、移行したメール
> を閲覧できたので、手動でアーカイブフォルダに入れるのが正攻法なんでしょうね。
> ただ、wl に移行したいメールフォルダが
40個もあるのでできれば、zip した
> ファイルをフォルダに見立てたいところです。

作成した old_hoge.zip に .elmo-archive が入ってなかったためでした!
.elmo-archive を追加したところフォルダを開くと自動的に再構成を行ってメー
ルを表示できました。
(Continue reading)

Juergen Fuhrmann | 2 Jun 2005 17:54
Picon
Favicon

Re: How to force text/plain; charset=ISO-8859-1?

At Fri, 27 May 2005 22:31:23 -0400,
Lloyd Zusman wrote:
> 
[...]
> 
> The issue wasn't the character encoding itself; that seemed to already
> be correct iso-8859-1 encoding.  Rather, the problem was the fact that
> the "charset=UTF-8" which appeared in the "Content-Type" header was
> confusing the email clients of certain recipients, and they couldn't see
> the 8-bit characters that I typed.  As soon as I set the three variables
> as above, the messages went out marked with "charset=iso-8859-1", and
> the recipients could read the 8bit characters.
>
> I know that this is probably more of a problem with the brain-damaged
> email clients of the recipients in question.  Nonetheless, I want to
> accomodate them by making sure that "charset=iso-8859-1" is set in the
> header of the messages that I send to them.
> 

Hi, 

exactly this  was the reason  for me to  figure this out. I  sent some
messages  with very  serious  content  to an  official  place where  I
applied for funding  and figured out from their  replies that they are
not able to  see German umlauts äöüß in  UTF8 encoding =:-o.  Probably
they use some older version of  Outlook. The same issue I had with our
web mailer based on OpenGroupware.org  which even crashed with UTF8 in
the subject line...

Another  point is  that I  still  work sometimes  on non-UTF8  enabled
(Continue reading)

kyu | 4 Jun 2005 04:58
Picon

wl compile

Hi guys, i'm having a problem getting wl to compile, sys info is as follows:

	Gnu Emacs 21.3
	Apel 10.6
	Flin 1.14.6
	Semi 1.14.6

Make output:

snapz: wl-2.14.0 > make
emacs -batch -q -no-site-file -l WL-MK -f compile-wl-package  NONE NONE
Loading ./WL-CFG...
Loading ./WL-ELS...
Loading mail-mime-setup...
Loading /usr/local/libexec/emacs/21.3/i386-unknown-openbsd3.7/fns-21.3.1.el (source)...
gnus-mime-setup is not found.
emh-setup is not found.
LISPDIR is /usr/local/share/emacs/site-lisp
PIXMAPDIR is /usr/local/share/emacs/21.3/etc/wl/icons/


Wrote /home/kyu/wl-2.14.0/wl/wl-news.el
Wrote /home/kyu/wl-2.14.0/elmo/utf7.elc
Wrote /home/kyu/wl-2.14.0/elmo/pldap.elc
Wrote /home/kyu/wl-2.14.0/elmo/acap.elc
Wrote /home/kyu/wl-2.14.0/elmo/slp.elc
Wrote /home/kyu/wl-2.14.0/elmo/mmimap.elc
Wrote /home/kyu/wl-2.14.0/elmo/elmo-signal.elc
Wrote /home/kyu/wl-2.14.0/elmo/elmo-date.elc
Wrote /home/kyu/wl-2.14.0/elmo/elmo-util.elc
(Continue reading)

Hiroya Murata | 4 Jun 2005 06:31
Picon

Re: wl-message-verify-pgp-nonmime failed for decrypted non PGP/MIME message


In the message [Wanderlust : No.13631]
   on Fri, 22 Apr 2005 19:11:21 +0900, Tetsurou Okazaki wrote:

> PGP でクリア署名 + 暗号化された非PGP/MIMEなメッセージを検証しようとしています。

[...]

> 2.
によって復号化されたクリア署名メッセージではなく、(with-temp-bufer
... ) 
> 内の (mime-entity-body entity) で返される暗号化された状態のメッセージに対して、
> クリア署名メッセージの armor header である "-----BEGIN PGP SIGNED MESSAGE-----"
> を探そうとして失敗しているみたいです。

original buffer を使わず, 常に message buffer の内容を encode して
verify する様にしてみました.

後, elmo-mark をマージした時に coding-system を指定する機能が落ち
てしまっていた様なので, 前置引数を付けると (C-u C-c : v) 聞いてく
る様にしました.

無指定の場合は, そのパートの charset で encode してから verify し
ます. sign + encrypt の場合, US-ASCII になっている場合が殆どだと思
いますので, 明示的に coding-system を指定して verify して下さい.

;; 試しに sign して送ります.

--

-- 
Hiroya Murata (村田 浩也) <lapis-lazuli <at> pop06.odn.ne.jp>
(Continue reading)

Hiroya Murata | 4 Jun 2005 11:08
Picon

sref in filename.el (was Re: 添付ファイルをディスクに保存できない)

;; apel-ja に振ります.

In the message [Wanderlust : No.13637]
   on Thu, 19 May 2005 07:29:19 +0900, Katsumi Yamaoka wrote:

> >>>>> In [Wanderlust : No.13635] 野宮 賢さん wrote:

> >   void function: sref

> > Emacs 22.05.01 の問題であることが解りました。

> Wanderlust では sref を使っていないようですね。これは 20.2 以前
> の Emacs で日本語などの文字列を切り出す場合に必要な関数です。

どうやら, filename-special-filter (in filename.el) で sref が使わ
れている様です.

CVS 先端の emacs (と Meadow-3.00) では, sref の定義が削除されてし
まっているので, 対応する必要があると思いますが, 単に aref に置き換
えてしまって問題ないでしょうか?

逆に, 古い emacs 用に aref を emulate する必要がありますか?

--

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


Gmane