Hallo!
Also wie gesagt ich bin in dieser Hinsicht ein zugegeben vollkommener Trottel. Ich habe jetzt hier mal die Config von mir gepostet in der Hoffnung das Ihr mich mal zurechtweist wo der verflixte Fehler in meiner Denkweise bzw. Durchfürung liegt. Ich möchte eigentlich nichts anderes als dem User Malvedios ganz normale FTP-Rechte geben und einem Anonymen User ermöglichen sich alles anzusehen und downloaden zu können. Hier mein versuch der leider nicht funktioniert da in diesem Fall auch der User Malvedios plötzlich keine Schreibrechte mehr hat:
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName "ProFTPD Default Installation"
ServerType standalone
DefaultServer on
# Port 21 is the standard FTP port.
Port 21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances 30
# Set the user and group under which the server will run.
User nobody
Group ftpusers
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwrite on
</Directory>
<Global>
MaxClients 30 "Maximale Benutzermenge ueberschritten."
MaxClientsPerHost 2 "Nur zwei gleichzeitige Verbindungen von einem Host erlaubt."
DefaultRoot ~
DeleteAbortedStores off
HiddenStor on
AccessDenyMsg "Anmeldung leider fehlerhaft."
AccessGrantMsg "Anmeldung erfolgreich. Willkommen."
AllowOverwrite on
RootLogin off
UseFtpUsers on
AllowStoreRestart on
#AuthPAM off
</Global>
TimeoutIdle 120
TimeoutLogin 120
TimeoutNoTransfer 120
TimeoutStalled 120
<Anonymous /home/malvedios>
User malvedios
Group ftpusers
<Limit LOGIN>
Allow from all
</Limit>
<Limit WRITE>
Deny from all
</Limit>
<Limit READ DIRS>
IgnoreHidden on
</Limit>
<Limit STOR MKD RMD XMKD XRMD>
Deny from all
</Limit>
</Anonymous>
Ich bin für jede Hilfe dankbar