Select the types of activity you want to include in your feed.
@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
···6464 ->addPhabricatorConfig('amazon-ses.secret-key');
6565 }
66666767+ if (!PhabricatorEnv::getEnvConfig('amazon-ses.endpoint')) {
6868+ $message = pht(
6969+ 'Amazon SES is selected as the mail adapter, but no SES endpoint '.
7070+ 'is configured. Provide an SES endpoint or choose a different '.
7171+ 'mail adapter.');
7272+7373+ $this->newIssue('config.amazon-ses.endpoint')
7474+ ->setName(pht('Amazon SES Endpoint Not Set'))
7575+ ->setMessage($message)
7676+ ->addRelatedPhabricatorConfig('metamta.mail-adapter')
7777+ ->addPhabricatorConfig('amazon-ses.endpoint');
7878+ }
7979+6780 $address_key = 'metamta.default-address';
6881 $options = PhabricatorApplicationConfigOptions::loadAllOptions();
6982 $default = $options[$address_key]->getDefault();
···135135 "PhabricatorMailImplementationAmazonSESAdapter".
136136 - **amazon-ses.access-key**: set to your Amazon SES access key.
137137 - **amazon-ses.secret-key**: set to your Amazon SES secret key.
138138+ - **amazon-ses.endpoint**: Set to your Amazon SES endpoint.
138139139140NOTE: Amazon SES **requires you to verify your "From" address**. Configure which
140141"From" address to use by setting "`metamta.default-address`" in your config,