mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Display e-mail preferences even if user can't change them
Test Plan: Displayed e-mail preferences with and without multiplexing. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D2699
This commit is contained in:
parent
a11deec4d4
commit
11b3c6a4d5
1 changed files with 39 additions and 29 deletions
|
@ -123,37 +123,47 @@ final class PhabricatorUserEmailPreferenceSettingsPanelController
|
|||
->setValue($preferences->getPreference($pref_no_self_mail, 0)));
|
||||
|
||||
if (PhabricatorMetaMTAMail::shouldMultiplexAllMail()) {
|
||||
$form
|
||||
->appendChild(
|
||||
id(new AphrontFormSelectControl())
|
||||
->setLabel('Add "Re:" Prefix')
|
||||
->setName($pref_re_prefix)
|
||||
->setCaption(
|
||||
'Enable this option to fix threading in Mail.app on OS X Lion, '.
|
||||
'or if you like "Re:" in your email subjects.')
|
||||
->setOptions(
|
||||
array(
|
||||
'default' => 'Use Server Default ('.$re_prefix_default.')',
|
||||
'true' => 'Enable "Re:" prefix',
|
||||
'false' => 'Disable "Re:" prefix',
|
||||
))
|
||||
->setValue($re_prefix_value))
|
||||
->appendChild(
|
||||
id(new AphrontFormSelectControl())
|
||||
->setLabel('Vary Subjects')
|
||||
->setName($pref_vary)
|
||||
->setCaption(
|
||||
'This option adds more information to email subjects, but may '.
|
||||
'break threading in some clients.')
|
||||
->setOptions(
|
||||
array(
|
||||
'default' => 'Use Server Default ('.$vary_default.')',
|
||||
'true' => 'Vary Subjects',
|
||||
'false' => 'Do Not Vary Subjects',
|
||||
))
|
||||
->setValue($vary_value));
|
||||
$re_control = id(new AphrontFormSelectControl())
|
||||
->setName($pref_re_prefix)
|
||||
->setOptions(
|
||||
array(
|
||||
'default' => 'Use Server Default ('.$re_prefix_default.')',
|
||||
'true' => 'Enable "Re:" prefix',
|
||||
'false' => 'Disable "Re:" prefix',
|
||||
))
|
||||
->setValue($re_prefix_value);
|
||||
|
||||
$vary_control = id(new AphrontFormSelectControl())
|
||||
->setName($pref_vary)
|
||||
->setOptions(
|
||||
array(
|
||||
'default' => 'Use Server Default ('.$vary_default.')',
|
||||
'true' => 'Vary Subjects',
|
||||
'false' => 'Do Not Vary Subjects',
|
||||
))
|
||||
->setValue($vary_value);
|
||||
} else {
|
||||
$re_control = id(new AphrontFormStaticControl())
|
||||
->setValue('Server Default ('.$re_prefix_default.')');
|
||||
|
||||
$vary_control = id(new AphrontFormStaticControl())
|
||||
->setValue('Server Default ('.$vary_default.')');
|
||||
}
|
||||
|
||||
$form
|
||||
->appendChild(
|
||||
$re_control
|
||||
->setLabel('Add "Re:" Prefix')
|
||||
->setCaption(
|
||||
'Enable this option to fix threading in Mail.app on OS X Lion, '.
|
||||
'or if you like "Re:" in your email subjects.'))
|
||||
->appendChild(
|
||||
$vary_control
|
||||
->setLabel('Vary Subjects')
|
||||
->setCaption(
|
||||
'This option adds more information to email subjects, but may '.
|
||||
'break threading in some clients.'));
|
||||
|
||||
$form
|
||||
->appendChild(
|
||||
'<br />'.
|
||||
|
|
Loading…
Reference in a new issue