E-Mail-Accounts
Folgende E-Mail-Konten sind eingerichtet:
');
foreach ($sorted_by_domains as $accounts_on_domain)
{
output(''.$accounts_on_domain[0]['domainname'].'
');
foreach ($accounts_on_domain AS $this_account)
{
$acc = get_account_details($this_account['id']);
$actions = array();
DEBUG($acc);
if ($acc['password'] != '')
{
$spam = 'ohne Spamfilter';
switch ($acc['spamfilter'])
{
case 'folder': $spam = 'Spam in Unterordner';
break;
case 'tag': $spam = 'Spam markieren';
break;
case 'delete': $spam = 'Spam nicht zustellen';
break;
}
array_push($actions, "Ablegen in Mailbox ({$spam})");
}
foreach ($acc['forwards'] AS $fwd)
{
$spam = 'ohne Spamfilter';
switch ($fwd['spamfilter'])
{
case 'tag': $spam = 'Spam markieren';
break;
case 'delete': $spam = 'Spam nicht zustellen';
break;
}
$fwd['destination'] = filter_input_general($fwd['destination']);
array_push($actions, "Weiterleitung an {$fwd['destination']} ({$spam})");
}
$dest = '';
if (count($actions) > 0)
{
$dest = "";
foreach ($actions as $a)
$dest .= "- {$a}
";
$dest .= '
';
}
output('
'.internal_link('edit.php', $acc['local'].'@'.$this_account['domainname'], 'id='.$acc['id']).'
'.$dest.'
');
}
}
output('Neuen Account anlegen
');
/* FIXME: Das sollte nur kommen, wenn der IMAP/POP3-Menü-Eintrag nicht da ist */
output('Hinweis: schokokeks.org bietet für fortgeschrittene Nutzer die manuelle Einrichtung von POP3/IMAP-Accounts.
Neuen POP3/IMAP-Account anlegen
');
?>