@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.

Tweak MetaMTA test console a bit for usability

Summary: default check the system send prefernce for immediateness and add more direct text about dameons, with a link to help.

Test Plan: looks good

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T726

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

+15 -1
+15 -1
src/applications/metamta/controller/PhabricatorMetaMTASendController.php
··· 92 92 93 93 $panel_id = celerity_generate_unique_node_id(); 94 94 95 + $phdlink_href = PhabricatorEnv::getDoclink( 96 + 'article/Managing_Daemons_with_phd.html'); 97 + 98 + $phdlink = phutil_render_tag( 99 + 'a', 100 + array( 101 + 'href' => $phdlink_href, 102 + 'target' => '_blank', 103 + ), 104 + '"phd start"'); 105 + 95 106 $form = new AphrontFormView(); 96 107 $form->setUser($request->getUser()); 97 108 $form ··· 149 160 ->addCheckbox( 150 161 'immediately', 151 162 '1', 152 - 'Send immediately, not via MetaMTA background script.')) 163 + 'Send immediately. (Do not enqueue for daemons.)', 164 + PhabricatorEnv::getEnvConfig('metamta.send-immediately')) 165 + ->setCaption('Daemons can be started with '.$phdlink.'.') 166 + ) 153 167 ->appendChild( 154 168 id(new AphrontFormSubmitControl()) 155 169 ->setValue('Send Mail'));