1.  acl {
   2.     allow from 10.10.10.0/24;
   3.     allow from 192.168.10.0/27;
   4.     deny from any;
   5.  }
   6.  
   7.  component ftp {
   8.     mode inetd;
   9.     socket "inet://0.0.0.0:21";
  10.     umask 027;
  11.     program /usr/sbin/ftpd
  12.     command "ftpd -l -C";
  13.  }
  14.  
  15.  component pop3d {
  16.     mode inetd;
  17.     socket "inet://0.0.0.0:110";
  18.     program "/usr/sbin/pop3d";
  19.     command "pop3d --inetd";
  20.  }
  21.  
  22.  component git {
  23.     env "PATH=/bin:/usr/bin";
  24.     command "/usr/bin/git-daemon --inetd --verbose --export-all"
  25.  	   " --base-path=/sources /sources";
  26.  }