# File ftpd/lib/symbiosis/domain/ftp.rb, line 132
      def login(password)
        #
        # Do the password check.
        #
        if true === domain.check_password(password, self.password)
  
          #
          # OK, we've successfully logged in.  Create the directory
          #
          domain.create_dir(File.expand_path(self.chroot_dir)) unless File.directory?(self.chroot_dir)
  
          return true
        else
          return false
        end
      end