Docs advise you can find it under Mail, but there is no option. Also displaying System Info it shows:
Jira inform - batchers - 4.1.5 Disabled
Jira inform - batching plugin - 4.1.5 Disabled
Reason I want to enable it is Jira Troubleshoot and Support plugin fails to enable as the batching plugin is not available:
2025-07-29 13:48:08,639+0000 Spring DM Context Creation Timer ERROR [o.e.g.b.e.i.dependencies.startup.DependencyWaiterApplicationContextExecutor] Unable to create application context for [com.atlassian.troubleshooting.plugin-jira], unsatisfied dependencies: Dependency on [(&(objectClass=com.atlassian.jira.plugins.inform.api.batching.InstancePreferencesService)(objectClass=com.atlassian.jira.plugins.inform.api.batching.InstancePreferencesService))] (from bean [&instancePreferencesService])
To re-enable the plugin (mysql). The restart jira. After restarting Jira you will have a Troubleshooting and Support section in System (plugin is enabled). Now you can choose whether to batch up emails or not. Looks like someone disabled the plugin many years ago to disable batching of emails, but the plugin now allows you to set it without disabling the plugins.
mysql> SELECT * FROM pluginstate WHERE pluginenabled = 'false';
+------------------------------------------------------------------+---------------+
| pluginkey | pluginenabled |
+------------------------------------------------------------------+---------------+
| com.atlassian.jira.migration.jira-migration-plugin | false |
| com.atlassian.jira.mobile.jira-mobile-rest | false |
| com.atlassian.jira.plugins.inform.batchers | false |
| com.atlassian.jira.plugins.inform.batching-plugin | false |
| com.onresolve.jira.groovy.groovyrunner:jsd-canned-comment-loader | false |
+------------------------------------------------------------------+---------------+
5 rows in set (0.00 sec)
mysql> DELETE FROM pluginstate WHERE pluginkey = 'com.atlassian.jira.plugins.inform.batchers';
Query OK, 1 row affected (0.01 sec)
mysql> DELETE FROM pluginstate WHERE pluginkey = 'com.atlassian.jira.plugins.inform.batching-plugin';
Query OK, 1 row affected (0.01 sec)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.