Puppet open source ERROR 400

Hi! I' have 2 files:

file test.pp

class copy {
file {"/etc/puppet/files/client1/testfile":
path => "/home/vassiliy/mytestfile",
source => "puppet:///mpoint/client1/testfile",
mode => '644'
}

and file site.pp

import "test.pp"
node client1 {
include copy
}

in fileserver.conf

created section:

[mpoint]
path /etc/puppet/files
allow *

but when I'm trying to copy file to client1 host i got rspond in /var/log/messages :

ERROR 400 on SERVER: Not authorized to call find on /file_metadata/mpoint/client1/testfile with {:links=>"manage"}

Could you help me with the issue?
I'm newbie in puppet