X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=doc%2Fwl.texi;h=21bc00ef68aa8e411fdae948a14a3adba6080a97;hb=8b003dd16e3d4a1f0d29b5fcd0f57a2ee294f967;hp=bd80f48277fc04d6f72e62674423cc3484b10726;hpb=ed7d781c723c46f88ce9ff01cfc766ec19b5b646;p=elisp%2Fwanderlust.git diff --git a/doc/wl.texi b/doc/wl.texi index bd80f48..21bc00e 100644 --- a/doc/wl.texi +++ b/doc/wl.texi @@ -5,7 +5,7 @@ @c %**end of header @documentlanguage en @documentencoding us-ascii -@set VERSION 2.5.8 +@include version.texi @synindex pg cp @finalout @@ -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 @@ -3617,6 +3632,30 @@ cached. @vindex elmo-pop3-use-cache The initial setting is @code{t}. If non-nil, messages read via POP3 are cached. + +@item wl-folder-process-duplicates-alist +@vindex wl-folder-process-duplicates-alist +The initial setting is @code{nil}. +This list determines how to deal with duplicated messages in the same folder. +Each item in the list is regexp of folder name and action; you can specify any +one of the following in the place of action: + +@example +@code{nil} : do nothing for duplicated messages. +@code{hide} : hide duplicated messages from the summary. +@code{read} : set duplicated messages as read. +@end example + +@noindent +Following is an example (hide duplicated messages in multi folders) + +@lisp +@group +(setq wl-folder-process-duplicates-alist + '(("^\\+draft$" . nil) ("^\\+trash$" . nil) + ("^\\*.*" . hide) (".*" . read))) +@end group +@end lisp @end table