@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

allow https.cabundle in IRC bot

Summary: Adds support for custom SSL certs in the IRC bot config, same as in .arcconfig

Test Plan: Bot wouldn't connect before. Added this code and corresponding line in bot config, now it does.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Differential Revision: https://secure.phabricator.com/D8393

authored by

Eric Stern and committed by
epriestley
3787a8d3 b49b9131

+5
+5
src/infrastructure/daemon/bot/PhabricatorBot.php
··· 45 45 $this->handlers[] = $obj; 46 46 } 47 47 48 + $ca_bundle = idx($config, 'https.cabundle'); 49 + if ($ca_bundle) { 50 + HTTPSFuture::setGlobalCABundleFromPath($ca_bundle); 51 + } 52 + 48 53 $conduit_uri = idx($config, 'conduit.uri'); 49 54 if ($conduit_uri) { 50 55 $conduit_user = idx($config, 'conduit.user');