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

Fix outdated link to MetaMTA web UI in MetaMTA tasks

Summary: Missed this when moving most MetaMTA responsibilities to the CLI. Show the correct command to get data rather than linking to a 404.

Test Plan: {F56733}

Reviewers: wez, btrahan, chad

Reviewed By: chad

CC: aran

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

+5 -4
+4 -3
src/applications/metamta/PhabricatorMetaMTAWorker.php
··· 43 43 44 44 public function renderForDisplay() { 45 45 return phutil_tag( 46 - 'a', 47 - array('href' => '/mail/view/'.$this->getTaskData().'/'), 48 - $this->getTaskData()); 46 + 'pre', 47 + array( 48 + ), 49 + 'phabricator/ $ ./bin/mail show-outbound --id '.$this->getTaskData()); 49 50 } 50 51 51 52 }
+1 -1
src/applications/metamta/management/PhabricatorMailManagementShowOutboundWorkflow.php
··· 90 90 $info[] = null; 91 91 $info[] = pht('ATTACHMENTS'); 92 92 foreach ($attachments as $attachment) { 93 - $info[] = $attachment['filename']; 93 + $info[] = idx($attachment, 'filename', pht('Unnamed File')); 94 94 } 95 95 } 96 96