mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:16 +01:00
618 lines
21 KiB
PHP
618 lines
21 KiB
PHP
<?php
|
|
/***************************************************************************\
|
|
* eGroupWare - FeLaMiMail *
|
|
* http://www.linux-at-work.de *
|
|
* http://www.phpgw.de *
|
|
* http://www.egroupware.org *
|
|
* Written by : Lars Kneschke [lkneschke@linux-at-work.de] *
|
|
* ------------------------------------------------- *
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
* under the terms of the GNU General Public License as published by the *
|
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\***************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
class uipreferences
|
|
{
|
|
|
|
var $public_functions = array
|
|
(
|
|
'addACL' => 'True',
|
|
'editAccountData' => 'True',
|
|
'editForwardingAddress' => 'True',
|
|
'editSignature' => 'True',
|
|
'listFolder' => 'True',
|
|
'listSignatures' => 'True',
|
|
'showHeader' => 'True',
|
|
'getAttachment' => 'True'
|
|
);
|
|
|
|
function uipreferences()
|
|
{
|
|
$this->t = $GLOBALS['egw']->template;
|
|
$this->charset = $GLOBALS['egw']->translation->charset();
|
|
|
|
$this->bofelamimail =& CreateObject('felamimail.bofelamimail',$GLOBALS['egw']->translation->charset());
|
|
$this->bopreferences =& CreateObject('felamimail.bopreferences');
|
|
$this->uiwidgets =& CreateObject('felamimail.uiwidgets');
|
|
$this->bofelamimail->openConnection();
|
|
|
|
|
|
$this->rowColor[0] = $GLOBALS['egw_info']["theme"]["bg01"];
|
|
$this->rowColor[1] = $GLOBALS['egw_info']["theme"]["bg02"];
|
|
}
|
|
|
|
function addACL()
|
|
{
|
|
$this->display_app_header(FALSE);
|
|
|
|
$this->t->set_file(array("body" => "preferences_manage_folder.tpl"));
|
|
$this->t->set_block('body','main');
|
|
$this->t->set_block('body','add_acl');
|
|
|
|
$this->translate();
|
|
|
|
$this->t->pparse("out","add_acl");
|
|
|
|
}
|
|
|
|
// $_displayNavbar false == don't display navbar
|
|
function display_app_header($_displayNavbar)
|
|
{
|
|
if(!@is_object($GLOBALS['egw']->js))
|
|
{
|
|
$GLOBALS['egw']->js =& CreateObject('phpgwapi.javascript');
|
|
}
|
|
|
|
switch($_GET['menuaction'])
|
|
{
|
|
case 'felamimail.uipreferences.editSignature':
|
|
$GLOBALS['egw']->js->validate_file('jscode','listSignatures','felamimail');
|
|
#$GLOBALS['egw']->js->set_onload('fm_initEditLayout();');
|
|
break;
|
|
case 'felamimail.uipreferences.editAccountData':
|
|
$GLOBALS['egw']->js->validate_file('jscode','editAccountData','felamimail');
|
|
$GLOBALS['egw']->js->set_onload('javascript:initEditAccountData();');
|
|
break;
|
|
|
|
case 'felamimail.uipreferences.listSignatures':
|
|
$GLOBALS['egw']->js->validate_file('jscode','listSignatures','felamimail');
|
|
#$GLOBALS['egw']->js->set_onload('javascript:initEditAccountData();');
|
|
break;
|
|
|
|
case 'felamimail.uipreferences.listFolder':
|
|
case 'felamimail.uipreferences.addACL':
|
|
$GLOBALS['egw']->js->validate_file('tabs','tabs');
|
|
$GLOBALS['egw']->js->validate_file('dhtmlxtree','js/dhtmlXCommon');
|
|
$GLOBALS['egw']->js->validate_file('dhtmlxtree','js/dhtmlXTree');
|
|
$GLOBALS['egw']->js->validate_file('jscode','listFolder','felamimail');
|
|
$GLOBALS['egw']->js->set_onload('javascript:initAll();');
|
|
break;
|
|
}
|
|
|
|
$GLOBALS['egw_info']['flags']['include_xajax'] = True;
|
|
|
|
$GLOBALS['egw']->common->egw_header();
|
|
if($_displayNavbar == TRUE)
|
|
echo parse_navbar();
|
|
}
|
|
|
|
function editForwardingAddress()
|
|
{
|
|
$bofelamimail =& CreateObject('felamimail.bofelamimail',$GLOBALS['egw']->translation->charset());
|
|
$mailPrefs = $bofelamimail->getMailPreferences();
|
|
$ogServer = $mailPrefs->getOutgoingServer(0);
|
|
|
|
if(!is_a($ogServer, 'defaultsmtp') || !$ogServer->editForwardingAddress) {
|
|
die('You should not be here!');
|
|
}
|
|
|
|
if($_POST['save']) {
|
|
//_debug_array($_POST);_debug_array($_POST);_debug_array($_POST);
|
|
$ogServer->saveSMTPForwarding($GLOBALS['egw_info']['user']['account_id'],$_POST['forwardingAddress'],$_POST['keepLocalCopy']);
|
|
} elseif($_POST['cancel']) {
|
|
ExecMethod('felamimail.uifelamimail.viewMainScreen');
|
|
return;
|
|
}
|
|
|
|
$userData = $ogServer->getUserData($GLOBALS['egw_info']['user']['account_id']);
|
|
|
|
$this->display_app_header(TRUE);
|
|
|
|
$this->t->set_file(array("body" => "edit_forwarding_address.tpl"));
|
|
$this->t->set_block('body','main');
|
|
|
|
$this->translate();
|
|
|
|
$linkData = array (
|
|
'menuaction' => 'felamimail.uipreferences.editForwardingAddress'
|
|
);
|
|
$this->t->set_var('form_action',$GLOBALS['egw']->link('/index.php',$linkData));
|
|
$this->t->set_var('forwarding_address',$userData['mailForwardingAddress'][0]);
|
|
|
|
#deliveryMode checked_keep_local_copy
|
|
if($userData['deliveryMode'] != 'forwardOnly') {
|
|
$this->t->set_var('checked_keep_local_copy','checked');
|
|
}
|
|
|
|
$this->t->parse("out","main");
|
|
|
|
print $this->t->get('out','main');
|
|
}
|
|
|
|
function editSignature() {
|
|
$signatureID = (int)$_GET['signatureID'];
|
|
|
|
if($signatureID >= 0) {
|
|
$signatureData = $this->bopreferences->getSignature($signatureID);
|
|
}
|
|
|
|
$this->display_app_header(false);
|
|
|
|
$this->t->set_file(array('body' => 'preferences_edit_signature.tpl'));
|
|
$this->t->set_block('body','main');
|
|
|
|
$this->translate();
|
|
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.editSignature'
|
|
);
|
|
$this->t->set_var('form_action',$GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
$this->t->set_var('description', ($signatureID >= 0 ? @htmlspecialchars($signatureData['description'], ENT_QUOTES, $this->charset) : ''));
|
|
|
|
$this->t->set_var('signatureID', $signatureID);
|
|
|
|
$style="width:100%; border:0px; height:150px;";
|
|
$this->t->set_var('tinymce',$GLOBALS['egw']->html->fckEditorQuick(
|
|
'signature', 'simple',
|
|
($signatureID >= 0 ? $signatureData['signature'] : ''),
|
|
'150px')
|
|
);
|
|
|
|
$this->t->set_var('checkbox_isDefaultSignature',$GLOBALS['egw']->html->checkbox(
|
|
'isDefaultSignature',
|
|
$signatureData['defaultsignature'],
|
|
'true',
|
|
'id="isDefaultSignature"'
|
|
)
|
|
);
|
|
|
|
$this->t->parse("out","main");
|
|
print $this->t->get('out','main');
|
|
}
|
|
|
|
function editAccountData()
|
|
{
|
|
$boPreferences =& CreateObject('felamimail.bopreferences');
|
|
$preferences =& $boPreferences->getPreferences();
|
|
|
|
if(!$preferences->userDefinedAccounts) {
|
|
die('you are not allowed to be here');
|
|
}
|
|
|
|
if($_POST['save'] || $_POST['apply']) {
|
|
// IMAP connection settings
|
|
$icServer =& CreateObject('emailadmin.defaultimap');
|
|
if(is_array($_POST['ic'])) {
|
|
foreach($_POST['ic'] as $key => $value) {
|
|
switch($key) {
|
|
case 'validatecert':
|
|
$icServer->$key = ($value != 'dontvalidate');
|
|
break;
|
|
|
|
case 'enableSieve':
|
|
$icServer->$key = ($value == 'enableSieve');
|
|
break;
|
|
|
|
default:
|
|
$icServer->$key = $value;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// SMTP connection settings
|
|
$ogServer =& CreateObject('emailadmin.defaultsmtp');
|
|
if(is_array($_POST['og'])) {
|
|
foreach($_POST['og'] as $key => $value) {
|
|
$ogServer->$key = $value;
|
|
}
|
|
}
|
|
|
|
// identity settings
|
|
$identity =& CreateObject('emailadmin.ea_identity');
|
|
if(is_array($_POST['identity'])) {
|
|
foreach($_POST['identity'] as $key => $value) {
|
|
$identity->$key = $value;
|
|
}
|
|
}
|
|
|
|
if((int)$_POST['active']) {
|
|
$boPreferences->saveAccountData($icServer, $ogServer, $identity);
|
|
$boPreferences->setProfileActive(true);
|
|
} else {
|
|
$boPreferences->setProfileActive(false);
|
|
}
|
|
|
|
if($_POST['save']) {
|
|
ExecMethod('felamimail.uifelamimail.viewMainScreen');
|
|
return;
|
|
}
|
|
} elseif($_POST['cancel']) {
|
|
ExecMethod('felamimail.uifelamimail.viewMainScreen');
|
|
return;
|
|
}
|
|
|
|
$this->display_app_header(TRUE);
|
|
|
|
$this->t->set_file(array("body" => "edit_account_data.tpl"));
|
|
$this->t->set_block('body','main');
|
|
|
|
$this->translate();
|
|
|
|
$accountData = $boPreferences->getAccountData($preferences);
|
|
$icServer =& $accountData['icServer'];
|
|
$ogServer =& $accountData['ogServer'];
|
|
$identity =& $accountData['identity'];
|
|
#_debug_array($icServer);
|
|
foreach($icServer as $key => $value) {
|
|
if(is_object($value) || is_array($value)) {
|
|
continue;
|
|
}
|
|
switch($key) {
|
|
case 'encryption':
|
|
$this->t->set_var('checked_ic_'. $key .'_'. $value, 'checked');
|
|
break;
|
|
|
|
case 'enableSieve':
|
|
$this->t->set_var('checked_ic_'.$key,($value ? 'checked' : ''));
|
|
break;
|
|
|
|
case 'validatecert':
|
|
$this->t->set_var('checked_ic_'.$key,($value ? '' : 'checked'));
|
|
break;
|
|
|
|
default:
|
|
$this->t->set_var("ic[$key]", $value);
|
|
break;
|
|
}
|
|
}
|
|
|
|
foreach($ogServer as $key => $value) {
|
|
if(is_object($value) || is_array($value)) {
|
|
continue;
|
|
}
|
|
#print "$key => $value<bR>";
|
|
switch($key) {
|
|
case 'smtpAuth':
|
|
$this->t->set_var('checked_og_'.$key,($value ? 'checked' : ''));
|
|
default:
|
|
$this->t->set_var("og[$key]", $value);
|
|
}
|
|
}
|
|
|
|
foreach($identity as $key => $value) {
|
|
if(is_object($value) || is_array($value)) {
|
|
continue;
|
|
}
|
|
switch($key) {
|
|
default:
|
|
$this->t->set_var("identity[$key]", $value);
|
|
}
|
|
}
|
|
|
|
$this->t->set_var('checked_active',($accountData['active'] ? 'checked' : ''));
|
|
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.editAccountData'
|
|
);
|
|
$this->t->set_var('form_action',$GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
$this->t->parse("out","main");
|
|
print $this->t->get('out','main');
|
|
}
|
|
|
|
function listFolder()
|
|
{
|
|
// rename a mailbox
|
|
if(isset($_POST['newMailboxName']))
|
|
{
|
|
$oldMailboxName = $this->bofelamimail->sessionData['preferences']['mailbox'];
|
|
$newMailboxName = $_POST['newMailboxName'];
|
|
|
|
if($position = strrpos($oldMailboxName,'.'))
|
|
{
|
|
$newMailboxName = substr($oldMailboxName,0,$position+1).$newMailboxName;
|
|
}
|
|
|
|
|
|
if($this->bofelamimail->imap_renamemailbox($oldMailboxName, $newMailboxName))
|
|
{
|
|
$this->bofelamimail->sessionData['preferences']['mailbox']
|
|
= $newMailboxName;
|
|
$this->bofelamimail->saveSessionData();
|
|
}
|
|
}
|
|
|
|
// delete a Folder
|
|
if(isset($_POST['deleteFolder']) && $this->bofelamimail->sessionData['preferences']['mailbox'] != 'INBOX')
|
|
{
|
|
if($this->bofelamimail->imap_deletemailbox($this->bofelamimail->sessionData['preferences']['mailbox']))
|
|
{
|
|
$this->bofelamimail->sessionData['preferences']['mailbox']
|
|
= "INBOX";
|
|
$this->bofelamimail->saveSessionData();
|
|
}
|
|
}
|
|
|
|
// create a new Mailbox
|
|
if(isset($_POST['newSubFolder']))
|
|
{
|
|
$oldMailboxName = $this->bofelamimail->sessionData['preferences']['mailbox'].'.';
|
|
$oldMailboxName = ($oldMailboxName == '--topfolderselected--.') ? '' : $oldMailboxName;
|
|
$newMailboxName = $oldMailboxName.$_POST['newSubFolder'];
|
|
|
|
$this->bofelamimail->imap_createmailbox($newMailboxName,True);
|
|
}
|
|
|
|
$folderList = $this->bofelamimail->getFolderObjects();
|
|
// check user input BEGIN
|
|
// the name of the new current folder
|
|
if(get_var('mailboxName',array('POST')) && $folderList[get_var('mailboxName',array('POST'))] ||
|
|
get_var('mailboxName',array('POST')) == '--topfolderselected--')
|
|
{
|
|
$this->bofelamimail->sessionData['preferences']['mailbox']
|
|
= get_var('mailboxName',array('POST'));
|
|
$this->bofelamimail->saveSessionData();
|
|
}
|
|
|
|
$this->selectedFolder = $this->bofelamimail->sessionData['preferences']['mailbox'];
|
|
|
|
// (un)subscribe to a folder??
|
|
if(isset($_POST['folderStatus']))
|
|
{
|
|
$this->bofelamimail->subscribe($this->selectedFolder,$_POST['folderStatus']);
|
|
}
|
|
|
|
|
|
$this->selectedFolder = $this->bofelamimail->sessionData['preferences']['mailbox'];
|
|
|
|
// check user input END
|
|
|
|
|
|
if($this->selectedFolder != '--topfolderselected--')
|
|
$folderStatus = $this->bofelamimail->getFolderStatus($this->selectedFolder);
|
|
$mailPrefs = $this->bofelamimail->getMailPreferences();
|
|
|
|
$this->display_app_header(TRUE);
|
|
|
|
$this->t->set_file(array("body" => "preferences_manage_folder.tpl"));
|
|
$this->t->set_block('body','main');
|
|
#$this->t->set_block('body','select_row');
|
|
$this->t->set_block('body','folder_settings');
|
|
$this->t->set_block('body','mainFolder_settings');
|
|
#$this->t->set_block('body','folder_acl');
|
|
|
|
$this->translate();
|
|
|
|
#print "<pre>";print_r($folderList);print "</pre>";
|
|
// set the default values for the sort links (sort by subject)
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.listFolder'
|
|
);
|
|
$this->t->set_var('form_action',$GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.addACL'
|
|
);
|
|
$this->t->set_var('url_addACL',$GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
// create the link to show folder settings
|
|
#$linkData = array
|
|
#(
|
|
# 'menuaction' => 'felamimail.uipreferences.listFolder',
|
|
# 'display' => 'settings'
|
|
#);
|
|
#$this->t->set_var('settings_url',$GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
// create the link to show folder acl
|
|
#$linkData = array
|
|
#(
|
|
# 'menuaction' => 'felamimail.uipreferences.listFolder',
|
|
# 'display' => 'acl'
|
|
#);
|
|
#$this->t->set_var('acl_url',$GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
// folder select box
|
|
$icServer = $mailPrefs->getIncomingServer(0);
|
|
$folderTree = $this->uiwidgets->createHTMLFolder
|
|
(
|
|
$folderList,
|
|
$this->selectedFolder,
|
|
0,
|
|
lang('IMAP Server'),
|
|
$icServer->username.'@'.$icServer->host,
|
|
'divFolderTree',
|
|
TRUE
|
|
);
|
|
$this->t->set_var('folder_tree',$folderTree);
|
|
|
|
switch($_GET['display'])
|
|
{
|
|
#case 'acl':
|
|
# $uiBaseClass =& CreateObject('felamimail.uibaseclass');
|
|
# #$uiBaseClass->accounts_popup('calendar');
|
|
# $this->t->parse('settings_view','folder_acl',True);
|
|
# break;
|
|
|
|
case 'settings':
|
|
default:
|
|
// selected folder data
|
|
if($folderStatus['subscribed'])
|
|
{
|
|
$this->t->set_var('subscribed_checked','checked');
|
|
$this->t->set_var('unsubscribed_checked','');
|
|
}
|
|
else
|
|
{
|
|
$this->t->set_var('subscribed_checked','');
|
|
$this->t->set_var('unsubscribed_checked','checked');
|
|
}
|
|
|
|
if(is_array($quota))
|
|
{
|
|
$this->t->set_var('storage_usage',$quota['STORAGE']['usage']);
|
|
$this->t->set_var('storage_limit',$quota['STORAGE']['limit']);
|
|
$this->t->set_var('message_usage',$quota['MESSAGE']['usage']);
|
|
$this->t->set_var('message_limit',$quota['MESSAGE']['limit']);
|
|
}
|
|
else
|
|
{
|
|
$this->t->set_var('storage_usage',lang('unknown'));
|
|
$this->t->set_var('storage_limit',lang('unknown'));
|
|
$this->t->set_var('message_usage',lang('unknown'));
|
|
$this->t->set_var('message_limit',lang('unknown'));
|
|
}
|
|
|
|
if($this->selectedFolder != '--topfolderselected--')
|
|
{
|
|
$this->t->parse('settings_view','folder_settings',True);
|
|
}
|
|
else
|
|
{
|
|
$this->t->parse('settings_view','mainFolder_settings',True);
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
$mailBoxTreeName = '';
|
|
$mailBoxName = $this->selectedFolder;
|
|
if($position = strrpos($this->selectedFolder,'.'))
|
|
{
|
|
$mailBoxTreeName = substr($this->selectedFolder,0,$position+1);
|
|
$mailBoxName = substr($this->selectedFolder,$position+1);
|
|
}
|
|
|
|
$this->t->set_var('mailboxTreeName',$mailBoxTreeName);
|
|
$this->t->set_var('mailboxNameShort',$mailBoxName);
|
|
$this->t->set_var('mailboxName',$mailBoxName);
|
|
$this->t->set_var('folderName',$this->selectedFolder);
|
|
$this->t->set_var('imap_server',$icServer->host);
|
|
|
|
$this->t->pparse("out","main");
|
|
$this->bofelamimail->closeConnection();
|
|
}
|
|
|
|
function listSignatures()
|
|
{
|
|
$this->display_app_header(TRUE);
|
|
|
|
$this->t->set_file(array("body" => "preferences_list_signatures.tpl"));
|
|
$this->t->set_block('body','main');
|
|
|
|
$this->translate();
|
|
|
|
#print "<pre>";print_r($folderList);print "</pre>";
|
|
// set the default values for the sort links (sort by subject)
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.listFolder'
|
|
);
|
|
$this->t->set_var('form_action', $GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
$linkData = array
|
|
(
|
|
'menuaction' => 'felamimail.uipreferences.editSignature',
|
|
'signatureID' => '-1'
|
|
);
|
|
$this->t->set_var('url_addSignature', $GLOBALS['egw']->link('/index.php',$linkData));
|
|
|
|
$this->t->set_var('url_image_add',$GLOBALS['egw']->common->image('phpgwapi','new'));
|
|
$this->t->set_var('url_image_delete',$GLOBALS['egw']->common->image('phpgwapi','delete'));
|
|
|
|
$signatures = $this->bopreferences->getListOfSignatures();
|
|
|
|
$this->t->set_var('table', $this->uiwidgets->createSignatureTable($signatures));
|
|
|
|
$this->t->pparse("out","main");
|
|
$this->bofelamimail->closeConnection();
|
|
}
|
|
|
|
function translate()
|
|
{
|
|
$this->t->set_var("lang_folder_name",lang('folder name'));
|
|
$this->t->set_var("lang_folder_list",lang('folderlist'));
|
|
$this->t->set_var("lang_select",lang('select'));
|
|
$this->t->set_var("lang_folder_status",lang('folder status'));
|
|
$this->t->set_var("lang_subscribed",lang('subscribed'));
|
|
$this->t->set_var("lang_unsubscribed",lang('unsubscribed'));
|
|
$this->t->set_var("lang_subscribe",lang('subscribe'));
|
|
$this->t->set_var("lang_unsubscribe",lang('unsubscribe'));
|
|
$this->t->set_var("lang_update",lang('update'));
|
|
$this->t->set_var("lang_rename_folder",lang('rename folder'));
|
|
$this->t->set_var("lang_create_subfolder",lang('create subfolder'));
|
|
$this->t->set_var("lang_delete_folder",lang('delete folder'));
|
|
$this->t->set_var("lang_confirm_delete",addslashes(lang("Do you really want to delete the '%1' folder?",$this->bofelamimail->sessionData['preferences']['mailbox'])));
|
|
$this->t->set_var("lang_delete",lang('delete'));
|
|
$this->t->set_var("lang_imap_server",lang('IMAP Server'));
|
|
$this->t->set_var("lang_folder_settings",lang('folder settings'));
|
|
$this->t->set_var("lang_folder_acl",lang('folder acl'));
|
|
$this->t->set_var("lang_anyone",lang('anyone'));
|
|
$this->t->set_var("lang_reading",lang('reading'));
|
|
$this->t->set_var("lang_writing",lang('writing'));
|
|
$this->t->set_var("lang_posting",lang('posting'));
|
|
$this->t->set_var("lang_none",lang('none'));
|
|
$this->t->set_var("lang_rename",lang('rename'));
|
|
$this->t->set_var("lang_create",lang('create'));
|
|
$this->t->set_var('lang_open_all',lang("open all"));
|
|
$this->t->set_var('lang_close_all',lang("close all"));
|
|
$this->t->set_var('lang_add',lang("add"));
|
|
$this->t->set_var('lang_delete_selected',lang("delete selected"));
|
|
$this->t->set_var('lang_cancel',lang("close"));
|
|
$this->t->set_var('lang_ACL',lang('ACL'));
|
|
$this->t->set_var('lang_save',lang('save'));
|
|
$this->t->set_var('lang_cancel',lang('cancel'));
|
|
$this->t->set_var('lang_Overview',lang('Overview'));
|
|
$this->t->set_var('lang_edit_forwarding_address',lang('edit email forwarding address'));
|
|
$this->t->set_var('lang_forwarding_address',lang('email forwarding address'));
|
|
$this->t->set_var('lang_keep_local_copy',lang('keep local copy of email'));
|
|
$this->t->set_var('hostname_address',lang('hostname / address'));
|
|
$this->t->set_var('lang_username',lang('username'));
|
|
$this->t->set_var('lang_password',lang('password'));
|
|
$this->t->set_var('lang_port',lang('port'));
|
|
$this->t->set_var('lang_apply',lang('apply'));
|
|
$this->t->set_var('lang_use_costum_settings',lang('use custom settings'));
|
|
$this->t->set_var('lang_identity',lang('identity'));
|
|
$this->t->set_var('lang_name',lang('name'));
|
|
$this->t->set_var('lang_organization',lang('organization'));
|
|
$this->t->set_var('lang_emailaddress',lang('emailaddress'));
|
|
$this->t->set_var('lang_encrypted_connection',lang('encrypted connection'));
|
|
$this->t->set_var('lang_do_not_validate_certificate',lang('do not validate certificate'));
|
|
$this->t->set_var("lang_incoming_server",lang('incoming mail server(IMAP)'));
|
|
$this->t->set_var("lang_outgoing_server",lang('outgoing mail server(SMTP)'));
|
|
$this->t->set_var("auth_required",lang('authentication required'));
|
|
$this->t->set_var('lang_add_acl',lang('add acl'));
|
|
$this->t->set_var('lang_foldername',lang('foldername'));
|
|
$this->t->set_var('lang_description',lang('description'));
|
|
$this->t->set_var('lang_really_delete_signatures',lang('Do you really want to delete the selected signatures?'));
|
|
$this->t->set_var('lang_no_encryption',lang('no encryption'));
|
|
$this->t->set_var('lang_default_signature',lang('default signature'));
|
|
$this->t->set_var('lang_server_supports_sieve',lang('server supports mailfilter(sieve)'));
|
|
|
|
$this->t->set_var("th_bg",$GLOBALS['egw_info']["theme"]["th_bg"]);
|
|
$this->t->set_var("bg01",$GLOBALS['egw_info']["theme"]["bg01"]);
|
|
$this->t->set_var("bg02",$GLOBALS['egw_info']["theme"]["bg02"]);
|
|
$this->t->set_var("bg03",$GLOBALS['egw_info']["theme"]["bg03"]);
|
|
}
|
|
}
|
|
|
|
?>
|