Variable: auth-source-protocols

auth-source-protocols is a customizable variable defined in auth-source.el.gz.

Value

((imap "imap" "imaps" "143" "993")
 (pop3 "pop3" "pop" "pop3s" "110" "995") (ssh "ssh" "22")
 (sftp "sftp" "115") (smtp "smtp" "25"))

Documentation

List of authentication protocols and their names.

This variable was added, or its default value changed, in Emacs 23.2.

Source Code

;; Defined in /usr/src/emacs/lisp/auth-source.el.gz
(defcustom auth-source-protocols '((imap "imap" "imaps" "143" "993")
                                   (pop3 "pop3" "pop" "pop3s" "110" "995")
                                   (ssh  "ssh" "22")
                                   (sftp "sftp" "115")
                                   (smtp "smtp" "25"))
  "List of authentication protocols and their names."

  :version "23.2" ;; No Gnus
  :type '(repeat :tag "Authentication Protocols"
                 (cons :tag "Protocol Entry"
                       (symbol :tag "Protocol")
                       (repeat :tag "Names"
                               (string :tag "Name")))))