Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2013 02:00 PM
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]