<?php
/*
This file belongs to the Webinterface of schokokeks.org Hosting
Written by schokokeks.org Hosting, namely
Bernd Wurst <bernd@schokokeks.org>
Hanno Böck <hanno@schokokeks.org>
This code is published under a 0BSD license.
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.
*/
require_once('mailman.php');
require_role(ROLE_SYSTEMUSER);
$title = "Neue Mailingliste erstellen";
$domains = get_mailman_domains();
$maildomains = ['0' => config('mailman_host')];
foreach ($domains as $domain) {
$maildomains[$domain['id']] = $domain['fqdn'];
}
DEBUG("maildomains");
DEBUG($maildomains);
if ($_GET['action'] == 'new') {
$maildomain = $_POST['maildomain'];
DEBUG("maildomain: ".$maildomain);
if ($maildomain == null) {
system_failure('Ihre Domain-Auswahl scheint ungültig zu sein');
} elseif ('0' === (string) $maildomain) {
DEBUG("maildomain == 0");
$maildomain = null;
} elseif (isset($maildomains[$maildomain])) {
// regular, OK
DEBUG("maildomain in \$maildomains");
} else {
DEBUG("possible new maildomain");
$possible = get_possible_mailmandomains();
$found = false;
foreach ($possible as $domain) {
if ($maildomain == 'd'.$domain['id']) {
// lege Mailman-Domain neu an
$found = true;
$maildomain = insert_mailman_domain('lists', $domain['id']);
warning('Die Domain '.$domain['fqdn'].' wurde erstmals für eine Mailingliste benutzt. Aufgrund der dafür nötigen Änderungen kann es bis zu 1 Stunde dauern, bis Mails an diese Adresse korrekt zugestellt werden.');
}
}
if (! $found) {
system_failure('Ihre Domain-Auswahl scheint ungültig zu sein');