We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Email sending option (glide.email.smtp.active) is read only, PDI instance

Amadeusz Sochac
Tera Contributor

Hello,

On my PDI, the Email sending options (Email properties > System properties) is read only - cannot be set to true. I am in global scope and with admin rights as seen other similar posts. Tried even with a fix script:

var gr = new GlideRecord("sys_properties");
gr.addQuery("sys_id", "856303e90a0a0bc50164129959388444");
gr.query();

if (gr.next()) {
gr.value = true;
gr.update();
}

 

... still does not work.

All fixes are welcome.

5 REPLIES 5

Amadeusz Sochac
Tera Contributor

That sums it all up 🙂 Thanks for the fixes and responses anyway, cheers