Сталкнулся с такой проблемой
запрелил всем пользователям в proftpd в incoming удалять файлы
но не как не получается поставить разрешение на создание папок
вот мой конфиг
ServerName "***"
Bind ****
Port 21
Umask 022
User nobody
Group nogroup
MaxClients 15 "Слишком много соединений с сервером"
MaxClientsPerHost 4 "%m клиента уже подключены с Вашего хоста, больше не разрешено"
MaxLoginAttempts 3 "Слишком много попыток войти"
DisplayConnect /usr/local/log/ftp/ftp_connect.msg
DisplayLogin /usr/local/log/ftp/ftp_login.msg
AccessDenyMsg "ATTENTION!!! ALL CONNECTIONS LOGED"
AccessGrantMsg "Now apload/download files"
DisplayGoAway "Go Away"
TimeoutIdle 180
TimeoutLogin 120
TimeoutNoTransfer 360
TimeoutStalled 640
DefaultRoot /usr/local/ftp2
SyslogLevel notice
UseReverseDNS off
TransferLog /usr/local/ftp/log/proftpd-tranfer.log
SystemLog /usr/local/log/ftp/proftpd-error.log
ExtendedLog /usr/local/log/ftp/proftpd-extended.log read,write
<Directory />
AllowOverwrite on
</Directory>
<Anonymous /usr/local/ftp2/>
User ftp
Group nogroup
UserAlias anonymous ftp
MaxClients 20 "Sorry, max %m users -- try again later"
DisplayFirstChdir .message
<Limit WRITE>
DenyAll
</Limit>
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
</Directory>
<Directory incoming/*/*>
AllowOverwrite on
AllowRetrieveRestart on
Umask 007 007
<Limit STOR CWD MKD >
AllowAll
</Limit>
<Limit DELE RMD RNFR RNTO >
DenyAll
</Limit>
</Directory>
</Anonymous>