diff -Nru postfix-3.4.10/debian/changelog postfix-3.4.10/debian/changelog --- postfix-3.4.10/debian/changelog 2020-03-13 05:11:35.000000000 +0000 +++ postfix-3.4.10/debian/changelog 2020-04-16 17:48:33.000000000 +0000 @@ -1,3 +1,9 @@ +postfix (3.4.10-1ubuntu1) focal; urgency=medium + + * d/configure-instance.sh: fix typo in tls_CApath copying (LP: #1872288) + + -- Lucas Kanashiro Thu, 16 Apr 2020 14:48:33 -0300 + postfix (3.4.10-1) unstable; urgency=medium [Scott Kitterman] diff -Nru postfix-3.4.10/debian/configure-instance.sh postfix-3.4.10/debian/configure-instance.sh --- postfix-3.4.10/debian/configure-instance.sh 2020-03-13 04:57:39.000000000 +0000 +++ postfix-3.4.10/debian/configure-instance.sh 2020-04-16 17:48:33.000000000 +0000 @@ -45,7 +45,7 @@ cd "$queue_dir" # copy the smtp CA path if specified - ca_path=$($POSTCONF -hx smtp_tls_CApath) + sca_path=$($POSTCONF -hx smtp_tls_CApath) case "$sca_path" in '') :;; # no sca_path $queue_dir/*) :;; # skip stuff already in chroot @@ -77,7 +77,7 @@ esac # copy the smtpd CA path if specified - ca_path=$($POSTCONF -hx smtpd_tls_CApath) + dca_path=$($POSTCONF -hx smtpd_tls_CApath) case "$dca_path" in '') :;; # no dca_path $queue_dir/*) :;; # skip stuff already in chroot diff -Nru postfix-3.4.10/debian/control postfix-3.4.10/debian/control --- postfix-3.4.10/debian/control 2020-03-13 04:57:39.000000000 +0000 +++ postfix-3.4.10/debian/control 2020-04-16 17:48:33.000000000 +0000 @@ -1,7 +1,8 @@ Source: postfix Section: mail Priority: optional -Maintainer: LaMont Jones +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: LaMont Jones Uploaders: Scott Kitterman Standards-Version: 4.5.0 Homepage: http://www.postfix.org