** "bruce" == bruce <[EMAIL PROTECTED]> wrote: bruce> Can someone save me some time and send me an example of a bruce> ProFTPd configuration file that works correctly for both bruce> anonymous and local users. Currently mine lets anonymous FTP, bruce> but not me :-)
The default configfile let's normal user log in. There is nothing special required. Maybe your shell is not in /etc/shells? Ciao, Martin ServerName "ProFTPD" ServerType inetd DeferWelcome off ShowSymlinks on DefaultServer on Port 21 Umask 022 User root Group root AllowOverwrite on <Anonymous ~ftp> User ftp Group nogroup UserAlias anonymous ftp RequireValidShell off MaxClients 10 DisplayLogin welcome.msg DisplayFirstChdir .message <Directory *> <Limit WRITE> DenyAll </Limit> </Directory> </Anonymous>