| Hi Lukasz You will not be able to do this with Lite, since it has no User Manager, no support for multiple profiles and you are not able to add log filters. For Pro/Enterprise, you can add a new user account for each user and have a report filter for that user, provided you can craft a report filter that matches your requirement, so this will match all users starting with "sales_": (sasl_username matches 'sales_.*'), or you could build a larger filter like this: ((sasl_username within 'user1') or (sasl_username within 'user2') or (sasl_username within 'manager1')), 'within' is faster than 'matches', so try and use 'within' where you can. You should also take care with this option as you will have only one profile with all the data in and with large logs the reporting may be significantly slower than the approach below. Or you can create a profile for each group (and have users able to access certain profiles)and use log filters (scales better/more manageable) and the log filter will be something like this: "if (sasl_username eq 'user1') then 'accept' else 'reject';", and you again can build up the filter for multiple users: "if ((sasl_username eq 'user1') or (sasl_username eq 'user1') or (sasl_username eq 'manager1')) then 'accept' else 'reject';" I hope this helps. Regards Graham Sawmill EMEA Support Download : http://www.sawmill.co.uk/download Purchase : http://www.sawmill.co.uk/purchase Support : http://www.sawmill.co.uk/support As well as sending in email to create/update tickets, you can create / edit / review / close your tickets on-line. If you do not yet have a password, use your email address and request a password reminder from the support page. |