CapaJ
ServiceNow Employee

I ran this script in Scripts - Background, and it blanked out the authentication field where type was "SMTP".

[code]
doit();
function doit() {
var gr = new GlideRecord('sys_email_account');
gr.addQuery("type", "smtp");
gr.query();
while (gr.next()) {
gr.authentication = "";
gr.update();
}
}
[code]