Skip to content

Commit 185457e

Browse files
committed
Problem with checkbox not visible fixed
additionsl configuration-changes when update -> use lmtp instead of dovecot directly
1 parent 0e2978e commit 185457e

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

install/dist/lib/debian60.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function configure_dovecot()
5757
// Adding the amavisd commands to the postfix configuration
5858
$postconf_commands = array (
5959
'dovecot_destination_recipient_limit = 1',
60-
'virtual_transport = dovecot',
60+
'virtual_transport = lmtp:unix:private/dovecot-lmtp',
6161
'smtpd_sasl_type = dovecot',
6262
'smtpd_sasl_path = private/auth'
6363
);

install/dist/lib/fedora.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ public function configure_dovecot()
402402
// Adding the amavisd commands to the postfix configuration
403403
$postconf_commands = array (
404404
'dovecot_destination_recipient_limit = 1',
405-
'virtual_transport = dovecot',
405+
'virtual_transport = lmtp:unix:private/dovecot-lmtp',
406406
'smtpd_sasl_type = dovecot',
407407
'smtpd_sasl_path = private/auth',
408408
'receive_override_options = no_address_mappings'

install/dist/lib/gentoo.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ public function configure_dovecot()
245245
//* Reconfigure postfix to use dovecot authentication
246246
$postconf_commands = array (
247247
'dovecot_destination_recipient_limit = 1',
248-
'virtual_transport = dovecot',
248+
'virtual_transport = lmtp:unix:private/dovecot-lmtp',
249249
'smtpd_sasl_type = dovecot',
250250
'smtpd_sasl_path = private/auth'
251251
);

install/dist/lib/opensuse.lib.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ public function configure_dovecot()
437437
// Adding the amavisd commands to the postfix configuration
438438
$postconf_commands = array (
439439
'dovecot_destination_recipient_limit = 1',
440-
'virtual_transport = dovecot',
440+
'virtual_transport = lmtp:unix:private/dovecot-lmtp',
441441
'smtpd_sasl_type = dovecot',
442442
'smtpd_sasl_path = private/auth',
443443
'receive_override_options = no_address_mappings'

interface/web/admin/form/server_config.tform.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,12 @@
368368
'width' => '10',
369369
'maxlength' => '255'
370370
),
371+
'mailbox_virtual_uidgid_maps' => array(
372+
'datatype' => 'VARCHAR',
373+
'formtype' => 'CHECKBOX',
374+
'default' => 'n',
375+
'value' => array(0 => 'n', 1 => 'y')
376+
),
371377
'relayhost' => array(
372378
'datatype' => 'VARCHAR',
373379
'formtype' => 'TEXT',

0 commit comments

Comments
 (0)