Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I restore the DB form JIRA B to JIRA A by SQL server.
Then I want to set the JIRA A's outgoing mail to disable automaticly.
I think this setting was store in the DB. So how to set Outgoing Mail DISABLED by edit DB?
Thanks very much!
Hi xinan, as Nic said, it is recommended not to change values directly in JIRA database.
Anyway, if you really need to do it this way, you'll need to execute the following query and restart your JIRA instance:
UPDATE propertynumber SET propertyvalue=1 WHERE ID=(SELECT ID FROM propertyentry WHERE ENTITY_NAME='jira.properties' AND ENTITY_ID=1 AND PROPERTY_KEY='jira.mail.send.disabled');
Regards
Looks pretty simple to me. Pretty basic sub-select. If he's like me, he's doing it in a test or development environment prior to Jira startup, so what's the risk?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With this particular database hack there are two main risks
1. It probably won't work. It certainly won't work without restarting, and if you're doing that, you might as well do it the supported way, as it's quicker, safer and more reliable.
2. It encourages people to do things in the database. Which is a very very bad thing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is strongly recommended that you do NOT change the database in JIRA. It's not as simple as people seem to think it is.
Use the command line flags to start JIRA A instead - see https://confluence.atlassian.com/jira/setting-properties-and-options-on-startup-120007.html ( i.e. -Datlassian.mail.senddisabled -Datlassian.mail.fetchdisabled -Datlassian.mail.popdisabled )
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
These options are already present but commented out in in the setenv.sh and setenv.bat that ship with JIRA. I would simply uncomment them rather than trying to do anything fancy. In setenv.bat: rem -------------------------------------------------------------------------- rem Uncomment this setting if you want to import data without notifications rem rem -------------------------------------------------------------------------- rem set DISABLE_NOTIFICATIONS= -Datlassian.mail.senddisabled=true -Datlassian.mail.fetchdisabled=true -Datlassian.mail.popdisabled=true In setenv.sh: # Uncomment this setting if you want to import data without notifications # #DISABLE_NOTIFICATIONS=" -Datlassian.mail.senddisabled=true -Datlassian.mail.fetchdisabled=true -Datlassian.mail.popdisabled=true"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you please tell me how to uncomment the lines in the setenv.bat file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Remove the "this is a comment" indicator character(s) from the beginning of each line you want to enable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.