Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package postfix for openSUSE:Factory checked 
in at 2024-08-02 17:25:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/postfix (Old)
 and      /work/SRC/openSUSE:Factory/.postfix.new.7232 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "postfix"

Fri Aug  2 17:25:32 2024 rev:243 rq:1190939 version:3.9.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/postfix/postfix-bdb.changes      2024-06-19 
16:37:02.270371638 +0200
+++ /work/SRC/openSUSE:Factory/.postfix.new.7232/postfix-bdb.changes    
2024-08-02 17:25:34.996964595 +0200
@@ -1,0 +2,5 @@
+Thu Aug  1 08:36:10 UTC 2024 - Peter Varkoly <[email protected]>
+
+- postfix gives warnings about deprecated parameters (bsc#1225397)
+
+-------------------------------------------------------------------
postfix.changes: same change

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ postfix-bdb.spec ++++++
--- /var/tmp/diff_new_pack.xA9yXv/_old  2024-08-02 17:25:37.185054823 +0200
+++ /var/tmp/diff_new_pack.xA9yXv/_new  2024-08-02 17:25:37.189054988 +0200
@@ -128,14 +128,14 @@
 %endif
 # /usr/lib/postfix/bin//post-install: line 667: ed: command not found
 Requires(pre):  ed
-Requires(preun): ed
+Requires(preun):ed
 Requires(post): ed
-Requires(postun): ed
+Requires(postun):ed
 # /usr/sbin/config.postfix needs perl
 Requires(pre):  perl
-Requires(preun): perl
+Requires(preun):perl
 Requires(post): perl
-Requires(postun): perl
+Requires(postun):perl
 
 %description
 Postfix aims to be an alternative to the widely-used sendmail program with bdb 
support

++++++ postfix.spec ++++++
--- /var/tmp/diff_new_pack.xA9yXv/_old  2024-08-02 17:25:37.237056968 +0200
+++ /var/tmp/diff_new_pack.xA9yXv/_new  2024-08-02 17:25:37.241057133 +0200
@@ -110,14 +110,14 @@
 %endif
 # /usr/lib/postfix/bin//post-install: line 667: ed: command not found
 Requires(pre):  /usr/bin/ed
-Requires(preun): /usr/bin/ed
+Requires(preun):/usr/bin/ed
 Requires(post): /usr/bin/ed
-Requires(postun): /usr/bin/ed
+Requires(postun):/usr/bin/ed
 # /usr/sbin/config.postfix needs perl
 Requires(pre):  perl
-Requires(preun): perl
+Requires(preun):perl
 Requires(post): perl
-Requires(postun): perl
+Requires(postun):perl
 
 %description
 Postfix aims to be an alternative to the widely-used sendmail program.


++++++ postfix-SUSE.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/postfix-SUSE/config.postfix 
new/postfix-SUSE/config.postfix
--- old/postfix-SUSE/config.postfix     2024-06-18 20:50:42.324999904 +0200
+++ new/postfix-SUSE/config.postfix     2024-08-01 10:35:53.870000669 +0200
@@ -662,8 +662,9 @@
        # BNC#981097 config.postfix creates broken main.cf for tls client 
configuration
            warn_user 1>&2 "You have activated POSTFIX_SMTP_TLS_SERVER, but you 
don't have created or configured certificates."
        else
-               $PCONF -e "smtpd_use_tls = yes"
-               $PCONF -e "smtpd_enforce_tls = no"
+               # Following two parameters are deprecated and parameter 
smtpd_tls_security_level covers this situation
+               #$PCONF -e "smtpd_use_tls = yes"
+               #$PCONF -e "smtpd_enforce_tls = no"
                $PCONF -e "smtpd_tls_security_level = may"
                if [ -n "$POSTFIX_TLS_CAFILE" -a -s 
"$POSTFIX_SSL_PATH/$POSTFIX_TLS_CAFILE" ]; then
                    $PCONF -e "smtpd_tls_CAfile = 
$POSTFIX_SSL_PATH/$POSTFIX_TLS_CAFILE"
@@ -696,8 +697,9 @@
                $PCONF -e "smtpd_recipient_restrictions = 
permit_tls_clientcerts, $CURRENT"
        fi
     else
-       $PCONF -e "smtpd_use_tls = no"
-       $PCONF -e "smtpd_enforce_tls = no"
+       #Following two parameters are deprecated and smtpd_tls_security_level 
covers this situation
+       #$PCONF -e "smtpd_use_tls = no"
+       #$PCONF -e "smtpd_enforce_tls = no"
        $PCONF -e "smtpd_tls_security_level ="
        $PCONF -e "smtpd_tls_CAfile ="
        $PCONF -e "smtpd_tls_CApath ="
@@ -709,18 +711,21 @@
     fi
 
     if test "$POSTFIX_SMTP_TLS_CLIENT" == "no"; then
-           $PCONF -e "smtp_use_tls = no"
-           $PCONF -e "smtp_enforce_tls = no"
+           #Following two parameters are deprecated and 
smtpd_tls_security_level covers this situation
+           #$PCONF -e "smtp_use_tls = no"
+           #$PCONF -e "smtp_enforce_tls = no"
            $PCONF -e "smtp_tls_security_level ="
     fi
     if test "$POSTFIX_SMTP_TLS_CLIENT" == "yes"; then
-           $PCONF -e "smtp_use_tls = yes"
-           $PCONF -e "smtp_enforce_tls = no"
+           #Following two parameters are deprecated and 
smtpd_tls_security_level covers this situation
+           #$PCONF -e "smtp_use_tls = yes"
+           #$PCONF -e "smtp_enforce_tls = no"
            $PCONF -e "smtp_tls_security_level = may"
     fi
     if test "$POSTFIX_SMTP_TLS_CLIENT" == "must"; then
-           $PCONF -e "smtp_use_tls = yes"
-           $PCONF -e "smtp_enforce_tls = yes"
+           #Following two parameters are deprecated and 
smtpd_tls_security_level covers this situation
+           #$PCONF -e "smtp_use_tls = yes"
+           #$PCONF -e "smtp_enforce_tls = yes"
            $PCONF -e "smtp_tls_security_level = encrypt"
     fi
     if test "$POSTFIX_SMTP_TLS_CLIENT" = "yes" -o "$POSTFIX_SMTP_TLS_CLIENT" = 
"must" ; then
@@ -1366,7 +1371,8 @@
 update_cf() {
     while test "x$1" != "x" ; do
         TMPFILE=$(mktemp /tmp/postfix.${1}.XXXXXX) || exit 1
-       B=$( find /etc/postfix/${1} -printf %CY%Cm%Cd%CI%CM )
+       #Ck instead of CI; k is 24 hours clock; I is 12 hours clock
+       B=$( find /etc/postfix/${1} -printf %CY%Cm%Cd%Ck%CM )
        cp /etc/postfix/${1} "@conf_backup_dir@/${1}$B"
        cp /etc/postfix/${1} "@conf_backup_dir@/${1}"
        eval gen_${1/\./_} > $TMPFILE

Reply via email to