libnet-sftp-sftpserver-perl 1.1.0-3 source package in Ubuntu

Changelog

libnet-sftp-sftpserver-perl (1.1.0-3) unstable; urgency=medium

  * Team upload.

  * Fix copyright format specification URL. Issue found by DUCK.
  * Update Vcs-Browser to HTTPS and cgit webinterface.
  * Declare compliance with Debian Policy 3.9.6 (no other changes needed).
  * Change Homepage to point to MetaCPAN.org instead of search.cpan.org.
  * Mention module name in long package description.
  * Fix capitalization of "OpenSSH" in package description.
  * Mark package as autopkgtestable.

 -- Axel Beckert <email address hidden>  Sun, 31 May 2015 14:01:01 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libnet-sftp-sftpserver-perl_1.1.0-3.dsc 2.2 KiB a86bddc320ddc61dfb682ebb6b14cfda1939e0ac7a3cb25fd79337b1a98eb5bd
libnet-sftp-sftpserver-perl_1.1.0.orig.tar.gz 20.3 KiB 2d356d092e92442cdc16cf10a3f30022a64cd214065a682000a5f464b3153cea
libnet-sftp-sftpserver-perl_1.1.0-3.debian.tar.xz 3.9 KiB b4f197eeead6a79db3a901ea3aed41ad70fc42cb92e8d67b1f01f206fa2875f4

Available diffs

No changes file available.

Binary packages built by this source

libnet-sftp-sftpserver-perl: Secure File Transfer Protocol Server

 Net::SFTP::SftpServer is a Perl port of sftp-server from OpenSSH
 providing access control on a per user and per command basis with
 improved logging via syslog.
 .
 The limitations compared with the OpenSSH implementation are as follows:
 .
   - Only files and directories are dealt with - other inode types are not
     returned on readdir.
   - A virtual chroot is performed - / (rootfs) is treated as the users home
     directory from the client perspective and all file access to / will
     be in /<home_path>/<username>. The <home_path> is defined on object
     initialisation, it is not obtained from /etc/passwd.
   - All symlinked files or directories can be hidden and made inaccessible on
     request. Symlink returns "permission denied" then, readlink returns "file
     does not exist".
   - Setting of stats (set_stat or set_fstat) is disabled - the client will
     receive permission denied.
   - Permissions for files and dirs are defaulted - the defaults are set on
     object initialisation.