On Sun, Apr 07, 2002 at 01:18:07PM +0100, Rainer Link wrote: > Juergen Hasch schrieb: > > [..] > > > The recycle bin can be configured with the file /etc/samba/recycle_bin.conf: > > [ recycle bin ] > > name = .recycle > > maxsize = 100000 > > exclude = .tmp.temp.o > > excludedir = /tmp/temp/ > > > > It's hardcoded for now because vfs_option doesn't seem to be implemented. > > Hum, vfs options seems to be implemented in 2.4.4-pre. But, actually, it > seems the current code can handle only one vfs options entry, i.e. > > vfs object = /usr/local/samba/lib/vscan-sophos.so > vfs options = abc = 123 > vfs options = yxz = 321 > > I only get "xyz = 321", even if I call lp_vfs_options(SNUM(conn)) twice. > But probably I do sth wrong?
Currently you need to do : vfs options = "abc=123","yxz=321" and parse them yourself. Jeremy.
