Discussion:
[Proftpd-user] proftpd/mod_sftp chroot can't create directory
Patel, Viren
2016-11-28 18:07:38 UTC
Permalink
Hello. I have configured ProFTPD 1.3.5/mod_sftp to allow users to sftp to the server using SSH keys. Everything works as expected except for creating folders. The users can login, upload files using put, and can also delete existing files *and* folders. However the users cannot create a new folder using mkdir or via put –r. I have checked folder permissions, uid matchings, experimented with Limit settings - nothing allows a user to create a folder. The error message received is “Couldn't create directory: Permission denied”. Following is my proftpd.conf file (minus comments/blank lines):

ServerName"ProFTPD Default Installation"
ServerTypestandalone
DefaultServeroff
Port21
UseIPv6off
Umask022
MaxInstances30
Userftp
Groupftp
AllowOverwriteon
<Limit SITE_CHMOD>
DenyAll
</Limit>
<Limit RETR>
DenyAll
</Limit>
UseReverseDNSoff
ServerLog/opt/proftpd/var/log/server.log
SystemLog/opt/proftpd/var/log/system.log
TransferLog/opt/proftpd/var/log/transfer.log

TraceLog/opt/proftpd/var/log/sftp_trace.log
Tracesftp:20 sftp:2222

<VirtualHost ip.add.ress>
SFTPEngine on
Port 2222
SFTPLog /opt/proftpd/var/log/sftp.log
ExtendedLog /opt/proftpd/var/log/sftp_extended.log
TransferLog /opt/proftpd/var/log/sftp_transfer.log
SFTPDisplayBanner /opt/proftpd/etc/proftpd_sftp_banner.txt
SFTPHostKey /etc/ssh/ssh_host_rsa_key
SFTPAuthorizedUserKeys file:/opt/proftpd/etc/sftp/authorized_keys/%u
SFTPCompression delayed
SFTPOptions IgnoreSFTPUploadPerms IgnoreSCPUploadPerms
MultilineRFC2228 on
DefaultRoot ~
RequireValidShell off
Umask 027
MaxClientsPerHost 2
MaxClientsPerUser 2
MaxHostsPerUser2
<Limit LOGIN>
AllowUsertestuser
DenyAll
</limit>
</VirtualHost>


Running the server with –d 10 option the following messages are in the system log file when mkdir command is issued:

dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
in dir_check_full()
in dir_check_full()
chmod(/.dstXXXrb5R2u) failed
dispatching LOG_CMD_ERR command 'MKD /ppp' to mod_log
dispatching LOG_CMD_ERR command 'MKDIR /ppp' to mod_log
scrubbing scoreboard
ROOT PRIVS at scoreboard.c
RELINQUISH PRIVS at scoreboard.c
ROOT PRIVS at scoreboard.c
RELINQUISH PRIVS at scoreboard.c
finished scrubbing scoreboard

It seems chmod is failing. However disabling the SITE_CHMOD limit in the above config has no effect.

The following entries are in the trace log file:

2016-11-28 13:02:46,046 [23435] <sftp:6>: received MKDIR (14) SFTP request (request ID 2, channel ID 0)
2016-11-28 13:02:46,046 [23435] <sftp:7>: SFTPOption 'IgnoreSFTPUploadPerms' configured, ignoring perms sent by client
2016-11-28 13:02:46,047 [23435] <sftp:7>: received request: MKDIR /ppp type=unknown;
2016-11-28 13:02:46,049 [23435] <sftp:8>: sending response: STATUS 2 'No such file' ('No such file or directory' [2])


Any suggestions would be appreciated.

Thanks.




________________________________

This e-mail message (including any attachments) is for the sole use of
the intended recipient(s) and may contain confidential and privileged
information. If the reader of this message is not the intended
recipient, you are hereby notified that any dissemination, distribution
or copying of this message (including any attachments) is strictly
prohibited.

If you have received this message in error, please contact
the sender by reply e-mail message and destroy all copies of the
original message (including attachments).
TJ Saunders
2016-11-28 21:25:24 UTC
Permalink
Post by Patel, Viren
Hello. I have configured ProFTPD 1.3.5/mod_sftp to allow users to sftp to
the server using SSH keys. Everything works as expected except for
creating folders. The users can login, upload files using put, and can
also delete existing files *and* folders. However the users cannot create
a new folder using mkdir or via put –r.
SFTPLog /opt/proftpd/var/log/sftp.log
ExtendedLog /opt/proftpd/var/log/sftp_extended.log
What do these SFTPLog and ExtendedLog files show, for the client in
question? In particular, I'm hoping to see the specific SFTP requests
(and order) used by the client...
Post by Patel, Viren
Running the server with –d 10 option the following messages are in the
dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
in dir_check_full()
in dir_check_full()
chmod(/.dstXXXrb5R2u) failed
Is the user's home directory located on some network-mounted filesystem,
e.g. NFS or SMB or somesuch?

