Tag Archives: 用户

重建linux中的用户邮件箱

这里所说的邮件箱,就是当你ssh登录后。系统提示你有mail。就是这个东西。
今天用logwatch查看日志时,系统提示我的用户的mail邮件箱过大。已经有83m了。
登录后看看,原来已经有了800多封。。。因为我用cron设置了定时任务。所以,每天会收到nnnn封。而我又从来不查看和删除,导致越来越大。
准备正常方式删除,发现邮件损坏,正常方法还不能删除。只能全部干掉了。。
#cd /var/mail
#rm syxin (这个就是以我的用户命名的邮件文件)
#touch syxin(删除肯定会出错,所以要touch一个)
#chown syxin.mail syxin(给与正确的权限)
然后输入mailx。提示nomail,一切正常

proftpd权限设置

proftpd默认用户可以使用系统非root组的用户登录,登陆后都在自己的/home目录中。
同时匿名用户不能登陆。而要对权限进行进一步的设置,需要在proftpd.conf里面进行定制。
在默认的conf中,有如下的例子
# <Anonymous ~ftp>
#   User    ftp
#   Group    nogroup
#   # We want clients to be able to login with "anonymous" as well as "ftp"
#   UserAlias   anonymous ftp
#   # Cosmetic changes, all files belongs to ftp user
#   DirFakeUser on ftp
#   DirFakeGroup on ftp
#
#   RequireValidShell  off
#
#   # Limit the maximum number of anonymous logins
#   MaxClients   10
#
#   # We want ‘welcome.msg’ displayed at login, and ‘.message’ displayed
#   # in each newly chdired directory.
#   DisplayLogin   welcome.msg
#   DisplayFirstChdir  .message
#
#   # Limit WRITE everywhere in the anonymous chroot
#   <Directory *>
#     <Limit WRITE>
#       DenyAll
#     </Limit>
#   </Directory>
#
#   # Uncomment this if you’re brave.
#   # <Directory incoming>
#   #   # Umask 022 is a good standard umask to prevent new files and dirs
#   #   # (second parm) from being group and world writable.
#   #   Umask    022  022
#   #            <Limit READ WRITE>
#   #            DenyAll
#   #            </Limit>
#   #            <Limit STOR>
#   #            AllowAll
#   #            </Limit>
#   # </Directory>
#
# </Anonymous>

Continue reading