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

Don't send the address verification email "From" the user in question

Summary: Sending these as the user doesn't make a ton of sense, and LLVM reports some issues with these emails getting caught in spam filters. Users expect these emails, so just send them from "noreply@example.com" or whatever is configured.

Test Plan: Sent myself a verification email, verified it came from a noreply@ address.

Reviewers: btrahan, vrana

Reviewed By: btrahan

CC: klimek, aran

Maniphest Tasks: T1994

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

-1
-1
src/applications/people/storage/PhabricatorUserEmail.php
··· 137 137 ->addRawTos(array($address)) 138 138 ->setSubject('[Phabricator] Email Verification') 139 139 ->setBody($body) 140 - ->setFrom($user->getPHID()) 141 140 ->setRelatedPHID($user->getPHID()) 142 141 ->saveAndSend(); 143 142