We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 81f8237 + 509a4aa commit a7382a3Copy full SHA for a7382a3
19 files changed
install/dist/lib/fedora.lib.php
@@ -162,6 +162,7 @@ function configure_postfix($options = '')
162
touch($config_dir.'/mime_header_checks');
163
touch($config_dir.'/nested_header_checks');
164
touch($config_dir.'/body_checks');
165
+ touch($config_dir.'/sasl_passwd');
166
167
//* Create the mailman files
168
if(!is_dir('/var/lib/mailman/data')) exec('mkdir -p /var/lib/mailman/data');
install/dist/lib/gentoo.lib.php
@@ -160,6 +160,7 @@ public function configure_postfix($options = '')
160
161
//* Create auxillary postfix conf files
$configfile = 'helo_access';
install/dist/lib/opensuse.lib.php
@@ -176,6 +176,7 @@ function configure_postfix($options = '')
176
177
178
179
180
181
182
install/lib/installer_base.lib.php
@@ -1193,6 +1193,7 @@ public function configure_postfix($options = '') {
1193
1194
1195
1196
1197
1198
1199
install/sql/incremental/upd_dev_collection.sql
@@ -16,3 +16,6 @@ DROP TABLE 'software_package';
16
DROP TABLE 'software_repo';
17
DROP TABLE 'software_update';
18
DROP TABLE 'software_update_inst';
19
+
20
+-- Brexit
21
+UPDATE `country` SET `eu` = 'n' WHERE `iso` = 'GB';
install/sql/ispconfig3.sql
@@ -2408,7 +2408,7 @@ INSERT INTO `country` (`iso`, `name`, `printable_name`, `iso3`, `numcode`, `eu`)
2408
('UG', 'UGANDA', 'Uganda', 'UGA', 800, 'n'),
2409
('UA', 'UKRAINE', 'Ukraine', 'UKR', 804, 'n'),
2410
('AE', 'UNITED ARAB EMIRATES', 'United Arab Emirates', 'ARE', 784, 'n'),
2411
-('GB', 'UNITED KINGDOM', 'United Kingdom', 'GBR', 826, 'y'),
+('GB', 'UNITED KINGDOM', 'United Kingdom', 'GBR', 826, 'n'),
2412
('US', 'UNITED STATES', 'United States', 'USA', 840, 'n'),
2413
('UM', 'UNITED STATES MINOR OUTLYING ISLANDS', 'United States Minor Outlying Islands', NULL, NULL, 'n'),
2414
('UY', 'URUGUAY', 'Uruguay', 'URY', 858, 'n'),
install/tpl/apache_ispconfig.conf.master
@@ -3,6 +3,7 @@
3
################################################
4
ServerTokens ProductOnly
5
ServerSignature Off
6
+DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm standard_index.html
7
8
9
# ISPConfig Logfile configuration for vlogger
install/tpl/debian_postfix.conf.master
@@ -54,7 +54,7 @@ address_verify_negative_refresh_time=60s
54
# needed for postfix < 3.3 when using reject_unverified_recipient (lmtp):
55
enable_original_recipient = yes
56
sender_dependent_relayhost_maps = proxy:mysql:{config_dir}/mysql-virtual_sender-relayhost.cf
57
-smtp_sasl_password_maps = proxy:mysql:{config_dir}/mysql-virtual_sender-relayauth.cf, hash:{config_dir}/sasl_passwd
+smtp_sasl_password_maps = proxy:mysql:{config_dir}/mysql-virtual_sender-relayauth.cf, texthash:{config_dir}/sasl_passwd
58
smtp_sender_dependent_authentication = yes
59
smtp_sasl_auth_enable = yes
60
smtp_sasl_security_options = noanonymous, noplaintext
install/tpl/fedora_postfix.conf.master
@@ -50,7 +50,7 @@ address_verify_negative_refresh_time=60s
50
51
52
53
install/tpl/gentoo_postfix.conf.master
@@ -49,7 +49,7 @@ address_verify_negative_refresh_time=60s
49
0 commit comments