How to disable JIRA Insiders pop up dialog

Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.

Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

(Auto-migrated image: description temporarily unavailable)
  1. Go to Administrator > General Configuration > Advanced Settings

  2. Hover over the current value and click to edit. You will see a pencil icon appear.

  3. Set -1 value for the jira.newsletter.tip.delay.days

  4. Click on the Update button in front of it.

⚠️Do not press enter to commit the change with the steps above as it may lead to other values getting set to default. This is documented under the following Bug:

To do this via a Database update:

Always back up your data before making any database modifications. If possible, test any alter, insert, update, or delete SQL commands on a staging server first.

  1. Shutdown JIRA.

  2. Run the SQL command below to look for the JIRA Insider setting:

    1 select * from propertyentry, propertystring where propertyentry.ID = propertystring.ID AND property_key like '%jira.newsletter.tip.delay.days%';

    ℹ️ If you couldn't find get any returned results, please run the second query below and ignore the steps 3.

    1. PostgreSQL

      1 2 3 insert into propertyentry (id,entity_name,entity_id,property_key, propertytype) values ((SELECT max(id::integer)+1 FROM propertyentry),'jira.properties',1,'jira.newsletter.tip.delay.days',5);   insert into propertystring (id,propertyvalue) values ((SELECT max(id::integer)+1 FROM propertystring),-1);
    2. MySQL

      1 2 3 insert into propertyentry (id,entity_name,entity_id,property_key, propertytype) values ((SELECT max(CAST(id AS SIGNED))+1 FROM propertyentry),'jira.properties',1,'jira.newsletter.tip.delay.days',5); insert into propertystring (id,propertyvalue) values ((SELECT max(CAST(id AS SIGNED))+1 FROM propertystring),-1);
  3. Copy the ID from propertystring table and update the propertyvalue column to -1.

  4. Restart JIRA.

Updated on April 8, 2025

Still need help?

The Atlassian Community is here for you.