comparison lisp/gnus/imap.el @ 47129:dd529e3b965b

(imap-authenticator-alist, imap-stream-alist, imap-continuation): Fix typos.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 30 Aug 2002 11:10:30 +0000
parents 7308bbc423d5
children 52d99cc2e9e3
comparison
equal deleted inserted replaced
47128:119560f22343 47129:dd529e3b965b
238 (network imap-network-p imap-network-open) 238 (network imap-network-p imap-network-open)
239 (shell imap-shell-p imap-shell-open) 239 (shell imap-shell-p imap-shell-open)
240 (starttls imap-starttls-p imap-starttls-open)) 240 (starttls imap-starttls-p imap-starttls-open))
241 "Definition of network streams. 241 "Definition of network streams.
242 242
243 (NAME CHECK OPEN) 243 \(NAME CHECK OPEN)
244 244
245 NAME names the stream, CHECK is a function returning non-nil if the 245 NAME names the stream, CHECK is a function returning non-nil if the
246 server support the stream and OPEN is a function for opening the 246 server supports the stream and OPEN is a function for opening the
247 stream.") 247 stream.")
248 248
249 (defvar imap-authenticators '(gssapi 249 (defvar imap-authenticators '(gssapi
250 kerberos4 250 kerberos4
251 digest-md5 251 digest-md5
261 (login imap-login-p imap-login-auth) 261 (login imap-login-p imap-login-auth)
262 (anonymous imap-anonymous-p imap-anonymous-auth) 262 (anonymous imap-anonymous-p imap-anonymous-auth)
263 (digest-md5 imap-digest-md5-p imap-digest-md5-auth)) 263 (digest-md5 imap-digest-md5-p imap-digest-md5-auth))
264 "Definition of authenticators. 264 "Definition of authenticators.
265 265
266 (NAME CHECK AUTHENTICATE) 266 \(NAME CHECK AUTHENTICATE)
267 267
268 NAME names the authenticator. CHECK is a function returning non-nil if 268 NAME names the authenticator. CHECK is a function returning non-nil if
269 the server support the authenticator and AUTHENTICATE is a function 269 the server support the authenticator and AUTHENTICATE is a function
270 for doing the actuall authentification.") 270 for doing the actual authentication.")
271 271
272 (defvar imap-use-utf7 t 272 (defvar imap-use-utf7 t
273 "If non-nil, do utf7 encoding/decoding of mailbox names. 273 "If non-nil, do utf7 encoding/decoding of mailbox names.
274 Since the UTF7 decoding currently only decodes into ISO-8859-1 274 Since the UTF7 decoding currently only decodes into ISO-8859-1
275 characters, you may disable this decoding if you need to access UTF7 275 characters, you may disable this decoding if you need to access UTF7
365 (defvar imap-process nil 365 (defvar imap-process nil
366 "Process.") 366 "Process.")
367 367
368 (defvar imap-continuation nil 368 (defvar imap-continuation nil
369 "Non-nil indicates that the server emitted a continuation request. 369 "Non-nil indicates that the server emitted a continuation request.
370 The actually value is really the text on the continuation line.") 370 The actual value is really the text on the continuation line.")
371 371
372 (defvar imap-log nil 372 (defvar imap-log nil
373 "Name of buffer for imap session trace. 373 "Name of buffer for imap session trace.
374 For example: (setq imap-log \"*imap-log*\")") 374 For example: (setq imap-log \"*imap-log*\")")
375 375