diff options
author | Richard M. Stallman <rms@gnu.org> | 2002-08-27 21:21:24 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2002-08-27 21:21:24 +0000 |
commit | 6309b0e19c7fd249fa3c59dfcf28562b75ede0d5 (patch) | |
tree | 018adbc64ab592a3dbe35886259f3125442929a4 /lisp/net/ange-ftp.el | |
parent | d97a9ff3398c62fe0de929a6ae77e0a3c4ace5ae (diff) | |
download | emacs-6309b0e19c7fd249fa3c59dfcf28562b75ede0d5.tar.gz |
(ange-ftp-skip-msgs): Skip the 530 response
given by vsFTPd when accessed with a kerberised FTP client.
Diffstat (limited to 'lisp/net/ange-ftp.el')
-rw-r--r-- | lisp/net/ange-ftp.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/net/ange-ftp.el b/lisp/net/ange-ftp.el index bd9a432af7d..010c7fe1838 100644 --- a/lisp/net/ange-ftp.el +++ b/lisp/net/ange-ftp.el @@ -728,6 +728,7 @@ parenthesized expressions in REGEXP for the components (in that order)." "^Data connection \\|" "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|" + "^530 Please login with USER and PASS\\|" ; non kerberised vsFTPd "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") "*Regular expression matching ftp messages that can be ignored." :group 'ange-ftp |