@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 transposed name/email in Mailgun adapter

Summary: Ref T12677. This argument order was swapped.

Test Plan: Will push/verify.

Maniphest Tasks: T12677

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

+1 -1
+1 -1
src/applications/metamta/adapter/PhabricatorMailImplementationMailgunAdapter.php
··· 21 21 if (empty($this->params['reply-to'])) { 22 22 $this->params['reply-to'] = array(); 23 23 } 24 - $this->params['reply-to'][] = $this->renderAddress($name, $email); 24 + $this->params['reply-to'][] = $this->renderAddress($email, $name); 25 25 return $this; 26 26 } 27 27