Changeset View
Changeset View
Standalone View
Standalone View
conf/default.conf.php
| Show First 20 Lines • Show All 293 Lines • ▼ Show 20 Lines | // -- Email ----------------------------------------------------------------- // | ||||
| // PHPMailerLite, which will invoke "sendmail". This is appropriate | // PHPMailerLite, which will invoke "sendmail". This is appropriate | ||||
| // if sendmail actually works on your host, but if you haven't configured mail | // if sendmail actually works on your host, but if you haven't configured mail | ||||
| // it may not be so great. A number of other mailers are available (e.g., SES, | // it may not be so great. A number of other mailers are available (e.g., SES, | ||||
| // SendGrid, SMTP, custom mailers), consult "Configuring Outbound Email" in | // SendGrid, SMTP, custom mailers), consult "Configuring Outbound Email" in | ||||
| // the documentation for details. | // the documentation for details. | ||||
| 'metamta.mail-adapter' => | 'metamta.mail-adapter' => | ||||
| 'PhabricatorMailImplementationPHPMailerLiteAdapter', | 'PhabricatorMailImplementationPHPMailerLiteAdapter', | ||||
| // When email is sent, try to hand it off to the MTA immediately instead of | |||||
| // queueing it for delivery by the daemons. If you are running the Phabricator | |||||
| // daemons with "phd start", you should disable this to provide a (sometimes | |||||
| // substantial) performance boost. It's on by default to make setup and | |||||
| // configuration a little easier. | |||||
| 'metamta.send-immediately' => true, | |||||
| // When email is sent, what format should Phabricator use for user's | // When email is sent, what format should Phabricator use for user's | ||||
| // email addresses? Valid values are: | // email addresses? Valid values are: | ||||
| // - 'short' - 'gwashington <gwashington@example.com>' | // - 'short' - 'gwashington <gwashington@example.com>' | ||||
| // - 'real' - 'George Washington <gwashington@example.com>' | // - 'real' - 'George Washington <gwashington@example.com>' | ||||
| // - 'full' - 'gwashington (George Washington) <gwashington@example.com>' | // - 'full' - 'gwashington (George Washington) <gwashington@example.com>' | ||||
| // The default is 'full'. | // The default is 'full'. | ||||
| 'metamta.user-address-format' => 'full', | 'metamta.user-address-format' => 'full', | ||||
| ▲ Show 20 Lines • Show All 829 Lines • Show Last 20 Lines | |||||