git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
753e0f2
Branches
Tags
master
ticket
webinterface.git
modules
vmail
accounts.php
Hinweis für vmail-user
bernd
commited
753e0f2
at 2008-02-02 16:07:32
accounts.php
Blame
History
Raw
<?php require_once('inc/base.php'); require_once('inc/security.php'); require_role(ROLE_SYSTEMUSER); require_once('vmail.php'); $accounts = get_vmail_accounts(); output('<h3>E-Mail-Accounts</h3> <p>Folgende E-Mail-Konten sind eingerichtet:</p> <table style="margin-bottom: 1em;"> <tr><th>Adresse</th><th>...</th><th> </th></tr> '); foreach ($accounts as $account) { output('<tr> <td>'.internal_link('edit.php', $account['local'].'@'.$account['domainname'], 'id='.$account['id']).'</td> <td><a href="save.php?action=delete&id='.$account['id'].'">löschen</a></td></tr>'); } output('</table> <p><a href="edit.php">Neuen Account anlegen</a></p>'); /* FIXME: Das sollte nur kommen, wenn der IMAP/POP3-Menü-Eintrag nicht da ist */ output('<p>Hinweis: schokokeks.org bietet für fortgeschrittene Nutzer die manuelle Einrichtung von POP3/IMAP-Accounts.<br/><a href="'.$prefix.'go/imap/accounts.php?action=create">Neuen POP3/IMAP-Account anlegen</a></p>'); ?>