]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/net/ange-ftp.el (ange-ftp-skip-msgs): Further support ftp-ssl.
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 16 Aug 2017 09:52:12 +0000 (11:52 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 16 Aug 2017 09:52:12 +0000 (11:52 +0200)
lisp/net/ange-ftp.el

index 0fbf82577aa70a9b60e3d4571beee2f2c2f807ca..80b84765a0bf8270dfc1ff506e5a4ea0d4d844e2 100644 (file)
@@ -689,11 +689,17 @@ parenthesized expressions in REGEXP for the components (in that order)."
 ;; authentication methods (typically) at connection establishment. Non
 ;; security-aware FTP servers should respond to this with a 500 code,
 ;; which we ignore.
+
+;; Further messages are needed to support ftp-ssl.
 (defcustom ange-ftp-skip-msgs
   (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|"
          "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|"
          "^Data connection \\|"
+          "^200 PBSZ\\|" "^200 Protection set to Private\\|"
+          "^234 AUTH TLS successful\\|"
           "^SSL not available\\|"
+         "^\\[SSL Cipher .+\\]\\|"
+         "^\\[Encrypted data transfer\\.\\]\\|"
          "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|"
           "^500 .*AUTH\\|^KERBEROS\\|"
           "^500 This security scheme is not implemented\\|"
@@ -703,7 +709,7 @@ parenthesized expressions in REGEXP for the components (in that order)."
          "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT\\|^500 .*EPSV")
   "Regular expression matching FTP messages that can be ignored."
   :group 'ange-ftp
-  :version "24.4"                      ; add EPSV
+  :version "26.1"
   :type 'regexp)
 
 (defcustom ange-ftp-fatal-msgs