When creating a new mailbox and specifying the Security Level (Clear Text, APOP, NTLM, MD5, OAUTH 2.0), how is the security level value stored and referenced for the mailbox?
Release : 17.3
Component : SERVICE DESK MANAGER
The security level value is stored in the usp_mailbox table's security_lvl field. This field is an integer value that matches each selection as follows:
In the detail_mailbox.htmpl form, one will find coding that is written as follows:
case "0" :
csecurity_lvl = msgtext("Clear_Text");
break;
case "1":
csecurity_lvl = "APOP";
break;
case "2":
csecurity_lvl = "NTLM";
break;
case "3":
csecurity_lvl = "MD5";
break;
case "4":
csecurity_lvl = "OAUTH 2.0";
break;