It appears that spammers have infiltrated these forums.,,,,,
Hope that doesn't drown out my current OpenCAT issue i.e. only Admins see email options in Candidates and Lists etc
I have looked at 
https://github.com/opencats/OpenCATS/wi ... trol-Lists and tried:
/*
require_once('./constants.php');
class ACL_SETUP {
    // defining user roles
    public static $USER_ROLES = array(
        'candidate' => array('Candidate', 'candidate', 'This is a candidate.', ACCESS_LEVEL_SA, ACCESS_LEVEL_READ),
        'demo' => array('Demo', 'demo', 'This is a demo user.', ACCESS_LEVEL_SA, ACCESS_LEVEL_READ)
    );
    // defining access levels different from the default access level
    public static $ACCESS_LEVEL_MAP = array(
        'candidate' => array(
        ),
        'demo' => array(
            'candidates' => ACCESS_LEVEL_DELETE,
            'candidates.emailCandidates' => ACCESS_LEVEL_SA,
            'candidates.history' => ACCESS_LEVEL_DEMO,
            'joborders' => ACCESS_LEVEL_DELETE,
            'joborders.show' => ACCESS_LEVEL_DEMO,
            'joborders.email' => ACCESS_LEVEL_DISABLED,
        ),
        ‘recruiter' => array(
            'candidates.emailCandidates' => ACCESS_LEVEL_EDIT,)
    );
};
*/
Amongst other attempts, all without success.
- Update: I worked around this by upgrading my account to Admin.