vsftpd - new directories are chmod:ed 700
Hello!
I want my anonymous ftp users to be able to not only create directories but to remove them as well. But when an anoynoums user creates a directory it is owned by the ftp user and group and is chmod:ed 700. So the anonymous can create but cannot delete. I know that it's a good thing in most cases but not in mine.
So, I want my anonymous ftp users to be able to remove directories in directories where they can create them... and I don't want to chmod every time a directory is created.
My /etc/vsftpd.conf looks like this
anonymous_enable=YES
listen=YES
write_enable=YES
anon_mkdir_write_enable=YES
local_umask=000 # it was worth a try
anon_upload_enable=YES
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
ftpd_banner=Welcome to Samels ftp
Thanks for your help!
|