emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/gnus/sieve-manage.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/gnus/sieve-manage.el
Date: Thu, 26 May 2005 11:03:32 -0400

Index: emacs/lisp/gnus/sieve-manage.el
diff -c emacs/lisp/gnus/sieve-manage.el:1.2 emacs/lisp/gnus/sieve-manage.el:1.3
*** emacs/lisp/gnus/sieve-manage.el:1.2 Sat Sep  4 13:13:43 2004
--- emacs/lisp/gnus/sieve-manage.el     Thu May 26 15:03:29 2005
***************
*** 86,107 ****
  
  (defcustom sieve-manage-log "*sieve-manage-log*"
    "Name of buffer for managesieve session trace."
!   :type 'string)
  
  (defcustom sieve-manage-default-user (user-login-name)
    "Default username to use."
!   :type 'string)
  
  (defcustom sieve-manage-server-eol "\r\n"
    "The EOL string sent from the server."
!   :type 'string)
  
  (defcustom sieve-manage-client-eol "\r\n"
    "The EOL string we send to the server."
!   :type 'string)
  
  (defcustom sieve-manage-streams '(network starttls shell)
!   "Priority of streams to consider when opening connection to server.")
  
  (defcustom sieve-manage-stream-alist
    '((network   sieve-manage-network-p          sieve-manage-network-open)
--- 86,112 ----
  
  (defcustom sieve-manage-log "*sieve-manage-log*"
    "Name of buffer for managesieve session trace."
!   :type 'string
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-default-user (user-login-name)
    "Default username to use."
!   :type 'string
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-server-eol "\r\n"
    "The EOL string sent from the server."
!   :type 'string
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-client-eol "\r\n"
    "The EOL string we send to the server."
!   :type 'string
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-streams '(network starttls shell)
!   "Priority of streams to consider when opening connection to server."
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-stream-alist
    '((network   sieve-manage-network-p          sieve-manage-network-open)
***************
*** 113,122 ****
  
  NAME names the stream, CHECK is a function returning non-nil if the
  server support the stream and OPEN is a function for opening the
! stream.")
  
  (defcustom sieve-manage-authenticators '(cram-md5 plain)
!   "Priority of authenticators to consider when authenticating to server.")
  
  (defcustom sieve-manage-authenticator-alist
    '((cram-md5   sieve-manage-cram-md5-p       sieve-manage-cram-md5-auth)
--- 118,129 ----
  
  NAME names the stream, CHECK is a function returning non-nil if the
  server support the stream and OPEN is a function for opening the
! stream."
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-authenticators '(cram-md5 plain)
!   "Priority of authenticators to consider when authenticating to server."
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-authenticator-alist
    '((cram-md5   sieve-manage-cram-md5-p       sieve-manage-cram-md5-auth)
***************
*** 127,137 ****
  
  NAME names the authenticator.  CHECK is a function returning non-nil if
  the server support the authenticator and AUTHENTICATE is a function
! for doing the actual authentication.")
  
  (defcustom sieve-manage-default-port 2000
    "Default port number for managesieve protocol."
!   :type 'integer)
  
  ;; Internal variables:
  
--- 134,146 ----
  
  NAME names the authenticator.  CHECK is a function returning non-nil if
  the server support the authenticator and AUTHENTICATE is a function
! for doing the actual authentication."
!   :group 'sieve-manage)
  
  (defcustom sieve-manage-default-port 2000
    "Default port number for managesieve protocol."
!   :type 'integer
!   :group 'sieve-manage)
  
  ;; Internal variables:
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]