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

Have Maniphest use create transactions when using email

Summary: Fixes T12929. Sets a create transaction if new.

Test Plan: test a new task over email via command line

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12929

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

+4
+4
src/applications/maniphest/mail/ManiphestReplyHandler.php
··· 25 25 26 26 if ($is_new) { 27 27 $xactions[] = $this->newTransaction() 28 + ->setTransactionType(PhabricatorTransactions::TYPE_CREATE) 29 + ->setNewValue(true); 30 + 31 + $xactions[] = $this->newTransaction() 28 32 ->setTransactionType(ManiphestTaskTitleTransaction::TRANSACTIONTYPE) 29 33 ->setNewValue(nonempty($mail->getSubject(), pht('Untitled Task'))); 30 34