Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/option/PhabricatorMetaMTAConfigOptions.php
| Show First 20 Lines • Show All 239 Lines • ▼ Show 20 Lines | return array( | ||||
| $this->newOption('metamta.email-preferences', 'bool', true) | $this->newOption('metamta.email-preferences', 'bool', true) | ||||
| ->setBoolOptions( | ->setBoolOptions( | ||||
| array( | array( | ||||
| pht('Show Email Preferences Link'), | pht('Show Email Preferences Link'), | ||||
| pht('No Email Preferences Link'), | pht('No Email Preferences Link'), | ||||
| )) | )) | ||||
| ->setSummary(pht('Show email preferences link in email.')) | ->setSummary(pht('Show email preferences link in email.')) | ||||
| ->setDescription($email_preferences_description), | ->setDescription($email_preferences_description), | ||||
| $this->newOption('metamta.insecure-auth-with-reply-to', 'bool', false) | |||||
| ->setBoolOptions( | |||||
| array( | |||||
| pht('Allow Insecure Reply-To Auth'), | |||||
| pht('Disallow Reply-To Auth'), | |||||
| )) | |||||
| ->setSummary(pht('Trust "Reply-To" headers for authentication.')) | |||||
| ->setDescription($reply_to_description), | |||||
| $this->newOption('metamta.public-replies', 'bool', false) | $this->newOption('metamta.public-replies', 'bool', false) | ||||
| ->setBoolOptions( | ->setBoolOptions( | ||||
| array( | array( | ||||
| pht('Use Public Replies (Less Secure)'), | pht('Use Public Replies (Less Secure)'), | ||||
| pht('Use Private Replies (More Secure)'), | pht('Use Private Replies (More Secure)'), | ||||
| )) | )) | ||||
| ->setSummary( | ->setSummary( | ||||
| pht( | pht( | ||||
| Show All 36 Lines | |||||