Skip to content

Commit 091d2ce

Browse files
author
Marius Burkard
committed
Merge branch 'webdev/ispconfig3-master'
2 parents 922b280 + 880e4c7 commit 091d2ce

File tree

804 files changed

+9365
-29321
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

804 files changed

+9365
-29321
lines changed

addons/empty.dir

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This empty directory is needed by ISPConfig.

docs/autoinstall_samples/autoinstall.conf_sample.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@
5757
$autoupdate['svc_detect_change_mail_server'] = 'yes'; // yes (default), no
5858
$autoupdate['svc_detect_change_web_server'] = 'yes'; // yes (default), no
5959
$autoupdate['svc_detect_change_dns_server'] = 'yes'; // yes (default), no
60-
$autoupdate['svc_detect_change_xmpp_server'] = 'yes'; // yes (default), no
6160
$autoupdate['svc_detect_change_firewall_server'] = 'yes'; // yes (default), no
62-
$autoupdate['svc_detect_change_vserver_server'] = 'yes'; // yes (default), no
6361
$autoupdate['svc_detect_change_db_server'] = 'yes'; // yes (default), no
6462

6563
?>

helper_scripts/setup_in_openvz/diff_openssl.cnf

Lines changed: 0 additions & 25 deletions
This file was deleted.

helper_scripts/setup_in_openvz/install_server.sh

Lines changed: 0 additions & 61 deletions
This file was deleted.

helper_scripts/setup_in_openvz/recreate_ssh_and_hostname.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

helper_scripts/test_mailqueue.php

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
// for testing, put this file in interface/web/tools
4+
5+
require_once '../../lib/config.inc.php';
6+
require_once '../../lib/app.inc.php';
7+
8+
//* Check permissions for module
9+
$app->auth->check_module_permissions('admin');
10+
11+
$app->uses('getconf,ispcmail');
12+
$mail_config = $app->getconf->get_global_config('mail');
13+
if($mail_config['smtp_enabled'] == 'y') {
14+
$mail_config['use_smtp'] = true;
15+
$app->ispcmail->setOptions($mail_config);
16+
}
17+
18+
$to = 't.heller@timmehosting.de';
19+
$subject = 'Test von ISPConfig-Mailqueue';
20+
$text = '123'."\n\n".date(DATE_RFC822)."\n\n".'SMTP: '.$mail_config['use_smtp'];
21+
$from = 'ispconfig@thomas.timmeserver.de';
22+
$filepath = '';
23+
$filetype = 'application/pdf';
24+
$filename = '';
25+
$cc = '';
26+
$bcc = '';
27+
$from_name = 'ISPConfig';
28+
29+
$app->ispcmail->setSender($from, $from_name);
30+
$app->ispcmail->setSubject($subject);
31+
$app->ispcmail->setMailText($text);
32+
33+
if($filepath != '') {
34+
if(!file_exists($filepath)) $app->error("Mail attachement does not exist ".$filepath);
35+
$app->ispcmail->readAttachFile($filepath);
36+
}
37+
38+
if($cc != '') $app->ispcmail->setHeader('Cc', $cc);
39+
if($bcc != '') $app->ispcmail->setHeader('Bcc', $bcc);
40+
41+
$app->ispcmail->send($to);
42+
$app->ispcmail->finish();
43+
44+
echo $text;
45+

install/apps/metronome-init

Lines changed: 0 additions & 75 deletions
This file was deleted.

install/apps/xmpp_libs/auth_prosody/authenticate_isp.sh

Lines changed: 0 additions & 38 deletions
This file was deleted.

install/apps/xmpp_libs/auth_prosody/db_auth.php

Lines changed: 0 additions & 48 deletions
This file was deleted.

install/apps/xmpp_libs/auth_prosody/db_conf.inc.php

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)