Variable: ange-ftp-potential-error-msgs
ange-ftp-potential-error-msgs is a customizable variable defined in
ange-ftp.el.gz.
Value
"^ftp: connect to address .*: No route to host"
Documentation
Regular expression matching FTP messages that can indicate serious errors.
These mean that something went wrong, but they may be followed by more messages indicating that the error was somehow corrected.
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defcustom ange-ftp-potential-error-msgs
;; On macOS we sometimes get things like:
;;
;; ftp> open ftp.nluug.nl
;; Trying 2001:610:1:80aa:192:87:102:36...
;; ftp: connect to address 2001:610:1:80aa:192:87:102:36: No route to host
;; Trying 192.87.102.36...
;; Connected to ftp.nluug.nl.
"^ftp: connect to address .*: No route to host"
"Regular expression matching FTP messages that can indicate serious errors.
These mean that something went wrong, but they may be followed by more
messages indicating that the error was somehow corrected."
:group 'ange-ftp
:type 'regexp)