How to disable JIRA Insiders pop up dialog

Platform Notice: Data Center Only - This article only applies to Atlassian apps 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:

Warning: Backup your database before proceeding.

Before running any SQL in this article, create a full backup of your Jira database. This is a database-level operation with no undo other than restoring from backup. Only proceed if you're comfortable running SQL directly against the Jira database, and test on a staging or cloned environment first, wherever possible.

  1. Shutdown JIRA.

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

    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

      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

      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 September 25, 2025

Still need help?

The Atlassian Community is here for you.