Sublime Forum

Sublime SFTP - Error parsing remote folder listing

#21

I’ll crosspost this to @wbond / the support page

0 Likes

#22

Same now happens with Uubuntu 24.04, and this seems will become blocker for most my servers I’d love to have SFTP access :(. SAAAD!

0 Likes

#23

I found a alternative solution which is installing other sftp server.

In Debian 12, I install “gesftpserver” and edit /etc/ssh/sshd_config

comment the original “sftp Subsystem”, and insert gesftpserver as below

# override default of no subsystems
#Subsystem      sftp    /usr/lib/openssh/sftp-server
Subsystem       sftp    /usr/libexec/gesftpserver

After reloading sshd service, Sublime Text SFTP package works like before.

If you just want specific user to use gesftpserver, use the Match section in sshd_config.

Match User sftp-user
    ForceCommand /usr/libexec/gesftpserver

without modifying the global sftp Subsystem.

I think its a better solution to downgrade openssh or use ftp.

0 Likes

#24

Sorry for the long delay in getting support for newer OpenSSH servers added!

Last night I released v2.1.0 with afore mentioned OpenSSH server support, plus an updated (and patched) psftp 0.81.

7 Likes

#25

Hi, tested against some previously reported not-working servers, works great now. thanks a lot !

OpenSSH_9.6p1, OpenSSL 1.1.1w-freebsd 11 Sep 2023
OpenSSH_9.3p2, OpenSSL 1.1.1t-freebsd 7 Feb 2023
OpenSSH_9.6p1, OpenSSL 3.0.13 30 Jan 2024

1 Like

#26

It even was a blocker for me to upgrade some prods to 24 LTS :))))))) but now - hurraaaay!

Thank you!

0 Likes