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

Set 'From' correctly in MetaMTA.

+1 -2
+1 -2
src/applications/metamta/controller/send/PhabricatorMetaMTASendController.php
··· 29 29 $mail->setSubject($request->getStr('subject')); 30 30 $mail->setBody($request->getStr('body')); 31 31 32 - // TODO! 33 - // $mail->setFrom($request->getViewerContext()->getUserID()); 32 + $mail->setFrom($request->getUser()->getPHID()); 34 33 $mail->setSimulatedFailureCount($request->getInt('failures')); 35 34 $mail->setIsHTML($request->getInt('html')); 36 35 $mail->save();