it seems that whenever a redmine environment has to communicate to SLACK using a proxy, it seems to don't work:
I am setting the proxy as ENV at the beginning in the redmine_slack/lib/redmine_slack/listener.rb for the HTTPClient
ENV['http_proxy'] = 'http://proxyURL:proxyPORT'
Also I tried using
client = HTTPClient.new('http://proxyURL:proxyPORT')
But somehow it seems that the variables are taken into consideration but no message is sent ..... It's kind of weird... Am I doing something wrong with this??
Hi,
it seems that whenever a redmine environment has to communicate to SLACK using a proxy, it seems to don't work:
I am setting the proxy as ENV at the beginning in the redmine_slack/lib/redmine_slack/listener.rb for the HTTPClient
ENV['http_proxy'] = 'http://proxyURL:proxyPORT'
Also I tried using
client = HTTPClient.new('http://proxyURL:proxyPORT')
But somehow it seems that the variables are taken into consideration but no message is sent ..... It's kind of weird... Am I doing something wrong with this??
Thanks very much in advance for the help :)