RE: systemFlags in Service
Somewhere in this community, I think Stian gave a reply of the Enum list:
enum
{
FlagDropDownLogin = (1<<0),
FlagDefaultExternalSlevel = (1<<1),
FlagDefaultCcCustomer = (1<<2),
FlagDefaultCloseNewTicket = (1<<3), // deprecated
FlagDefaultCloseAddMessage = (1<<4), // deprecated
FlagDefaultDontCheckAddress = (1<<5),
FlagNoNewCustomerMail = (1<<6),
FlagSortMsgDesc = (1<<7),
FlagNoEjournalEmailAd = (1<<8),
FlagEnableWebServerSecurity = (1<<9),
FlagKeepAttachmentType = (1<<10),
FlagStrongPw = (1<<11),
FlagEnableCustomerWebServerSecurity = (1<<12),
FlagSendLicenseInfo = (1<<13),
FlagStrongCustomerPw = (1<<14),
FlagEnableWebServerSecurityStrong = (1<<15),
FlagOnline = (1<<16),
};
As far as I know, there are no other documentation
Hope this helps.