Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorMetaMTAConfigOptions.php
| Show First 20 Lines • Show All 325 Lines • ▼ Show 20 Lines | return array( | ||||
| pht( | pht( | ||||
| 'You can set a limit for the maximum byte size of outbound mail. '. | 'You can set a limit for the maximum byte size of outbound mail. '. | ||||
| 'Mail which is larger than this limit will be truncated before '. | 'Mail which is larger than this limit will be truncated before '. | ||||
| 'being sent. This can be useful if your MTA rejects mail which '. | 'being sent. This can be useful if your MTA rejects mail which '. | ||||
| 'exceeds some limit (this is reasonably common). Specify a value '. | 'exceeds some limit (this is reasonably common). Specify a value '. | ||||
| 'in bytes.')) | 'in bytes.')) | ||||
| ->setSummary(pht('Global cap for size of generated emails (bytes).')) | ->setSummary(pht('Global cap for size of generated emails (bytes).')) | ||||
| ->addExample(524288, pht('Truncate at 512KB')) | ->addExample(524288, pht('Truncate at 512KB')) | ||||
| ->addExample(1048576, pht('Truncate at 1MB')) | ->addExample(1048576, pht('Truncate at 1MB')), | ||||
| ); | ); | ||||
epriestley: I think we should avoid introducing this option for now so we can default it to `true` when we… | |||||
Not Done Inline ActionsSo should I remove the checks? I've just defaulted it to true for now talshiri: So should I remove the checks? I've just defaulted it to true for now | |||||
| } | } | ||||
| } | } | ||||
Not Done Inline ActionsMissing and/or extra words, "HTML is enabled reply addresses" epriestley: Missing and/or extra words, "HTML is enabled reply addresses" | |||||
Not Done Inline ActionsI have no idea what I was thinking talshiri: I have no idea what I was thinking | |||||
I think we should avoid introducing this option for now so we can default it to true when we do introduce it. Changing defaults later is a little sketchier than just adding a new option to control a new behavior.