/[emacs]/emacs/lisp/gnus/sieve-manage.el
ViewVC logotype

Diff of /emacs/lisp/gnus/sieve-manage.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by miles, Sat Sep 4 13:13:43 2004 UTC revision 1.3 by miles, Thu May 26 15:03:29 2005 UTC
# Line 86  Line 86 
86    
87  (defcustom sieve-manage-log "*sieve-manage-log*"  (defcustom sieve-manage-log "*sieve-manage-log*"
88    "Name of buffer for managesieve session trace."    "Name of buffer for managesieve session trace."
89    :type 'string)    :type 'string
90      :group 'sieve-manage)
91    
92  (defcustom sieve-manage-default-user (user-login-name)  (defcustom sieve-manage-default-user (user-login-name)
93    "Default username to use."    "Default username to use."
94    :type 'string)    :type 'string
95      :group 'sieve-manage)
96    
97  (defcustom sieve-manage-server-eol "\r\n"  (defcustom sieve-manage-server-eol "\r\n"
98    "The EOL string sent from the server."    "The EOL string sent from the server."
99    :type 'string)    :type 'string
100      :group 'sieve-manage)
101    
102  (defcustom sieve-manage-client-eol "\r\n"  (defcustom sieve-manage-client-eol "\r\n"
103    "The EOL string we send to the server."    "The EOL string we send to the server."
104    :type 'string)    :type 'string
105      :group 'sieve-manage)
106    
107  (defcustom sieve-manage-streams '(network starttls shell)  (defcustom sieve-manage-streams '(network starttls shell)
108    "Priority of streams to consider when opening connection to server.")    "Priority of streams to consider when opening connection to server."
109      :group 'sieve-manage)
110    
111  (defcustom sieve-manage-stream-alist  (defcustom sieve-manage-stream-alist
112    '((network   sieve-manage-network-p          sieve-manage-network-open)    '((network   sieve-manage-network-p          sieve-manage-network-open)
# Line 113  Line 118 
118    
119  NAME names the stream, CHECK is a function returning non-nil if the  NAME names the stream, CHECK is a function returning non-nil if the
120  server support the stream and OPEN is a function for opening the  server support the stream and OPEN is a function for opening the
121  stream.")  stream."
122      :group 'sieve-manage)
123    
124  (defcustom sieve-manage-authenticators '(cram-md5 plain)  (defcustom sieve-manage-authenticators '(cram-md5 plain)
125    "Priority of authenticators to consider when authenticating to server.")    "Priority of authenticators to consider when authenticating to server."
126      :group 'sieve-manage)
127    
128  (defcustom sieve-manage-authenticator-alist  (defcustom sieve-manage-authenticator-alist
129    '((cram-md5   sieve-manage-cram-md5-p       sieve-manage-cram-md5-auth)    '((cram-md5   sieve-manage-cram-md5-p       sieve-manage-cram-md5-auth)
# Line 127  stream.") Line 134  stream.")
134    
135  NAME names the authenticator.  CHECK is a function returning non-nil if  NAME names the authenticator.  CHECK is a function returning non-nil if
136  the server support the authenticator and AUTHENTICATE is a function  the server support the authenticator and AUTHENTICATE is a function
137  for doing the actual authentication.")  for doing the actual authentication."
138      :group 'sieve-manage)
139    
140  (defcustom sieve-manage-default-port 2000  (defcustom sieve-manage-default-port 2000
141    "Default port number for managesieve protocol."    "Default port number for managesieve protocol."
142    :type 'integer)    :type 'integer
143      :group 'sieve-manage)
144    
145  ;; Internal variables:  ;; Internal variables:
146    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26