mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 00:43:20 +01:00
Preference organisation
This commit is contained in:
parent
c85821f41d
commit
6277192677
@ -315,107 +315,123 @@ class felamimail_hooks
|
||||
|
||||
/* Settings array for this app */
|
||||
$settingsArray = array(
|
||||
'connectionTimeout' => array(
|
||||
array(
|
||||
'type' => 'section',
|
||||
'title' => lang('Mail settings'),
|
||||
'no_lang'=> true,
|
||||
'xmlrpc' => False,
|
||||
'admin' => False
|
||||
),
|
||||
'message_forwarding' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Timeout on connections to your IMAP Server',
|
||||
'name' => 'connectionTimeout',
|
||||
'values' => $connectionTimeout,
|
||||
'label' => 'how to forward messages',
|
||||
'help' => 'Which method to use when forwarding a message',
|
||||
'name' => 'message_forwarding',
|
||||
'values' => $forwardOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'asmail',
|
||||
),
|
||||
'composeOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'New message type',
|
||||
'help' => 'start new messages with mime type plain/text or html?',
|
||||
'name' => 'composeOptions',
|
||||
'values' => $composeOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'html',
|
||||
),
|
||||
'replyOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Reply message type',
|
||||
'help' => 'start reply messages with mime type plain/text or html or try to use the displayed format (default)?',
|
||||
'name' => 'replyOptions',
|
||||
'values' => $replyOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'none',
|
||||
),
|
||||
'disableRulerForSignatureSeparation' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'disable Ruler for separation of mailbody and signature',
|
||||
'help' => 'Turn off horizontal line between signature and composed message (this is not according to RFC).<br>If you use templates, this option is only applied to the text part of the message.',
|
||||
'name' => 'disableRulerForSignatureSeparation',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'default'=> 0,
|
||||
'admin' => False,
|
||||
),
|
||||
'insertSignatureAtTopOfMessage' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'signature at top',
|
||||
'help' => 'insert the signature at top of the new (or reply) message when opening compose dialog (you may not be able to switch signatures)',
|
||||
'name' => 'insertSignatureAtTopOfMessage',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'default'=> 0,
|
||||
'admin' => False,
|
||||
),
|
||||
'attachVCardAtCompose' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Attach vCard',
|
||||
'help' => 'attach users VCard at compose to every new mail',
|
||||
'name' => 'attachVCardAtCompose',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'default'=> 0,
|
||||
'admin' => False,
|
||||
),
|
||||
array(
|
||||
'type' => 'section',
|
||||
'title' => lang('General settings'),
|
||||
'no_lang'=> true,
|
||||
'xmlrpc' => False,
|
||||
'admin' => False
|
||||
),
|
||||
'refreshTime' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Refresh time in minutes',
|
||||
'help' => 'How often to check with the server for new mail',
|
||||
'name' => 'refreshTime',
|
||||
'values' => $refreshTime,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced'=> 5,
|
||||
),
|
||||
'prefaskformove' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Do you want to be asked for confirmation before moving selected messages to another folder?',
|
||||
'name' => 'prefaskformove',
|
||||
'values' => $no_yes_copy,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '1',
|
||||
),
|
||||
'prefaskformultipleforward' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Do you want to be asked for confirmation before attaching selected messages to new mail?',
|
||||
'name' => 'prefaskformultipleforward',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '1',
|
||||
),
|
||||
'prefpreventmanagefolders' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Do you want to prevent the managing of folders (creation, accessrights AND subscribtion)?',
|
||||
'name' => 'prefpreventmanagefolders',
|
||||
'values' => $prefAllowManageFolders,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'prefpreventforwarding' => array(
|
||||
'htmlOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Do you want to prevent the editing/setup for forwarding of mails via settings (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventforwarding',
|
||||
'values' => $no_yes,
|
||||
'label' => 'display of html emails',
|
||||
'help' => 'Do you want to show HTML-Part or plain-text of the email',
|
||||
'name' => 'htmlOptions',
|
||||
'values' => $htmlOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
'forced' => 'always_display',
|
||||
),
|
||||
'prefpreventnotificationformailviaemail' => array(
|
||||
'message_newwindow' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Do you want to prevent the editing/setup of notification by mail to other emailadresses if emails arrive (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventnotificationformailviaemail',
|
||||
'values' => $no_yes,
|
||||
'label' => 'display messages in multiple windows',
|
||||
'help' => 'When displaying messages in a popup, re-use the same popup for all or open a new popup for each message',
|
||||
'name' => 'message_newwindow',
|
||||
'values' => $newWindowOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '1',
|
||||
),
|
||||
'prefpreventeditfilterrules' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Do you want to prevent the editing/setup of filter rules (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventeditfilterrules',
|
||||
'values' => $no_yes,
|
||||
'allowExternalIMGs' => array(
|
||||
'type' => 'check',
|
||||
'label' => 'Allow external images',
|
||||
'help' => 'allow images from external sources in html emails',
|
||||
'name' => 'allowExternalIMGs',
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
'admin' => True,
|
||||
'forced' => true,
|
||||
),
|
||||
'prefpreventabsentnotice' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Do you want to prevent the editing/setup of the absent/vacation notice (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventabsentnotice',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'prefcontroltestconnection' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Show Test Connection section and control the level of info displayed?',
|
||||
'name' => 'prefcontroltestconnection',
|
||||
'values' => $test_connection,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'notavailableautofolders' => array(
|
||||
'type' => 'multiselect',
|
||||
'label' => 'which folders - in general - should NOT be automatically created, if not existing',
|
||||
'name' => 'notavailableautofolders',
|
||||
'values' => $availableAutoFolders,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => 'none',
|
||||
),
|
||||
'sortOrder' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Default sorting order',
|
||||
'label' => 'Sort order',
|
||||
'help' => 'Default sorting order',
|
||||
'name' => 'sortOrder',
|
||||
'values' => $sortOrder,
|
||||
'xmlrpc' => True,
|
||||
@ -425,6 +441,7 @@ class felamimail_hooks
|
||||
'rowOrderStyle' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'row order style',
|
||||
'help' => 'What order the list columns are in',
|
||||
'name' => 'rowOrderStyle',
|
||||
'values' => $rowOrderStyle,
|
||||
'xmlrpc' => True,
|
||||
@ -433,7 +450,8 @@ class felamimail_hooks
|
||||
),
|
||||
'prefMailGridBehavior' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Mail Grid Behavior: how many messages should the mailgrid load? If you select all messages there will be no pagination for mail message list. (Beware, as some actions on all selected messages may be problematic depending on the amount of selected messages.)',
|
||||
'label' => 'how many messages should the mail list load',
|
||||
'help' => 'If you select all messages there will be no pagination for mail message list. Beware, as some actions on all selected messages may be problematic depending on the amount of selected messages.',
|
||||
'name' => 'prefMailGridBehavior',
|
||||
'values' => $gridViewBehavior,
|
||||
'xmlrpc' => True,
|
||||
@ -442,24 +460,37 @@ class felamimail_hooks
|
||||
),
|
||||
'PreViewFrameHeight' => array(
|
||||
'type' => 'input',
|
||||
'label' => '3PaneView: If you want to see a preview of a mail by single clicking onto the subject, set the height for the message-list and the preview area here (300 seems to be a good working value). The preview will be displayed at the end of the message list on demand (click).',
|
||||
'label' => 'Message preview size',
|
||||
'help' => 'If you want to see a preview of a mail by single clicking onto the subject, set the height for the message-list and the preview area here. 300 seems to be a good working value. The preview will be displayed at the end of the message list when a message is selected.',
|
||||
'name' => 'PreViewFrameHeight',
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '300',
|
||||
),
|
||||
'message_forwarding' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'how to forward messages',
|
||||
'name' => 'message_forwarding',
|
||||
'values' => $forwardOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'asmail',
|
||||
),
|
||||
'prefaskformove' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Confirm move to folder',
|
||||
'help' => 'Do you want to be asked for confirmation before moving selected messages to another folder?',
|
||||
'name' => 'prefaskformove',
|
||||
'values' => $no_yes_copy,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '1',
|
||||
),
|
||||
'prefaskformultipleforward' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Confirm attach message',
|
||||
'help' => 'Do you want to be asked for confirmation before attaching selected messages to new mail?',
|
||||
'name' => 'prefaskformultipleforward',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '1',
|
||||
),
|
||||
'mainscreen_showmail' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'show new messages on main screen',
|
||||
'label' => 'show new messages on home page',
|
||||
'help' => 'Should new messages show up on the Home page',
|
||||
'name' => 'mainscreen_showmail',
|
||||
'values' => $selectOptions,
|
||||
'xmlrpc' => True,
|
||||
@ -467,41 +498,73 @@ class felamimail_hooks
|
||||
),
|
||||
'mainscreen_showfolders' => array(
|
||||
'type' => 'multiselect',
|
||||
'label' => 'if shown, which folders should appear on main screen',
|
||||
'label' => 'home page folders',
|
||||
'help' => 'if shown, which folders should appear on the Home page',
|
||||
'name' => 'mainscreen_showfolders',
|
||||
'values' => $folderList,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'messages_showassent_0' => array(
|
||||
'type' => 'multiselect',
|
||||
'label' => 'which folders (additional to the Sent Folder) should be displayed using the Sent Folder View Schema',
|
||||
'name' => 'messages_showassent_0',
|
||||
'values' => $folderList,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => 'none',
|
||||
),
|
||||
'notify_folders' => array(
|
||||
'notify_folders' => array(
|
||||
'type' => 'multiselect',
|
||||
'label' => 'notify when new mails arrive on these folders',
|
||||
'label' => 'New mail notification',
|
||||
'help' => 'notify when new mails arrive in these folders',
|
||||
'name' => 'notify_folders',
|
||||
'values' => $folderList,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'message_newwindow' => array(
|
||||
array(
|
||||
'type' => 'section',
|
||||
'title' => lang('Folder settings'),
|
||||
'no_lang'=> true,
|
||||
'xmlrpc' => False,
|
||||
'admin' => False
|
||||
),
|
||||
'trashFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'display messages in multiple windows',
|
||||
'name' => 'message_newwindow',
|
||||
'values' => $newWindowOptions,
|
||||
'label' => lang('trash folder'),
|
||||
'help' => (isset($trashFolder) && !empty($trashFolder)?lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$trashFolder):''),
|
||||
'no_lang'=> true,
|
||||
'name' => 'trashFolder',
|
||||
'values' => $trashOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'sentFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => lang('sent folder'),
|
||||
'help' => (isset($sentFolder) && !empty($sentFolder)?lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$sentFolder):''),
|
||||
'no_lang'=> true,
|
||||
'name' => 'sentFolder',
|
||||
'values' => $sentOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'draftFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => lang('draft folder'),
|
||||
'help' => (isset($draftFolder) && !empty($draftFolder)?lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$draftFolder):''),
|
||||
'no_lang'=> true,
|
||||
'name' => 'draftFolder',
|
||||
'values' => $draftOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'templateFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => lang('template folder'),
|
||||
'help' => (isset($templateFolder) && !empty($templateFolder)?lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$templateFolder):''),
|
||||
'no_lang'=> true,
|
||||
'name' => 'templateFolder',
|
||||
'values' => $templateOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '1',
|
||||
),
|
||||
'deleteOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'when deleting messages',
|
||||
'help' => 'what to do when you delete a message',
|
||||
'name' => 'deleteOptions',
|
||||
'values' => $deleteOptions,
|
||||
'xmlrpc' => True,
|
||||
@ -511,91 +574,17 @@ class felamimail_hooks
|
||||
'sendOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'when sending messages',
|
||||
'help' => 'what to do when you send a message',
|
||||
'name' => 'sendOptions',
|
||||
'values' => $sendOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'move_to_sent',
|
||||
),
|
||||
'saveAsOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'when saving messages as item of a different app (if app supports the desired option)',
|
||||
'name' => 'saveAsOptions',
|
||||
'values' => $saveAsOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'text',
|
||||
),
|
||||
'composeOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'start new messages with mime type plain/text or html?',
|
||||
'name' => 'composeOptions',
|
||||
'values' => $composeOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'html',
|
||||
),
|
||||
'replyOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'start reply messages with mime type plain/text or html or try to use the displayed format (default)?',
|
||||
'name' => 'replyOptions',
|
||||
'values' => $replyOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'none',
|
||||
),
|
||||
'htmlOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'display of html emails',
|
||||
'name' => 'htmlOptions',
|
||||
'values' => $htmlOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => 'always_display',
|
||||
),
|
||||
'allowExternalIMGs' => array(
|
||||
'type' => 'check',
|
||||
'label' => 'allow images from external sources in html emails',
|
||||
'name' => 'allowExternalIMGs',
|
||||
'xmlrpc' => True,
|
||||
'admin' => True,
|
||||
'forced' => true,
|
||||
),
|
||||
'trashFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => lang('trash folder').(isset($trashFolder) && !empty($trashFolder)?'<br>'.lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$trashFolder):''),
|
||||
'name' => 'trashFolder',
|
||||
'values' => $trashOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'sentFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => lang('sent folder').(isset($sentFolder) && !empty($sentFolder)?'<br>'.lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$sentFolder):''),
|
||||
'name' => 'sentFolder',
|
||||
'values' => $sentOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'draftFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => lang('draft folder').(isset($draftFolder) && !empty($draftFolder)?'<br>'.lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$draftFolder):''),
|
||||
'name' => 'draftFolder',
|
||||
'values' => $draftOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'templateFolder' => array(
|
||||
'type' => 'select',
|
||||
'label' => lang('template folder').(isset($templateFolder) && !empty($templateFolder)?'<br>'.lang('The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.',$templateFolder):''),
|
||||
'name' => 'templateFolder',
|
||||
'values' => $templateOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'trustServersUnseenInfo' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'trust servers SEEN / UNSEEN info when retrieving the folder status. (if you select no, we will search for the UNSEEN messages and count them ourselves)',
|
||||
'label' => 'trust servers SEEN / UNSEEN info',
|
||||
'help' => 'Trust the server when retrieving the folder status. if you select no, we will search for the UNSEEN messages and count them ourselves',
|
||||
'name' => 'trustServersUnseenInfo',
|
||||
'values' => $trustServersUnseenOptions,
|
||||
'xmlrpc' => True,
|
||||
@ -604,48 +593,129 @@ class felamimail_hooks
|
||||
),
|
||||
'showAllFoldersInFolderPane' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'show all Folders (subscribed AND unsubscribed) in Main Screen Folder Pane',
|
||||
'label' => 'show all Folders',
|
||||
'help' => 'show all folders, (subscribed AND unsubscribed) in Main Screen Folder Pane',
|
||||
'name' => 'showAllFoldersInFolderPane',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'default'=> 0,
|
||||
'admin' => False,
|
||||
),
|
||||
'disableRulerForSignatureSeparation' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'disable Ruler for separation of mailbody and signature when adding signature to composed message (this is not according to RFC).<br>If you use templates, this option is only applied to the text part of the message.',
|
||||
'name' => 'disableRulerForSignatureSeparation',
|
||||
'values' => $no_yes,
|
||||
'messages_showassent_0' => array(
|
||||
'type' => 'multiselect',
|
||||
'label' => 'Extra sent folders',
|
||||
'help' => 'which folders (additional to the Sent Folder) should be displayed using the Sent Folder View Schema',
|
||||
'name' => 'messages_showassent_0',
|
||||
'values' => $folderList,
|
||||
'xmlrpc' => True,
|
||||
'default'=> 0,
|
||||
'admin' => False,
|
||||
'forced' => 'none',
|
||||
),
|
||||
'insertSignatureAtTopOfMessage' => array(
|
||||
array(
|
||||
'type' => 'section',
|
||||
'title' => lang('Configuration settings'),
|
||||
'no_lang'=> true,
|
||||
'xmlrpc' => False,
|
||||
'admin' => False
|
||||
),
|
||||
'prefpreventmanagefolders' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'insert the signature at top of the new (or reply) message when opening compose dialog (you may not be able to switch signatures)',
|
||||
'name' => 'insertSignatureAtTopOfMessage',
|
||||
'values' => $no_yes,
|
||||
'label' => 'Prevent managing folders',
|
||||
'help' => 'Do you want to prevent the managing of folders (creation, accessrights AND subscribtion)?',
|
||||
'name' => 'prefpreventmanagefolders',
|
||||
'values' => $prefAllowManageFolders,
|
||||
'xmlrpc' => True,
|
||||
'default'=> 0,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'attachVCardAtCompose' => array(
|
||||
'prefpreventforwarding' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'attach users VCard at compose to every new mail',
|
||||
'name' => 'attachVCardAtCompose',
|
||||
'label' => 'Prevent managing forwards',
|
||||
'help' => 'Do you want to prevent the editing/setup for forwarding of mails via settings (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventforwarding',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'default'=> 0,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'prefpreventnotificationformailviaemail' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Prevent managing notifications',
|
||||
'help' => 'Do you want to prevent the editing/setup of notification by mail to other emailadresses if emails arrive (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventnotificationformailviaemail',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '1',
|
||||
),
|
||||
'prefpreventeditfilterrules' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Prevent managing filters',
|
||||
'help' => 'Do you want to prevent the editing/setup of filter rules (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventeditfilterrules',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'prefpreventabsentnotice' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Prevent managing vacation notice',
|
||||
'help' => 'Do you want to prevent the editing/setup of the absent/vacation notice (, even if SIEVE is enabled)?',
|
||||
'name' => 'prefpreventabsentnotice',
|
||||
'values' => $no_yes,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'connectionTimeout' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'IMAP timeout',
|
||||
'help' => 'Timeout on connections to your IMAP Server',
|
||||
'name' => 'connectionTimeout',
|
||||
'values' => $connectionTimeout,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
),
|
||||
'sieveScriptName' => array(
|
||||
'type' => 'input',
|
||||
'label' => 'sieve script name',
|
||||
'help' => 'sieve script name',
|
||||
'name' => 'sieveScriptName',
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => 'felamimail',
|
||||
),
|
||||
'prefcontroltestconnection' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Test connection',
|
||||
'help' => 'Show Test Connection section and control the level of info displayed?',
|
||||
'name' => 'prefcontroltestconnection',
|
||||
'values' => $test_connection,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => '0',
|
||||
),
|
||||
'notavailableautofolders' => array(
|
||||
'type' => 'multiselect',
|
||||
'label' => 'do not auto create folders',
|
||||
'help' => 'which folders - in general - should NOT be automatically created, if not existing',
|
||||
'name' => 'notavailableautofolders',
|
||||
'values' => $availableAutoFolders,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'forced' => 'none',
|
||||
),
|
||||
'saveAsOptions' => array(
|
||||
'type' => 'select',
|
||||
'label' => 'Save as',
|
||||
'help' => 'when saving messages as item of a different app',
|
||||
'name' => 'saveAsOptions',
|
||||
'values' => $saveAsOptions,
|
||||
'xmlrpc' => True,
|
||||
'admin' => False,
|
||||
'default'=> 'text',
|
||||
),
|
||||
);
|
||||
if (!$GLOBALS['egw_info']['apps']['stylite']) unset($settingsArray['attachVCardAtCompose']);
|
||||
return $settingsArray;
|
||||
|
@ -3,11 +3,11 @@
|
||||
(only cc/bcc) felamimail en Only Cc/Bcc
|
||||
(select mails by clicking on the line, like a checkbox) felamimail en (select mails by clicking on the line, like a checkbox)
|
||||
(separate multiple addresses by comma) felamimail en Separate multiple addresses by comma
|
||||
the folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given. felamimail en The folder <b>%1</b> will be used, if there is nothing set here, and no valid predefine given.
|
||||
(unknown sender) felamimail en Unknown sender
|
||||
(with checkbox enforced) felamimail en (with checkbox enforced)
|
||||
(with checkbox enforced) felamimail en with checkbox enforced
|
||||
1) keep drafted message (press ok) felamimail en 1) keep drafted message (press OK)
|
||||
2) discard the message completely (press cancel) felamimail en 2) discard the message completely (press Cancel)
|
||||
3paneview: if you want to see a preview of a mail by single clicking onto the subject, set the height for the message-list and the preview area here (300 seems to be a good working value). the preview will be displayed at the end of the message list on demand (click). felamimail en 3PaneView: If you want to see a preview of a mail by single click onto the subject, set the height for the message list and the preview area e.g. 300. You may specify the minimum height of the message list too, by adding it after the specified IFrame Preview height, separated by comma (e.g.: 300,190)
|
||||
aborted felamimail en Aborted
|
||||
activate felamimail en Activate
|
||||
activate acl management felamimail en Activate ACL Management
|
||||
@ -31,6 +31,7 @@ all available info felamimail en All available info
|
||||
all folders felamimail en All folders
|
||||
all messages in folder felamimail en All messages in folder
|
||||
all of felamimail en All of
|
||||
allow external images felamimail en Allow external images
|
||||
allow images from external sources in html emails felamimail en Allow images from external sources in HTML emails
|
||||
allways a new window felamimail en Always a new window
|
||||
always show html emails felamimail en Always show HTML emails
|
||||
@ -40,7 +41,8 @@ any status felamimail en Any status
|
||||
anyone felamimail en Anyone
|
||||
as a subfolder of felamimail en As a sub folder of
|
||||
attach felamimail en Attach
|
||||
attach users vcard at compose to every new mail felamimail en attach users VCard at compose to every new mail
|
||||
attach users vcard at compose to every new mail felamimail en Attach user's VCard at compose to every new mail
|
||||
attach vcard felamimail en Attach vCard
|
||||
attachments felamimail en Attachments
|
||||
authentication required felamimail en Authentication required
|
||||
auto refresh folder list felamimail en Auto refresh folder list
|
||||
@ -78,12 +80,14 @@ compress folder felamimail en Compress folder
|
||||
condition felamimail en Condition
|
||||
configuration felamimail en Configuration
|
||||
configure a valid imap server in emailadmin for the profile you are using. felamimail en Configure a valid IMAP server in eMailAdmin for the profile you are using.
|
||||
confirm attach message felamimail en Confirm attach to message
|
||||
confirm move to folder felamimail en Confirm move to folder
|
||||
connection dropped by imap server. felamimail en Connection dropped by IMAP server.
|
||||
connection status felamimail en Connection Status
|
||||
contact not found! felamimail en Contact not found!
|
||||
contains felamimail en Contains
|
||||
convert mail to item and attach its attachments to this item (standard) felamimail en convert Mail to item and attach its attachments to this item (standard)
|
||||
convert mail to item, attach its attachments and add raw message (message/rfc822 (.eml)) as attachment felamimail en convert Mail to item, attach its attachments and add raw message (message/rfc822 (.eml)) as attachment
|
||||
convert mail to item and attach its attachments to this item (standard) felamimail en Convert message to item and attach its attachments to the item
|
||||
convert mail to item, attach its attachments and add raw message (message/rfc822 (.eml)) as attachment felamimail en Convert message to item, attach its attachments and add raw message (message/rfc822 (.eml)) as attachment
|
||||
copy or move messages? felamimail en Copy or move messages
|
||||
copy to felamimail en Copy to
|
||||
copying messages to felamimail en Copying messages to
|
||||
@ -124,7 +128,7 @@ deleted felamimail en Deleted
|
||||
deleted folder successfully! felamimail en Deleted folder successfully!
|
||||
deleting messages felamimail en Deleting messages
|
||||
disable felamimail en Disable
|
||||
disable ruler for separation of mailbody and signature when adding signature to composed message (this is not according to rfc).<br>if you use templates, this option is only applied to the text part of the message. felamimail en Disable ruler for separation of mail body and signature when adding signature to composed message .<br>If templates are used, this option is only applied to the text part of the message.
|
||||
disable ruler for separation of mailbody and signature felamimail en Disable ruler for separation of mail body and signature
|
||||
discard felamimail en Discard
|
||||
discard message felamimail en Discard message
|
||||
display mail subject in notification felamimail en Display mail subject in notification
|
||||
@ -137,6 +141,7 @@ display preferences felamimail en Display preferences
|
||||
displaying html messages is disabled felamimail en Displaying HTML messages is disabled.
|
||||
displaying plain messages is disabled felamimail en Displaying plain messages is disabled.
|
||||
do it! felamimail en Do it!
|
||||
do not auto create folders felamimail en Do not auto-create folders
|
||||
do not use sent felamimail en Do not use Sent
|
||||
do not use trash felamimail en Do not use Trash
|
||||
do not validate certificate felamimail en Do not validate certificate
|
||||
@ -214,6 +219,7 @@ every %1 days felamimail en Every %1 days
|
||||
expunge felamimail en Expunge
|
||||
extended felamimail en Extended
|
||||
external email address felamimail en External email address
|
||||
extra sent folders felamimail en Extra sent folders
|
||||
felamimail common en eMail
|
||||
file into felamimail en File into
|
||||
file rejected, no %2. is:%1 felamimail en File rejected, no %2. Is:%1
|
||||
@ -239,8 +245,8 @@ folders created successfully! felamimail en Folders created successfully!
|
||||
follow felamimail en Follow
|
||||
for mail to be send - not functional yet felamimail en For mail to be send - not functional yet
|
||||
for received mail felamimail en For received mail
|
||||
force html felamimail en force html
|
||||
force plain text felamimail en force plain text
|
||||
force html felamimail en Force HTML
|
||||
force plain text felamimail en Force plain text
|
||||
forward felamimail en Forward
|
||||
forward as attachment felamimail en Forward as attachment
|
||||
forward inline felamimail en Forward inline
|
||||
@ -257,8 +263,10 @@ greater than felamimail en Greater than
|
||||
have a look at <a href="http://www.felamimail.org" target="_new">www.felamimail.org</a> to learn more about squirrelmail.<br> felamimail en Have a look at <a href="http://www.felamimail.org" target="_new">www.felamimail.org</a> to learn more about Squirrelmail.<br>
|
||||
header lines felamimail en Header lines
|
||||
hide header felamimail en Hide header
|
||||
home page folders felamimail en Home page folders
|
||||
hostname / address felamimail en Hostname / address
|
||||
how should the available information on identities be displayed felamimail en How should the available information on identities be displayed
|
||||
how many messages should the mail list load felamimail en How many messages should the mail list load
|
||||
how often to check with the server for new mail felamimail en How often to check with the server for new mail
|
||||
how to forward messages felamimail en How to forward messages
|
||||
html felamimail en HTML
|
||||
icons and text felamimail en Icons and text
|
||||
@ -269,11 +277,13 @@ if felamimail en IF
|
||||
if from contains felamimail en If from contains
|
||||
if mail header felamimail en If mail header
|
||||
if message size felamimail en If message size
|
||||
if shown, which folders should appear on main screen felamimail en If shown, which folders should appear on main screen
|
||||
if shown, which folders should appear on the home page felamimail en If shown, which folders should appear on the Home page
|
||||
if subject contains felamimail en If subject contains
|
||||
if to contains felamimail en If to contains
|
||||
if using ssl or tls, you must have the php openssl extension loaded. felamimail en If using SSL or TLS, you must have the PHP openssl extension loaded.
|
||||
if you leave this page without saving to draft, the message will be discarded completely felamimail en If you leave this page without saving to draft, the message will be discarded completely
|
||||
if you select all messages there will be no pagination for mail message list. beware, as some actions on all selected messages may be problematic depending on the amount of selected messages. felamimail en If you select all messages there will be no pagination for mail message list. Beware, as some actions on all selected messages may be problematic depending on the amount of selected messages.
|
||||
if you want to see a preview of a mail by single clicking onto the subject, set the height for the message-list and the preview area here. 300 seems to be a good working value. the preview will be displayed at the end of the message when a message is selected. felamimail en If you want to see a preview of a mail by single clicking onto the subject, set the height for the message-list and the preview area here. 300 seems to be a good working value. The preview will be displayed at the end of the message list when a message is selected.
|
||||
illegal folder name. please select a different name. felamimail en Invalid folder name. Please select a different name.
|
||||
imap felamimail en IMAP
|
||||
imap server felamimail en IMAP server
|
||||
@ -283,6 +293,7 @@ imap server closed the connection. server responded: %s felamimail en IMAP serve
|
||||
imap server password felamimail en IMAP server password
|
||||
imap server type felamimail en IMAP server type
|
||||
imap server username felamimail en IMAP server user name
|
||||
imap timeout felamimail en IMAP timeout
|
||||
imaps authentication felamimail en IMAPS authentication
|
||||
imaps encryption only felamimail en IMAPS encryption only
|
||||
import felamimail en Import
|
||||
@ -320,7 +331,6 @@ list all felamimail en List all
|
||||
loading felamimail en Loading
|
||||
location of buttons when composing felamimail en Location of buttons when composing
|
||||
look up the name of the mailbox (but not its contents). felamimail en Look up the name of the mailbox (but not its contents).
|
||||
mail grid behavior: how many messages should the mailgrid load? if you select all messages there will be no pagination for mail message list. (beware, as some actions on all selected messages may be problematic depending on the amount of selected messages.) felamimail en Mail Grid Behavior: how many messages should the mail grid load? If you select all messages there will be no pagination for mail message list.
|
||||
mail server login type admin en Mail server login type
|
||||
mail settings felamimail en Mail settings
|
||||
mail source felamimail en Mail source
|
||||
@ -344,6 +354,7 @@ matches regexp felamimail en Matches regexp
|
||||
max uploadsize felamimail en Max upload size
|
||||
message highlighting felamimail en Message highlighting
|
||||
message list felamimail en Message list
|
||||
message preview size felamimail en Message preview size
|
||||
messages felamimail en Messages
|
||||
move felamimail en Move
|
||||
move folder felamimail en Move folder
|
||||
@ -358,6 +369,8 @@ name felamimail en Name
|
||||
never display html emails felamimail en Never display HTML emails
|
||||
new common en New
|
||||
new filter felamimail en New filter
|
||||
new mail notification felamimail en New mail notification
|
||||
new message type felamimail en New message type
|
||||
next felamimail en Next
|
||||
next message felamimail en Next message
|
||||
no (valid) send folder set in preferences felamimail en No (valid) Send Folder set in preferences
|
||||
@ -392,7 +405,7 @@ none felamimail en None
|
||||
none, create all felamimail en None, create all
|
||||
not allowed felamimail en Not allowed
|
||||
note: felamimail en Note:
|
||||
notify when new mails arrive on these folders felamimail en Notify when new mails arrive on these folders
|
||||
notify when new mails arrive in these folders felamimail en Notify when new mails arrive in these folders
|
||||
on felamimail en On
|
||||
on behalf of felamimail en On behalf of
|
||||
one address is not valid felamimail en One address is not valid
|
||||
@ -421,6 +434,10 @@ please supply the message to send with auto-responses felamimail en Supply the m
|
||||
port felamimail en Port
|
||||
posting felamimail en Posting
|
||||
preserve the 'seen' and 'recent' status of messages across imap sessions. felamimail en Preserve the 'seen' and 'recent' status of messages across IMAP sessions.
|
||||
prevent managing filters felamimail en Prevent managing filters
|
||||
prevent managing folders felamimail en Prevent managing folders
|
||||
prevent managing forwards felamimail en Prevent managing forwards
|
||||
prevent managing notifications felamimail en Prevent managing notifications
|
||||
preview disabled for folder: felamimail en Preview disabled for folder:
|
||||
previous felamimail en Previous
|
||||
previous message felamimail en Previous message
|
||||
@ -448,6 +465,7 @@ renamed successfully! felamimail en Renamed successfully!
|
||||
replied felamimail en Replied
|
||||
reply felamimail en Reply
|
||||
reply all felamimail en Reply All
|
||||
reply message type felamimail en Reply message type
|
||||
reply to felamimail en Reply To
|
||||
replyto felamimail en Reply To
|
||||
required pear class mail/mimedecode.php not found. felamimail en Required PEAR class Mail / mimeDecode.php not found.
|
||||
@ -461,6 +479,7 @@ row order style felamimail en Row order style
|
||||
rule felamimail en Rule
|
||||
save felamimail en Save
|
||||
save all felamimail en Save all
|
||||
save as felamimail en Save as
|
||||
save as draft felamimail en Save as draft
|
||||
save as infolog felamimail en Save as InfoLog
|
||||
save as ticket felamimail en Save as Tracker ticket
|
||||
@ -494,17 +513,20 @@ set as default felamimail en Set as default
|
||||
set label felamimail en Set keywords
|
||||
shared folders felamimail en shared folders
|
||||
shared user folders felamimail en shared user folders
|
||||
show all folders (subscribed and unsubscribed) in main screen folder pane felamimail en Show all folders, subscribed AND unsubscribed, in main screen folder pane.
|
||||
should new messages show up on the home page felamimail en Should new messages show up on the Home page
|
||||
show all folders felamimail en Show all folders
|
||||
show all folders, (subscribed and unsubscribed) in main screen folder pane felamimail en Show all folders, subscribed AND unsubscribed, in main screen folder pane.
|
||||
show all messages felamimail en Show all messages
|
||||
show header felamimail en Show header
|
||||
show new messages on main screen felamimail en Show new messages on main screen
|
||||
show test connection section and control the level of info displayed? felamimail en Show Test Connection section and control the level of info displayed?
|
||||
show new messages on home page felamimail en Show new messages on Home page
|
||||
show test connection section and control the level of info displayed? felamimail en Show Test Connection section and control the level of info displayed
|
||||
sieve admin en sieve
|
||||
sieve connection status felamimail en Sieve Connection Status
|
||||
sieve script name felamimail en Sieve script name
|
||||
sieve settings admin en Sieve settings
|
||||
signatur felamimail en Signature
|
||||
signature felamimail en Signature
|
||||
signature at top felamimail en Signature at top
|
||||
simply click the target-folder felamimail en Click the target folder
|
||||
size felamimail en Size
|
||||
size of editor window felamimail en Size of editor window
|
||||
@ -514,8 +536,9 @@ skipping forward felamimail en Skipping forward
|
||||
skipping previous felamimail en Skipping previous
|
||||
small view felamimail en Small view
|
||||
smtp settings admin en SMTP settings
|
||||
sort order felamimail en Sort order
|
||||
start new messages with mime type plain/text or html? felamimail en Start new messages with mime type plain/text or HTML?
|
||||
start reply messages with mime type plain/text or html or try to use the displayed format (default)? felamimail en start reply messages with mime type plain/text or html or try to use the displayed format (default)?
|
||||
start reply messages with mime type plain/text or html or try to use the displayed format (default)? felamimail en Start reply messages with mime type plain/text or html or try to use the displayed format?
|
||||
stationery felamimail en Stationery
|
||||
subject felamimail en Subject
|
||||
subject(a->z) felamimail en Subject (A->Z)
|
||||
@ -550,12 +573,14 @@ to felamimail en To
|
||||
to do felamimail en to do
|
||||
to mail sent to felamimail en To mail sent to
|
||||
to use a tls connection, you must be running a version of php 5.1.0 or higher. felamimail en To use a TLS connection, you must be running a version of PHP 5.1.0 or higher.
|
||||
turn off horizontal line between signature and composed message (this is not according to RFC).\nIf you use templates, this option is only applied to the text part of the message. felamimail en Turn off horizontal line between signature and composed message (this is not according to RFC).\nIf you use templates, this option is only applied to the text part of the message.
|
||||
translation preferences felamimail en Translation preferences
|
||||
translation server felamimail en Translation server
|
||||
trash felamimail en Trash
|
||||
trash fold felamimail en Trash folder
|
||||
trash folder felamimail en Trash folder
|
||||
trust servers seen / unseen info when retrieving the folder status. (if you select no, we will search for the unseen messages and count them ourselves) felamimail en Trust servers SEEN / UNSEEN info when retrieving the folder status
|
||||
trust servers seen / unseen info felamimail en Trust server's SEEN / UNSEEN info
|
||||
trust the server when retrieving the folder status. if you select no, we will search for the unseen messages and count them ourselves felamimail en Trust the server when retrieving the folder status. if you select no, we will search for the UNSEEN messages and count them ourselves
|
||||
trying to recover from session data felamimail en Trying to recover from session data
|
||||
type felamimail en Type
|
||||
undelete felamimail en Undelete
|
||||
@ -585,10 +610,10 @@ use addresses felamimail en Use addresses
|
||||
use common preferences max. messages felamimail en Use common preferences max. messages
|
||||
use custom identities felamimail en Use custom identities
|
||||
use custom settings felamimail en Use custom settings
|
||||
use default timeout (20 seconds) felamimail en use default timeout (20 seconds)
|
||||
use default timeout (20 seconds) felamimail en Use default timeout (20 seconds)
|
||||
use regular expressions felamimail en Use regular expressions
|
||||
use smtp auth admin en Use SMTP authentication
|
||||
use source as displayed, if applicable felamimail en use source as displayed, if applicable
|
||||
use source as displayed, if applicable felamimail en Use source as displayed, if applicable
|
||||
users can define their own emailaccounts admin en Users can define their own email accounts
|
||||
vacation notice common en Vacation notice
|
||||
vacation notice is active felamimail en Vacation notice is active
|
||||
@ -602,23 +627,31 @@ view message felamimail en View message
|
||||
viewing full header felamimail en Viewing full header
|
||||
viewing message felamimail en Viewing message
|
||||
viewing messages felamimail en Viewing messages
|
||||
what order the list columns are in felamimail en What order the list columns are in
|
||||
what to do when you delete a message felamimail en What to do when you delete a message
|
||||
what to do when you send a message felamimail en What to do when you send a message
|
||||
what to do with html email felamimail en What to do with HTML email
|
||||
when deleting messages felamimail en When deleting messages
|
||||
when saving messages as item of a different app (if app supports the desired option) felamimail en when saving messages as item of a different app (if app supports the desired option)
|
||||
when displaying messages in a popup, re-use the same popup for all or open a new popup for each
|
||||
message felamimail en When displaying messages in a popup, re-use the same popup for all or open a new popup for each
|
||||
message
|
||||
when saving messages as item of a different app felamimail en When saving messages as item of a different app
|
||||
when sending messages felamimail en When sending messages
|
||||
which folders (additional to the sent folder) should be displayed using the sent folder view schema felamimail en Which folders additionally to the Sent folder should be displayed using the Sent Folder View Schema
|
||||
which folders (additional to the sent folder) should be displayed using the sent folder view schema felamimail en Which folders in addition to the Sent folder should be displayed using the Sent Folder View Schema
|
||||
which folders - in general - should not be automatically created, if not existing felamimail en Which folders - in general - should NOT be automatically created, if not existing
|
||||
which method to use when forwarding a message felamimail en Which method to use when forwarding a message
|
||||
with message felamimail en With message
|
||||
with message "%1" felamimail en With message "%1"
|
||||
wrap incoming text at felamimail en Wrap incoming text at
|
||||
write (change message flags such as 'recent', 'answered', and 'draft'). felamimail en Write (change message flags such as 'recent', 'answered', and 'draft').
|
||||
writing felamimail en Writing
|
||||
wrote felamimail en Wrote
|
||||
yes, but mask all passwords felamimail en yes, but mask all passwords
|
||||
yes, but mask all usernames and passwords felamimail en yes, but mask all usernames and passwords
|
||||
yes, but mask all passwords felamimail en Yes, but mask all passwords
|
||||
yes, but mask all usernames and passwords felamimail en Yes, but mask all usernames and passwords
|
||||
yes, offer copy option felamimail en Yes, offer copy option
|
||||
yes, only trigger connection reset felamimail en yes, only trigger connection reset
|
||||
yes, show all debug information available for the user felamimail en yes, show all debug information available for the user
|
||||
yes, show basic info only felamimail en yes, show basic info only
|
||||
yes, only trigger connection reset felamimail en Yes, only trigger connection reset
|
||||
yes, show all debug information available for the user felamimail en Yes, show all debug information available for the user
|
||||
yes, show basic info only felamimail en Yes, show basic info only
|
||||
you can either choose to save as infolog or tracker, not both. felamimail en You can either choose to save as InfoLog OR Tracker, not both.
|
||||
you can use %1 for the above start-date and %2 for the end-date. felamimail en You can use %1 for the above start date and %2 for the end date.
|
||||
you have received a new message on the felamimail en You have received a new message on the
|
||||
|
Loading…
Reference in New Issue
Block a user