X-Git-Url: https://cgit.sxemacs.org/?a=blobdiff_plain;f=texi%2Fsasl.texi;h=bd7813e3218c0c23f496fc20065ce76af0fac451;hb=1d4279e1996ee4ef1ac2d6eea4f5c990f79219cb;hp=9874bb7f893a917552fa9bbcf6097730f651b9f5;hpb=4303c5c768c35022c9eda800cacfa401946e144b;p=gnus diff --git a/texi/sasl.texi b/texi/sasl.texi index 9874bb7f8..bd7813e32 100644 --- a/texi/sasl.texi +++ b/texi/sasl.texi @@ -3,23 +3,17 @@ @setfilename sasl.info @set VERSION 0.2 - -@dircategory Emacs -@direntry -* SASL: (sasl). The Emacs SASL library. -@end direntry - @settitle Emacs SASL Library @value{VERSION} @copying -This file describes the Emacs SASL library. +This file describes the Emacs SASL library, version @value{VERSION}. -Copyright @copyright{} 2000, 2004, 2005, 2006, 2007, 2008 +Copyright @copyright{} 2000, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU Free Documentation License, Version 1.2 or +under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. A copy of the license @@ -37,10 +31,14 @@ license to the document, as described in section 6 of the license. @end quotation @end copying -@tex +@dircategory Emacs +@direntry +* SASL: (sasl). The Emacs SASL library. +@end direntry + @titlepage -@title Emacs SASL Library +@title Emacs SASL Library @value{VERSION} @author by Daiki Ueno @page @@ -48,17 +46,18 @@ license to the document, as described in section 6 of the license. @vskip 0pt plus 1filll @insertcopying @end titlepage -@page -@end tex @node Top @top Emacs SASL -This manual describes the Emacs SASL library. -A common interface to share several authentication mechanisms between +SASL is a common interface to share several authentication mechanisms between applications using different protocols. +@ifnottex +@insertcopying +@end ifnottex + @menu * Overview:: What Emacs SASL library is. * How to use:: Adding authentication support to your applications. @@ -150,7 +149,7 @@ of authentication functions. @example (defconst sasl-anonymous-steps - '(identity ;no initial response + '(identity ;no initial response sasl-anonymous-response)) (put 'sasl-anonymous 'sasl-mechanism @@ -234,7 +233,7 @@ authentication protocol exchange. For example, @example (process-send-string process - (if (sasl-step-data step) ;initial response + (if (sasl-step-data step) ;initial response (format "AUTH %s %s\r\n" name (base64-encode-string (sasl-step-data step) t)) (format "AUTH %s\r\n" name))) @end example @@ -269,7 +268,3 @@ At the first time @var{step} should be set to @code{nil}. @bye @c End: - -@ignore - arch-tag: dc9650be-a953-40bf-bc55-24fe5f19d875 -@end ignore