diff options
author | Dave Love <fx@gnu.org> | 2000-12-05 19:18:06 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-12-05 19:18:06 +0000 |
commit | 020930fb6f270822a93f68335679b7f9b9238370 (patch) | |
tree | 37fb013a25a5a24855658e41efcae3e48f534bcb /lisp/gnus/starttls.el | |
parent | 10b7b8fc111f93e37d19a1558afa7530e85e8329 (diff) | |
download | emacs-020930fb6f270822a93f68335679b7f9b9238370.tar.gz |
Fix header and customization.
Diffstat (limited to 'lisp/gnus/starttls.el')
-rw-r--r-- | lisp/gnus/starttls.el | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/lisp/gnus/starttls.el b/lisp/gnus/starttls.el index 1875dcbe43d..d0fb68263e9 100644 --- a/lisp/gnus/starttls.el +++ b/lisp/gnus/starttls.el @@ -4,19 +4,19 @@ ;; Author: Daiki Ueno <ueno@unixuser.org> ;; Created: 1999/11/20 -;; Keywords: TLS, SSL, OpenSSL +;; Keywords: TLS, SSL, OpenSSL, mail, news -;; This file is not part of any package. +;; This file is part of GNU Emacs. -;; This program is free software; you can redistribute it and/or -;; modify it under the terms of the GNU General Public License as -;; published by the Free Software Foundation; either version 2, or (at -;; your option) any later version. +;; GNU Emacs is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation; either version 2, or (at your option) +;; any later version. -;; This program is distributed in the hope that it will be useful, but -;; WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;; General Public License for more details. +;; GNU Emacs is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the @@ -34,14 +34,17 @@ (defgroup starttls nil "Support for `Transport Layer Security' protocol." - :group 'ssl) + :version "21.1" + :group 'mail) (defcustom starttls-program "starttls" "The program to run in a subprocess to open an TLSv1 connection." + :type 'string :group 'starttls) (defcustom starttls-extra-args nil - "Extra arguments to `starttls-program'" + "Extra arguments to `starttls-program'." + :type '(repeat string) :group 'starttls) (defun starttls-negotiate (process) |