Cheers,
TJ
Patel, Viren
2016-11-29 13:25:56 UTC
Permalink
Hi TJ. Thanks for your response. Here are the relevant entries from the sftp.log and sftp_extended.log files. And yes, the home directory is on a Samba share.

Sftp.log:

2016-11-28 13:02:43,200 mod_sftp/0.9.9[23435]: sent server version 'SSH-2.0-mod_sftp/0.9.9'
2016-11-28 13:02:43,200 mod_sftp/0.9.9[23435]: received client version 'SSH-2.0-OpenSSH_6.6p1-hpn14v5'
2016-11-28 13:02:43,200 mod_sftp/0.9.9[23435]: handling connection from SSH2 client 'OpenSSH_6.6p1-hpn14v5'
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session key exchange: ecdh-sha2-nistp256
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server hostkey: ssh-rsa
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session client-to-server encryption: aes128-ctr
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server-to-client encryption: aes128-ctr
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session client-to-server MAC: hmac-md5
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server-to-client MAC: hmac-md5
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session client-to-server compression: none
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server-to-client compression: none
2016-11-28 13:02:43,254 mod_sftp/0.9.9[23435]: error opening SFTPDisplayBanner '/opt/proftpd/etc/proftpd_sftp_banner.txt': No such file or directory
2016-11-28 13:02:43,254 mod_sftp/0.9.9[23435]: sending acceptable userauth methods: publickey,password
2016-11-28 13:02:43,255 mod_sftp/0.9.9[23435]: error opening SFTPDisplayBanner '/opt/proftpd/etc/proftpd_sftp_banner.txt': No such file or directory
2016-11-28 13:02:43,256 mod_sftp/0.9.9[23435]: public key MD5 fingerprint: b0:98:82:ea:d1:5d:39:42:fb:ba:8f:8d:15:cb:00:1c
2016-11-28 13:02:43,256 mod_sftp/0.9.9[23435]: sending publickey OK
2016-11-28 13:02:43,277 mod_sftp/0.9.9[23435]: error opening SFTPDisplayBanner '/opt/proftpd/etc/proftpd_sftp_banner.txt': No such file or directory
2016-11-28 13:02:43,278 mod_sftp/0.9.9[23435]: public key MD5 fingerprint: b0:98:82:ea:d1:5d:39:42:fb:ba:8f:8d:15:cb:00:1c
2016-11-28 13:02:43,281 mod_sftp/0.9.9[23435]: sending userauth success
2016-11-28 13:02:43,281 mod_sftp/0.9.9[23435]: user 'testuser' authenticated via 'publickey' method
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session key exchange: ecdh-sha2-nistp256
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server hostkey: ssh-rsa
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session client-to-server encryption: aes128-ctr
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server-to-client encryption: aes128-ctr
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session client-to-server MAC: hmac-md5
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server-to-client MAC: hmac-md5
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session client-to-server compression: none
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server-to-client compression: none
2016-11-28 13:02:43,294 mod_sftp/0.9.9[23435]: 'subsystem' channel request for 'sftp' subsystem
2016-11-28 13:02:43,295 mod_sftp/0.9.9[23435]: using SFTP protocol version 3 for this session (channel ID 0)
2016-11-28 13:02:46,048 mod_sftp/0.9.9[23435]: creating directory '/ppp' with mode 0777
2016-11-28 13:02:46,049 mod_sftp/0.9.9[23435]: MKDIR of '/ppp' failed: No such file or directory
2016-11-28 13:02:48,184 mod_sftp/0.9.9[23435]: client at client_ip_address sent SSH_DISCONNECT message: disconnected by user (Application error)


sftp_extended.log:

client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "KEXINIT" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "ECDH_INIT" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "NEWKEYS" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "SERVICE_REQUEST" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USER testuser" 331 -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USERAUTH_REQUEST" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USER testuser" 331 -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "PASS (hidden)" 530 -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USERAUTH_REQUEST" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USER testuser" 331 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "PASS (hidden)" 230 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "USERAUTH_REQUEST" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "CHANNEL_OPEN" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "KEXINIT" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "ECDH_INIT" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "NEWKEYS" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "CHANNEL_REQUEST" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "INIT 3" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "REALPATH ." - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:46 -0500] "MKD /ppp" 550 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:46 -0500] "MKDIR /ppp" 2 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:48 -0500] "CHANNEL_EOF" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:48 -0500] "CHANNEL_CLOSE" - -


