## If someone wanted to make changes to proftpd.conf, will it override
## using the GUI? I don't see any mentions of includes in the file. I have
## a customer that wants to remove the limitations on the incoming
## directory so all can view.
There is no way using the GUI. You must edit "proftpd conf file".
>> vi /etc/proftpd.conf
You can find "Anonymous Directory incoming tab" like as;
<Directory /home/.sites/@@/site@/ftp/incoming/*>
Umask 002
AllowOverwrite off <=== modify
<Limit STOR> <=== insert
AllowAll
</Limit>
<Limit READ DIRS>
DenyAll <=== modify
</Limit>
</Directory>
You modify to ;
<Directory /home/.sites/@@/site@/ftp/incoming/*>
Umask 002
AllowOverwrite on <=== modified
<Limit WRITE> <=== inserted
AllowAll <=== inserted
</Limit> <=== inserted
<Limit STOR>
AllowAll
</Limit>
<Limit READ DIRS>
AllowAll <=== modified
</Limit>
</Directory>
Eiji Hamano
_______________________________________________
Blueonyx mailing list
[email protected]
http://www.blueonyx.it/mailman/listinfo/blueonyx