From: kaoru Date: Mon, 14 May 2001 06:03:17 +0000 (+0000) Subject: Fixed description `elmo-default-imap4-stream-type'. X-Git-Tag: wl-2_6-root~32 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0a5b00bb2e0066bc8194bd3fe6ab262d4c60edc5;p=elisp%2Fwanderlust.git Fixed description `elmo-default-imap4-stream-type'. Add some example for @code{} markuped symbol. --- diff --git a/doc/wl-ja.texi b/doc/wl-ja.texi index e6f01ce..07d57ec 100644 --- a/doc/wl-ja.texi +++ b/doc/wl-ja.texi @@ -776,9 +776,9 @@ default 値: 初期設定は 環境変数 @env{USER} か、@env{LOGNAME} か、 @code{(user-login-name)} の返り値。 認証法 -> 変数 @code{elmo-default-imap4-authenticate-type} の値。 - 初期設定は 'login。 + 初期設定は @code{login}。 ホスト名 -> 変数 @code{elmo-default-imap4-server} の値。 - 初期設定は "localhost"。 + 初期設定は @samp{localhost}。 ポート番号-> 変数 @code{elmo-default-imap4-port} の値。 初期設定は 143。 @end example @@ -788,11 +788,21 @@ default 値: イアウォールを越えなければならない場合でも @samp{foo%imap@@gateway} のよ うに指定できます。 +@lisp +;; 例: imap4.exaple.org をメインで使用する IMAP サーバとして設定 +(setq elmo-default-imap4-server "imap4.example.org") +@end lisp + フォルダ名の最後に @samp{!} が付いていると、SSL (Secure Socket Layer)を 利用してコネクションを張ります。@samp{!!} だと、STARTTLS によりSSLコネク ションを張ります。変数 @code{elmo-default-imap4-stream-type} の値が -non-nil なら、@samp{!} を付けなくても SSL を使います。'starttls なら -@samp{!!} を意味します。 +@code{ssl} なら、@samp{!} を付けなくても SSL を使います。@code{starttls} +なら @samp{!!} を意味します。 + +@lisp +;; 例: SSL を利用してコネクションを張る +(setq elmo-default-imap4-stream-type 'ssl) +@end lisp (SSL を利用するには 本パッケージの @file{utils/ssl.el} をインストールす る必要があります。なおかつ、OpenSSLに含まれる @command{openssl} にパスが @@ -806,6 +816,11 @@ non-nil なら、@samp{!} を付けなくても SSL を使います。'starttl @code{elmo-imap4-force-login} が non-nil ならば、確認無しに @code{clear} に切替えます(初期設定は @code{nil})。 +@lisp +;; 例: 生パスワードで認証 +(setq elmo-default-imap4-authenticate-type 'clear) +@end lisp + 例: @example diff --git a/doc/wl.texi b/doc/wl.texi index bd80f48..d3e0ba7 100644 --- a/doc/wl.texi +++ b/doc/wl.texi @@ -762,12 +762,22 @@ You can omit the @var{hostname} from folder names if you set For example, you can specify a folder as @samp{foo%imap@@gateway} even if you have to go through a firewall. +@lisp +;; Example: imap4.exaple.org as main IMAP server +(setq elmo-default-imap4-server "imap4.example.org") +@end lisp + SSL (Secure Socket Layer) connection will be used if a folder name ends with @samp{!}. Or, if the value of @code{elmo-default-imap4-stream-type} -is non-nil, SSL will be the default connection. If a folder name ends -with @samp{!!}, STARTTLS connection will be established. If the value -of @code{elmo-default-imap4-stream-type} is @code{starttls}, STARTTLS -will be the default connection. +is @code{ssl}, SSL will be the default connection. If a folder name +ends with @samp{!!}, STARTTLS connection will be established. If the +value of @code{elmo-default-imap4-stream-type} is @code{starttls}, +STARTTLS will be the default connection. + +@lisp +;; Example: Use SSL connection +(setq elmo-default-imap4-stream-type 'ssl) +@end lisp If you specify @code{login}, @code{cram-md5} or @code{digest-md5} as authentication method, the password is sent in encoded form. But, if @@ -777,6 +787,11 @@ after confirmation to user. If @code{elmo-imap4-force-login} is non-nil, authentication will fall back to @code{clear} without confirmation (default value is @code{nil}). +@lisp +;; Example: password in raw format +(setq elmo-default-imap4-authenticate-type 'clear) +@end lisp + Example: @example