Information
If FTP is permitted to be used on the system, the file /etc/ftpd/ftpusers is used to specify a list of users who are not allowed to access the system via FTP.
Solution
Add the system accounts to the /etc/ftpd/ftpusers file as shown below -
cd /etc/ftpd
for user in adm bin daemon gdm listen lp noaccess nobody nobody4 nuucp postgres root smmsp svctag sys uucp webservd do echo $user >> ftpusers done
sort -u ftpusers > ftpusers.new
mv ftpusers.new ftpusers
pkgchk -f -n -p /etc/ftpd/ftpusers