Certain inbound emails are not visible on the instance due to unsupported character encodingIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Inbound Emails from certain users are not processed by the ServiceNow instance. These emails are not recognized by the system and even do not show up in the sys_email table. When seeing in the email logs, we can see java.io.UnsupportedEncodingException, corresponding to the message ID. Example entry in the logs: 2018-11-02 13:09:28 (004) worker.3 worker.3 WARNING *** WARNING *** Message UID='XXXXXX' Message-ID='<XXXXXXXXXX@XXXXX.XXXX.prod.outlook.com>' - java.io.UnsupportedEncodingException: utf-7 : utf-7 ReleaseValid for all releasesCauseThis happens because the character encoding of the inbound email is not supported by the instance. ServiceNow Product Documentation page mentions the following - If the email encoding is ASCII-7 or UTF-8, inbound email actions preserve the character encoding in any associated task records they produce.If the email encoding is ISO-8859-1, the inbound email action attempts to convert the email to Windows 1252.Inbound email actions convert any other encodings (for example, Mac OS Roman) to plain text, which may or may not be readable. If the user is using Western European ISO encoding, which by default is present in MS Outlook, then it translates to ISO-8859-1 and conforms to the above rules.ResolutionCharacter encodings supported by ServiceNow are majorly classified in the rules as stated above. Beyond this, if there is any encoding that is not supported by Java, then it will not be supported by ServiceNow. Here is the link to all the encodings supported by Java, which might be referred to when checking for any other encoding besides UTF - 8 / ISO-8859-1. http://docs.oracle.com/javase/7/docs/technotes/guides/intl/encoding.doc.html