Viren

-----Original Message-----
From: TJ Saunders <***@castaglia.org>
Reply-To: "***@castaglia.org" <***@castaglia.org>
Date: Monday, November 28, 2016 at 4:25 PM
To: "Patel, Viren" <***@emory.edu>, "proftp-***@lists.sourceforge.net" <proftp-***@lists.sourceforge.net>
Subject: Re: [Proftpd-user] proftpd/mod_sftp chroot can't create directory
Post by Patel, Viren
Hello. I have configured ProFTPD 1.3.5/mod_sftp to allow users to sftp to
the server using SSH keys. Everything works as expected except for
creating folders. The users can login, upload files using put, and can
also delete existing files *and* folders. However the users cannot create
a new folder using mkdir or via put –r.
SFTPLog /opt/proftpd/var/log/sftp.log
ExtendedLog /opt/proftpd/var/log/sftp_extended.log
What do these SFTPLog and ExtendedLog files show, for the client in
question? In particular, I'm hoping to see the specific SFTP requests
(and order) used by the client...
Post by Patel, Viren
Running the server with –d 10 option the following messages are in the
dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
in dir_check_full()
in dir_check_full()
chmod(/.dstXXXrb5R2u) failed
Is the user's home directory located on some network-mounted filesystem,
e.g. NFS or SMB or somesuch?

Cheers,
TJ



________________________________

This e-mail message (including any attachments) is for the sole use of
the intended recipient(s) and may contain confidential and privileged
information. If the reader of this message is not the intended
recipient, you are hereby notified that any dissemination, distribution
or copying of this message (including any attachments) is strictly
prohibited.

If you have received this message in error, please contact
the sender by reply e-mail message and destroy all copies of the
original message (including attachments).
Patel, Viren
2016-11-29 15:11:07 UTC
Permalink
Hello. I solved the issue by specifying the username=, uid=, and gid= options when mounting the samba share, e.g.

//samba_server/share/folder /mnt/share/folder cifs rw,nosuid,cache=none,username=testuser,uid=XXX,gid=YYY,credentials=/path/to/credentials_file

Thanks.

Viren

-----Original Message-----
From: "Patel, Viren" <***@emory.edu>
Reply-To: "proftp-***@lists.sourceforge.net" <proftp-***@lists.sourceforge.net>
Date: Tuesday, November 29, 2016 at 8:25 AM
To: "***@castaglia.org" <***@castaglia.org>, "proftp-***@lists.sourceforge.net" <proftp-***@lists.sourceforge.net>
Subject: Re: [Proftpd-user] proftpd/mod_sftp chroot can't create directory

Hi TJ. Thanks for your response. Here are the relevant entries from the sftp.log and sftp_extended.log files. And yes, the home directory is on a Samba share.

Sftp.log:

2016-11-28 13:02:43,200 mod_sftp/0.9.9[23435]: sent server version 'SSH-2.0-mod_sftp/0.9.9'
2016-11-28 13:02:43,200 mod_sftp/0.9.9[23435]: received client version 'SSH-2.0-OpenSSH_6.6p1-hpn14v5'
2016-11-28 13:02:43,200 mod_sftp/0.9.9[23435]: handling connection from SSH2 client 'OpenSSH_6.6p1-hpn14v5'
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session key exchange: ecdh-sha2-nistp256
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server hostkey: ssh-rsa
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session client-to-server encryption: aes128-ctr
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server-to-client encryption: aes128-ctr
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session client-to-server MAC: hmac-md5
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server-to-client MAC: hmac-md5
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session client-to-server compression: none
2016-11-28 13:02:43,204 mod_sftp/0.9.9[23435]: + Session server-to-client compression: none
2016-11-28 13:02:43,254 mod_sftp/0.9.9[23435]: error opening SFTPDisplayBanner '/opt/proftpd/etc/proftpd_sftp_banner.txt': No such file or directory
2016-11-28 13:02:43,254 mod_sftp/0.9.9[23435]: sending acceptable userauth methods: publickey,password
2016-11-28 13:02:43,255 mod_sftp/0.9.9[23435]: error opening SFTPDisplayBanner '/opt/proftpd/etc/proftpd_sftp_banner.txt': No such file or directory
2016-11-28 13:02:43,256 mod_sftp/0.9.9[23435]: public key MD5 fingerprint: b0:98:82:ea:d1:5d:39:42:fb:ba:8f:8d:15:cb:00:1c
2016-11-28 13:02:43,256 mod_sftp/0.9.9[23435]: sending publickey OK
2016-11-28 13:02:43,277 mod_sftp/0.9.9[23435]: error opening SFTPDisplayBanner '/opt/proftpd/etc/proftpd_sftp_banner.txt': No such file or directory
2016-11-28 13:02:43,278 mod_sftp/0.9.9[23435]: public key MD5 fingerprint: b0:98:82:ea:d1:5d:39:42:fb:ba:8f:8d:15:cb:00:1c
2016-11-28 13:02:43,281 mod_sftp/0.9.9[23435]: sending userauth success
2016-11-28 13:02:43,281 mod_sftp/0.9.9[23435]: user 'testuser' authenticated via 'publickey' method
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session key exchange: ecdh-sha2-nistp256
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server hostkey: ssh-rsa
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session client-to-server encryption: aes128-ctr
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server-to-client encryption: aes128-ctr
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session client-to-server MAC: hmac-md5
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server-to-client MAC: hmac-md5
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session client-to-server compression: none
2016-11-28 13:02:43,285 mod_sftp/0.9.9[23435]: + Session server-to-client compression: none
2016-11-28 13:02:43,294 mod_sftp/0.9.9[23435]: 'subsystem' channel request for 'sftp' subsystem
2016-11-28 13:02:43,295 mod_sftp/0.9.9[23435]: using SFTP protocol version 3 for this session (channel ID 0)
2016-11-28 13:02:46,048 mod_sftp/0.9.9[23435]: creating directory '/ppp' with mode 0777
2016-11-28 13:02:46,049 mod_sftp/0.9.9[23435]: MKDIR of '/ppp' failed: No such file or directory
2016-11-28 13:02:48,184 mod_sftp/0.9.9[23435]: client at client_ip_address sent SSH_DISCONNECT message: disconnected by user (Application error)


