[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.4 `.emacs', `.wl' の設定

Wanderlust のパッケージは、大きく分けて二つのモジュール群を含んでいます。

`ELMO (elmo-*.el)'
すべてをフォルダに見せるモジュール群です。WL のバックエンドです。
`WL (wl-*.el)'
Wanderlust 本体の動作を決めるモジュール群です。ELMO のフロントエンドです。

ユーザは elmo-, wl- で始まる変数の設定を変えることによって Wanderlust の動作をカスタマイズできます。

最低限必要な設定は以下の通りです。

 
;; autoload の設定
;; (XEmacs の package としてインストールした場合は必要ありません)
(autoload 'wl "wl" "Wanderlust" t)
(autoload 'wl-other-frame "wl" "Wanderlust on new frame." t)
(autoload 'wl-draft "wl-draft" "Write draft with Wanderlust." t)

;; アイコンを置くディレクトリ。初期設定は Emacs 固有のデフォルト値。
;; (デフォルトの値が正しければ必要ありません)
(setq wl-icon-directory "~/work/wl/etc")

;; メールを送信する SMTP サーバ。 初期設定は nil。
(setq wl-smtp-posting-server "your.smtp.example.com")
;; ニュース投稿用の NNTP サーバ。 初期設定は nil。
(setq wl-nntp-posting-server "your.nntp.example.com")

Wanderlust 起動後、`~/.wl' が存在すればそれをロードします。したがって Wanderlust に固有の設定は `~/.wl' に記述しておくと整理しやすいでしょ う。face の設定は `~/.emacs' に書くことはできないので`~/.wl' に書いてください。See section 13.2 ハイライトの設定.

上記のうち、autoload の設定は `~/.emacs' に書く必要があります。 それ以外の設定は `~/.wl' に記述できます。



This document was generated by Yuuichi Teranishi on February, 19 2005 using texi2html