ee443036b0049a9405517937e5aafd5a99906c63
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see 
12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

16) 
17) require_once('inc/base.php');
Bernd Wurst Zeige Link zur Mailman-List...

Bernd Wurst authored 10 years ago

18) require_once('inc/icons.php');
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

19) require_once('mailman.php');
20) 
21) require_role(ROLE_SYSTEMUSER);
22) 
bernd Benutze überall title() sta...

bernd authored 13 years ago

23) title('Mailinglisten');
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

24) 
Hanno Böck mailman url https

Hanno Böck authored 7 years ago

25) output('<p>Mit <a href="https://www.gnu.org/software/mailman/index.html">Mailman</a> bieten wir Ihnen eine umfangreiche Lösung für E-Mail-Verteilerlisten an.</p>
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

26) <p>Auf dieser Seite können Sie Ihre Mailinglisten verwalten.</p>
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

27) ');
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

28) 
29) $lists = get_lists();
30) 
31) if (! empty($lists))
32) {
bernd Hinweis zum periodischen Up...

bernd authored 12 years ago

33)   output("<table>\n<tr><th>Listenname</th><th>Verwalter<sup>1</sup></th><th>Status</th><th>Archivgröße<sup>2</sup></th><th>&nbsp;</th></tr>\n");
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

34)   foreach ($lists AS $list)
35)   {
bernd Zeige Archivgröße der Maili...

bernd authored 12 years ago

36)     $size = $list['archivesize'];
37)     $sizestr = $size.' Bytes';
38)     if (! $size) {
39)       $sizestr = '<em>Kein Archiv</em>';
40)     }
41)     else {
42)       $sizestr = sprintf('%.2f', $size/(1024*1024)).' MB';
43)     }
44) 
45) 
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

46)     $style = '';
47)     $status = 'In Betrieb';
48)     if ($list['status'] == 'delete')
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

49)     {
50)       $style = ' style="text-decoration: line-through;" ';
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

51)       $status = 'Wird gelöscht';
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

52)     }
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

53)     elseif ($list['status'] == 'pending')
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

54)     {
55)       $style = ' style="text-decoration: underline;" ';
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

56)       $status = 'Wird angelegt';
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

57)     }
bernd Bugfix und Fehler-Status

bernd authored 14 years ago

58)     elseif ($list['status'] == 'failure')
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

59)     {
60)       $style = ' style="font-style: italic;" ';
bernd Bugfix und Fehler-Status

bernd authored 14 years ago

61)       $status = 'Fehler bei der Erstellung';
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

62)     }
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

63) 
bernd Zeige Archivgröße der Maili...

bernd authored 12 years ago

64)     output("<tr><td{$style}><strong>{$list['listname']}</strong>@{$list['fqdn']}</td><td{$style}>{$list['admin']}</td><td>{$status}</td><td style=\"text-align: right;\">{$sizestr}</td>");
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

65)     if ($list['status'] == 'running')
Bernd Wurst Icon-Beschriftung

Bernd Wurst authored 10 years ago

66)       output("<td>".internal_link('save', icon_delete("Mailingliste löschen"), "action=delete&id={$list['id']}")." <a href=\"https://".config('mailman_host')."/mailman/admin.cgi/{$list['listname']}\">".other_icon("database_go.png", "Listen-Verwaltung aufrufen")."</a></td></tr>\n");
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

67)     else
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

68)       output("<td>&#160;</td></tr>\n");
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

69)   }
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

70)   output("</table>");
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

71) }
72) else
73) {
74)   // keine Listen
bernd hinweis zu Mailman-Domains...

bernd authored 14 years ago

75)   output('<p><em>Sie betreiben bisher keine Mailinglisten.</em></p>');
bernd Neues Modul für Mailman-Ver...

bernd authored 14 years ago

76) }
77) 
bernd addnew() eingeführt

bernd authored 14 years ago

78) addnew('newlist', 'Neue Mailingliste anlegen');
79) output("
bernd Hinweis zum periodischen Up...

bernd authored 12 years ago

80) <p><strong>Hinweise:</strong><br />
81) <sup>1</sup>) Sie können später im Webinterface von Mailman einen abweichenden oder auch mehrere Verwalter eintragen. Die Information auf dieser Seite wird dann nicht automatisch geändert sondern bezeichnet den Verwalter, den Sie beim Anlegen der Liste benannt haben.<br />
82) <sup>2</sup>) Die Größe der Archive wird in regelmäßigen Abständen eingelesen. Der hier angezeigte Wert ist möglicherweise nicht mehr aktuell.</p>\n");