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

Clarify mail_handler.php setup instructions

Summary: While not explicitly misleading, this document can do a better job of covering the common/modern case.

Test Plan: Read document.

Reviewers: rush898, btrahan

Reviewed By: btrahan

Subscribers: epriestley

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

+11 -4
+11 -4
src/docs/user/configuration/configuring_inbound_email.diviner
··· 199 199 Now, you can actually configure sendmail to deliver to Phabricator. In 200 200 `/etc/aliases`, add an entry like this: 201 201 202 - phabricator: "| /path/to/phabricator/scripts/mail/mail_handler.php <ENV>" 202 + phabricator: "| /path/to/phabricator/scripts/mail/mail_handler.php" 203 + 204 + If you use the `PHABRICATOR_ENV` environmental variable to select a 205 + configuration, you can pass the value to the script as an argument: 206 + 207 + .../path/to/mail_handler.php <ENV> 208 + 209 + This is an advanced feature which is rarely used. Most installs should run 210 + without an argument. 203 211 204 - ...where <ENV> is the PHABRICATOR_ENV the script should run under. Run 205 - `sudo newaliases`. Now you likely need to symlink this script into 206 - `/etc/smrsh/`: 212 + After making this change, run `sudo newaliases`. Now you likely need to symlink 213 + this script into `/etc/smrsh/`: 207 214 208 215 sudo ln -s /path/to/phabricator/scripts/mail/mail_handler.php /etc/smrsh/ 209 216