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

Explicitly quote "From" name part when submitting mail to the Mailgun API

Summary:
We are submitting `epriestley (Evan Priestley) <noreply@meta.phacility.com>`, but should be submitting `"epriestley (Evan Priestley)" <noreply@meta.phacility.com>`.

Add the missing quotes.

Test Plan: Locally, this makes the API calls work against the Mailgun sandbox domain.

Reviewers: chad, amckinley

Reviewed By: chad, amckinley

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

+1 -1
+1 -1
src/applications/metamta/adapter/PhabricatorMailImplementationMailgunAdapter.php
··· 86 86 87 87 $from = idx($this->params, 'from'); 88 88 if (idx($this->params, 'from-name')) { 89 - $params['from'] = "{$this->params['from-name']} <{$from}>"; 89 + $params['from'] = "\"{$this->params['from-name']}\" <{$from}>"; 90 90 } else { 91 91 $params['from'] = $from; 92 92 }