# Notify the users of README files at login and when changing to a different directory
readme README* login
readme README* cwd=*
在使用者登入時或切換目錄時,提示其讀取 README* 檔案,此檔需您自行建立。
# Messages displayed to the user
message /welcome.msg login
message .message cwd=*
當使用者登入時,會顯示根目錄下的 welcome.msg 檔案內的歡迎訊息,所以我們可以在 /var/ftp 或者 /home/username 底下建立這個檔案,這樣 anonymous 及 realuser 登入時就會看到歡迎的訊息,不過記得這個 realuser 得限定只能在自己家目錄下活動才行 ; 至於下一行的意思是說在切換目錄時,會顯示該目錄下的 .message 檔案的內容。
# Allow on-the-fly compression and tarring
compress yes all
tar yes all
# Prevent anonymous users (and partially guest users) from executing dangerous commands
chmod no guest,anonymous
delete no anonymous
overwrite no anonymous
rename no anonymous
設定 guest 及 anonymous 在進入FTP 站台後,不能使用 chmod 指令來修改權限,而 anonymous 不能使用 delete、 overwrite、rename 等指令來刪除、覆寫及重新命名。一般 ftp server 大都不允許 chmod 及 overwrite 的功能。