Dominik Müller
2014-01-19 185457e92fa7c06f59c3469697b815a73498d46c
Problem with checkbox not visible fixed
additionsl configuration-changes when update -> use lmtp instead of dovecot directly
5 files modified
14 ■■■■ changed files
install/dist/lib/debian60.lib.php 2 ●●● patch | view | raw | blame | history
install/dist/lib/fedora.lib.php 2 ●●● patch | view | raw | blame | history
install/dist/lib/gentoo.lib.php 2 ●●● patch | view | raw | blame | history
install/dist/lib/opensuse.lib.php 2 ●●● patch | view | raw | blame | history
interface/web/admin/form/server_config.tform.php 6 ●●●●● patch | view | raw | blame | history
install/dist/lib/debian60.lib.php
@@ -57,7 +57,7 @@
        // Adding the amavisd commands to the postfix configuration
        $postconf_commands = array (
            'dovecot_destination_recipient_limit = 1',
            'virtual_transport = dovecot',
            'virtual_transport = lmtp:unix:private/dovecot-lmtp',
            'smtpd_sasl_type = dovecot',
            'smtpd_sasl_path = private/auth'
        );
install/dist/lib/fedora.lib.php
@@ -402,7 +402,7 @@
        // Adding the amavisd commands to the postfix configuration
        $postconf_commands = array (
            'dovecot_destination_recipient_limit = 1',
            'virtual_transport = dovecot',
            'virtual_transport = lmtp:unix:private/dovecot-lmtp',
            'smtpd_sasl_type = dovecot',
            'smtpd_sasl_path = private/auth',
            'receive_override_options = no_address_mappings'
install/dist/lib/gentoo.lib.php
@@ -245,7 +245,7 @@
        //* Reconfigure postfix to use dovecot authentication
        $postconf_commands = array (
            'dovecot_destination_recipient_limit = 1',
            'virtual_transport = dovecot',
            'virtual_transport = lmtp:unix:private/dovecot-lmtp',
            'smtpd_sasl_type = dovecot',
            'smtpd_sasl_path = private/auth'
        );
install/dist/lib/opensuse.lib.php
@@ -437,7 +437,7 @@
        // Adding the amavisd commands to the postfix configuration
        $postconf_commands = array (
            'dovecot_destination_recipient_limit = 1',
            'virtual_transport = dovecot',
            'virtual_transport = lmtp:unix:private/dovecot-lmtp',
            'smtpd_sasl_type = dovecot',
            'smtpd_sasl_path = private/auth',
            'receive_override_options = no_address_mappings'
interface/web/admin/form/server_config.tform.php
@@ -368,6 +368,12 @@
            'width' => '10',
            'maxlength' => '255'
        ),
        'mailbox_virtual_uidgid_maps' => array(
                'datatype' => 'VARCHAR',
                'formtype' => 'CHECKBOX',
                'default' => 'n',
                'value' => array(0 => 'n', 1 => 'y')
        ),
        'relayhost' => array(
            'datatype' => 'VARCHAR',
            'formtype' => 'TEXT',