Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Helmo
ISPConfig 3
Commits
31ad5b7d
Commit
31ad5b7d
authored
Feb 05, 2021
by
Jesse Norell
Browse files
ensure /etc/postfix/sasl_passwd exists
parent
88c60a54
Changes
8
Hide whitespace changes
Inline
Side-by-side
install/dist/lib/fedora.lib.php
View file @
31ad5b7d
...
...
@@ -162,6 +162,7 @@ class installer_dist extends installer_base {
touch
(
$config_dir
.
'/mime_header_checks'
);
touch
(
$config_dir
.
'/nested_header_checks'
);
touch
(
$config_dir
.
'/body_checks'
);
touch
(
$config_dir
.
'/sasl_passwd'
);
//* Create the mailman files
if
(
!
is_dir
(
'/var/lib/mailman/data'
))
exec
(
'mkdir -p /var/lib/mailman/data'
);
...
...
install/dist/lib/gentoo.lib.php
View file @
31ad5b7d
...
...
@@ -160,6 +160,7 @@ class installer extends installer_base
touch
(
$config_dir
.
'/mime_header_checks'
);
touch
(
$config_dir
.
'/nested_header_checks'
);
touch
(
$config_dir
.
'/body_checks'
);
touch
(
$config_dir
.
'/sasl_passwd'
);
//* Create auxillary postfix conf files
$configfile
=
'helo_access'
;
...
...
install/dist/lib/opensuse.lib.php
View file @
31ad5b7d
...
...
@@ -176,6 +176,7 @@ class installer_dist extends installer_base {
touch
(
$config_dir
.
'/mime_header_checks'
);
touch
(
$config_dir
.
'/nested_header_checks'
);
touch
(
$config_dir
.
'/body_checks'
);
touch
(
$config_dir
.
'/sasl_passwd'
);
//* Create the mailman files
if
(
!
is_dir
(
'/var/lib/mailman/data'
))
exec
(
'mkdir -p /var/lib/mailman/data'
);
...
...
install/lib/installer_base.lib.php
View file @
31ad5b7d
...
...
@@ -1200,6 +1200,7 @@ class installer_base {
touch
(
$config_dir
.
'/mime_header_checks'
);
touch
(
$config_dir
.
'/nested_header_checks'
);
touch
(
$config_dir
.
'/body_checks'
);
touch
(
$config_dir
.
'/sasl_passwd'
);
//* Create the mailman files
if
(
!
is_dir
(
'/var/lib/mailman/data'
))
exec
(
'mkdir -p /var/lib/mailman/data'
);
...
...
install/tpl/debian_postfix.conf.master
View file @
31ad5b7d
...
...
@@ -54,7 +54,7 @@ address_verify_negative_refresh_time=60s
# needed for postfix < 3.3 when using reject_unverified_recipient (lmtp):
enable_original_recipient = yes
sender_dependent_relayhost_maps = proxy:mysql:{config_dir}/mysql-virtual_sender-relayhost.cf
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,
text
hash:{config_dir}/sasl_passwd
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous, noplaintext
...
...
install/tpl/fedora_postfix.conf.master
View file @
31ad5b7d
...
...
@@ -50,7 +50,7 @@ address_verify_negative_refresh_time=60s
# needed for postfix < 3.3 when using reject_unverified_recipient (lmtp):
enable_original_recipient = yes
sender_dependent_relayhost_maps = proxy:mysql:{config_dir}/mysql-virtual_sender-relayhost.cf
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,
text
hash:{config_dir}/sasl_passwd
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous, noplaintext
...
...
install/tpl/gentoo_postfix.conf.master
View file @
31ad5b7d
...
...
@@ -49,7 +49,7 @@ address_verify_negative_refresh_time=60s
# needed for postfix < 3.3 when using reject_unverified_recipient (lmtp):
enable_original_recipient = yes
sender_dependent_relayhost_maps = proxy:mysql:{config_dir}/mysql-virtual_sender-relayhost.cf
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,
text
hash:{config_dir}/sasl_passwd
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous, noplaintext
...
...
install/tpl/opensuse_postfix.conf.master
View file @
31ad5b7d
...
...
@@ -52,7 +52,7 @@ address_verify_negative_refresh_time=60s
# needed for postfix < 3.3 when using reject_unverified_recipient (lmtp):
enable_original_recipient = yes
sender_dependent_relayhost_maps = proxy:mysql:{config_dir}/mysql-virtual_sender-relayhost.cf
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,
text
hash:{config_dir}/sasl_passwd
smtp_sender_dependent_authentication = yes
smtp_sasl_auth_enable = yes
smtp_sasl_security_options = noanonymous, noplaintext
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment