I use a corporate jira server and there is really no need for SSL verification (just as you can with python jira libs). I was trying to use org-jira and it was failing to get my jira issues, and I finally figured out it was because request.el was using SSL. I disable the verification and it works.
I am not elisp savvy enough to make a PR, but this is the line I changed:
|
(list "--silent" "--location" |
I added
"-k" before the
"--silent".
If there is not already an option to disable SSL verification, can it be added?
I use a corporate jira server and there is really no need for SSL verification (just as you can with python jira libs). I was trying to use org-jira and it was failing to get my jira issues, and I finally figured out it was because request.el was using SSL. I disable the verification and it works.
I am not elisp savvy enough to make a PR, but this is the line I changed:
emacs-request/request.el
Line 867 in c22e3c2
I added
"-k"before the"--silent".If there is not already an option to disable SSL verification, can it be added?