Ahoi,
I have installed proftpd to make use of check-file sftp extension. proftpd accepts config line:
```
SFTPExtensions +vendorID +checkFile +xattr
```
I see xattr extension as well as vendorID beeing enabled, but checkFile missing. When connecting, it is not reported:
```
2026-03-18 11:30:34,824 [40967] <sftp:7>: received request: INIT 3
2026-03-18 11:30:34,824 [40967] <sftp:8>: sending response: VERSION 3
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: vendor-id = { vendorName = 'ProFTPD Project', productName = 'mod_sftp', productVersion = 'mod_sftp/1.1.1', buildNumber = 16975
880 }
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: versions = '2,3,4,5,6'
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: fsync@openssh.com = '1'
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: posix-rename@openssh.com = '1'
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: statvfs@openssh.com = '2'
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: fstatvfs@openssh.com = '2'
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: hardlink@openssh.com = '1'
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: home-directory = '1'
2026-03-18 11:30:34,824 [40967] <sftp:11>: + SFTP extension: xattr@proftpd.org = '1'
2026-03-18 11:30:34,824 [40967] <encode:5>: decoded 'INIT' into 'INIT'
2026-03-18 11:30:34,824 [40967] <encode:5>: decoded '3' into '3'
```
When using paramiko.sftp_file.SFTPFile.check anyways - the request won't be accepted:
```
2026-03-18 11:59:13,373 [42043] <sftp:7>: received request: EXTENDED check-file
2026-03-18 11:59:13,373 [42043] <encode:5>: decoded 'EXTENDED' into 'EXTENDED'
2026-03-18 11:59:13,373 [42043] <encode:5>: decoded 'check-file' into 'check-file'
2026-03-18 11:59:13,373 [42043] <command:7>: dispatching POST_CMD_ERR command 'EXTENDED check-file' to mod_exec.c
2026-03-18 11:59:13,373 [42043] <command:7>: dispatching LOG_CMD_ERR command 'EXTENDED check-file' to mod_log.c
2026-03-18 11:59:13,373 [42043] <sftp:8>: sending response: STATUS 8 'Unsupported operation'
2026-03-18 11:59:13,373 [42043] <response:7>: response added to pending list: 8 Unsupported operation
2026-03-18 11:59:13,373 [42043] <ssh2:9>: sending CHANNEL_DATA (remote channel ID 0, 47 data bytes)
```
Do you have any hints about this?
Thanks a lot, Joerg