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

bernd authored 15 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 15 years ago

16) 
17) require_once('mailman.php');
18) require_role(ROLE_SYSTEMUSER);
19) 
20) $title = "Neue Mailingliste erstellen";
21) $domains = get_mailman_domains();
22) 
bernd Mehr config-optionen und co...

bernd authored 14 years ago

23) $maildomains = array('0' => config('mailman_host'));
bernd Neues Modul für Mailman-Ver...

bernd authored 15 years ago

24) foreach ($domains AS $domain)
25) {
26)   $maildomains[$domain['id']] = $domain['fqdn'];
27) }
28) 
29) 
30) if ($_GET['action'] == 'new')
31) {
32)   $maildomain = $_POST['maildomain'];
33)   if ($maildomain == 0)
34)     $maildomain = NULL;
35)   else
36)     if (! isset($maildomains[$maildomain]))
37)       system_failure('Ihre Domain-Auswahl scheint ungültig zu sein');
38) 
39)   create_list($_POST['listname'], $maildomain, $_POST['admin']);
bernd Bugfix und Fehler-Status

bernd authored 15 years ago

40)   if (! $debugmode)
41)     header('Location: lists');
bernd Neues Modul für Mailman-Ver...

bernd authored 15 years ago

42) }
43) 
Bernd Wurst Ermögliche das Rücksetzen d...

Bernd Wurst authored 6 years ago

44) elseif ($_GET['action'] == 'newpw') {
45)   $list = get_list($_GET['id']);
46)   $sure = user_is_sure();
47)   if ($sure === NULL)
48)   {
49)     are_you_sure('action=newpw&id='.$list['id'], 'Möchten Sie für die Mailingliste »<strong>'.$list['listname'].'</strong>@'.$list['fqdn'].'« ein neues Passwort anfordern?');
50)   }
51)   elseif ($sure === true)
52)   {
53)     request_new_password($list['id']);
54)     if (! $debugmode)
55)       header('Location: lists');
56)   }
57)   elseif ($sure === false)
58)   {
59)     if (! $debugmode)
60)       header('Location: lists');
61)   }
62) }
63) elseif ($_GET['action'] == 'delete') {
bernd Neues Modul für Mailman-Ver...

bernd authored 15 years ago

64)   $list = get_list($_GET['id']);
65)   $sure = user_is_sure();
66)   if ($sure === NULL)
67)   {
68)     are_you_sure('action=delete&id='.$list['id'], 'Möchten Sie die Mailingliste »<strong>'.$list['listname'].'</strong>@'.$list['fqdn'].'« wirklich löschen?');
69)   }
70)   elseif ($sure === true)
71)   {
72)     delete_list($list['id']);
73)     if (! $debugmode)
74)       header('Location: lists');
75)   }
76)   elseif ($sure === false)
77)   {
78)     if (! $debugmode)
79)       header('Location: lists');
80)   }
Bernd Wurst Ermögliche das Rücksetzen d...

Bernd Wurst authored 6 years ago

81) }