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

Link to docs from metamta.mail-adapter config

Test Plan: Look at new config page, click link.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

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

authored by

Aviv Eyal and committed by
avivey
27a243cd 018d1b77

+7 -3
+7 -3
src/applications/config/option/PhabricatorMetaMTAConfigOptions.php
··· 138 138 , 139 139 'metamta.public-replies')); 140 140 141 + $adapter_doc_href = PhabricatorEnv::getDoclink( 142 + 'Configuring Outbound Email'); 143 + $adapter_doc_name = pht('Configuring Outbound Email'); 141 144 $adapter_description = $this->deformat(pht(<<<EODOC 142 145 Adapter class to use to transmit mail to the MTA. The default uses 143 146 PHPMailerLite, which will invoke "sendmail". This is appropriate if sendmail 144 147 actually works on your host, but if you haven't configured mail it may not be so 145 148 great. A number of other mailers are available (e.g., SES, SendGrid, SMTP, 146 - custom mailers), consult "Configuring Outbound Email" in the documentation for 147 - details. 149 + custom mailers) - consult [[ %s | %s ]] for details. 148 150 EODOC 149 - )); 151 + , 152 + $adapter_doc_href, 153 + $adapter_doc_name)); 150 154 151 155 $placeholder_description = $this->deformat(pht(<<<EODOC 152 156 When sending a message that has no To recipient (i.e. all recipients are CC'd,