]> git.eshelyaron.com Git - emacs.git/commitdiff
Use a different port for TLS erc
authorŁukasz Stelmach <stlman@poczta.fm>
Sat, 26 Dec 2015 02:47:21 +0000 (03:47 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 26 Dec 2015 02:47:21 +0000 (03:47 +0100)
* lisp/erc/erc.el (erc-default-port-tls): New variable
(bug#19497).
* lisp/erc/erc.el (erc-tls): Use it.

Copyright-paperwork-exempt: yes

etc/NEWS
lisp/erc/erc.el

index edd81476c177aad791c479d935b81c9f5a402c98..20a12329edc0f7cff1038810c2b7b9f031b182a3 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -376,6 +376,9 @@ hide all messages of the specified type, where `erc-network-hide-list'
 and `erc-channel-hide-list' will only hide the specified message types
 for the respective specified targets.
 
+*** New variable `erc-default-port-tls' used to connect to TLS IRC
+servers.
+
 ** Midnight-mode
 *** `midnight-mode' is a proper minor mode.
 *** clean-buffer-*-regexps can now specify buffers via predicate functions.
index 8e26db1d9d30febe305994e4d3400b6a1eb99c12..cd8c8a817e18fb222d2df3ed731f42f7b19facf6 100644 (file)
@@ -1471,6 +1471,10 @@ Defaults to the server buffer."
 (defconst erc-default-port 6667
   "IRC port to use if it cannot be detected otherwise.")
 
+(defconst erc-default-port-tls 6697
+  "IRC port to use for encrypted connections if it cannot be
+  detected otherwise.")
+
 (defcustom erc-join-buffer 'buffer
   "Determines how to display a newly created IRC buffer.
 
@@ -2194,7 +2198,8 @@ be invoked for the values of the other parameters."
 (defun erc-tls (&rest r)
   "Interactively select TLS connection parameters and run ERC.
 Arguments are the same as for `erc'."
-  (interactive (erc-select-read-args))
+  (interactive (let ((erc-default-port erc-default-port-tls))
+                (erc-select-read-args)))
   (let ((erc-server-connect-function 'erc-open-tls-stream))
     (apply #'erc r)))