sftp_extended.log:

client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "KEXINIT" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "ECDH_INIT" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "NEWKEYS" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "SERVICE_REQUEST" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USER testuser" 331 -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USERAUTH_REQUEST" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USER testuser" 331 -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "PASS (hidden)" 530 -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USERAUTH_REQUEST" - -
client_ip_address UNKNOWN - [28/Nov/2016:13:02:43 -0500] "USER testuser" 331 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "PASS (hidden)" 230 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "USERAUTH_REQUEST" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "CHANNEL_OPEN" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "KEXINIT" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "ECDH_INIT" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "NEWKEYS" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "CHANNEL_REQUEST" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "INIT 3" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:43 -0500] "REALPATH ." - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:46 -0500] "MKD /ppp" 550 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:46 -0500] "MKDIR /ppp" 2 -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:48 -0500] "CHANNEL_EOF" - -
client_ip_address UNKNOWN testuser [28/Nov/2016:13:02:48 -0500] "CHANNEL_CLOSE" - -


Viren

-----Original Message-----
From: TJ Saunders <***@castaglia.org>
Reply-To: "***@castaglia.org" <***@castaglia.org>
Date: Monday, November 28, 2016 at 4:25 PM
To: "Patel, Viren" <***@emory.edu>, "proftp-***@lists.sourceforge.net" <proftp-***@lists.sourceforge.net>
Subject: Re: [Proftpd-user] proftpd/mod_sftp chroot can't create directory
Post by Patel, Viren
Hello. I have configured ProFTPD 1.3.5/mod_sftp to allow users to sftp to
the server using SSH keys. Everything works as expected except for
creating folders. The users can login, upload files using put, and can
also delete existing files *and* folders. However the users cannot create
a new folder using mkdir or via put –r.
SFTPLog /opt/proftpd/var/log/sftp.log
ExtendedLog /opt/proftpd/var/log/sftp_extended.log
What do these SFTPLog and ExtendedLog files show, for the client in
question? In particular, I'm hoping to see the specific SFTP requests
(and order) used by the client...
Post by Patel, Viren
Running the server with –d 10 option the following messages are in the
dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKDIR /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
dispatching PRE_CMD command 'MKD /ppp' to mod_core
in dir_check_full()
in dir_check_full()
chmod(/.dstXXXrb5R2u) failed
Is the user's home directory located on some network-mounted filesystem,
e.g. NFS or SMB or somesuch?

Cheers,
TJ



________________________________

This e-mail message (including any attachments) is for the sole use of
the intended recipient(s) and may contain confidential and privileged
information. If the reader of this message is not the intended
recipient, you are hereby notified that any dissemination, distribution
or copying of this message (including any attachments) is strictly
prohibited.

If you have received this message in error, please contact
the sender by reply e-mail message and destroy all copies of the
original message (including attachments).
------------------------------------------------------------------------------
_______________________________________________
ProFTPD Users List <proftpd-***@proftpd.org>
Unsubscribe problems?
http://www.proftpd.org/list-unsub.html

Loading...