Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package containers-systemd for 
openSUSE:Factory checked in at 2022-07-14 16:33:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/containers-systemd (Old)
 and      /work/SRC/openSUSE:Factory/.containers-systemd.new.1523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "containers-systemd"

Thu Jul 14 16:33:25 2022 rev:32 rq:988999 version:0.0+git20220713.967c6f4

Changes:
--------
--- /work/SRC/openSUSE:Factory/containers-systemd/containers-systemd.changes    
2022-07-11 19:07:57.847487738 +0200
+++ 
/work/SRC/openSUSE:Factory/.containers-systemd.new.1523/containers-systemd.changes
  2022-07-14 16:33:31.288585634 +0200
@@ -1,0 +2,6 @@
+Wed Jul 13 12:22:17 UTC 2022 - ku...@suse.com
+
+- Update to version 0.0+git20220713.967c6f4:
+  * Add submission/smtps support for postfix
+
+-------------------------------------------------------------------

Old:
----
  containers-systemd-0.0+git20220710.f290756.tar.xz

New:
----
  containers-systemd-0.0+git20220713.967c6f4.tar.xz

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

Other differences:
------------------
++++++ containers-systemd.spec ++++++
--- /var/tmp/diff_new_pack.pySTsb/_old  2022-07-14 16:33:31.800586113 +0200
+++ /var/tmp/diff_new_pack.pySTsb/_new  2022-07-14 16:33:31.804586117 +0200
@@ -26,7 +26,7 @@
 %endif
 
 Name:           containers-systemd
-Version:        0.0+git20220710.f290756
+Version:        0.0+git20220713.967c6f4
 Release:        0
 Summary:        Systemd service files and config files for openSUSE container
 License:        MIT

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.pySTsb/_old  2022-07-14 16:33:31.844586155 +0200
+++ /var/tmp/diff_new_pack.pySTsb/_new  2022-07-14 16:33:31.848586159 +0200
@@ -1,7 +1,7 @@
 <servicedata>
   <service name="tar_scm">
     <param 
name="url">https://github.com/openSUSE/containers-systemd.git</param>
- <param 
name="changesrevision">f290756de52fe823534d0bfd776b4737839977cb</param></service>
+ <param 
name="changesrevision">967c6f44d04a09e709610ff6b1317ece8f35b5c6</param></service>
 </servicedata>
 (No newline at EOF)
 

++++++ containers-systemd-0.0+git20220710.f290756.tar.xz -> 
containers-systemd-0.0+git20220713.967c6f4.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/containers-systemd-0.0+git20220710.f290756/container-postfix.default 
new/containers-systemd-0.0+git20220713.967c6f4/container-postfix.default
--- old/containers-systemd-0.0+git20220710.f290756/container-postfix.default    
2022-07-10 07:20:05.000000000 +0200
+++ new/containers-systemd-0.0+git20220713.967c6f4/container-postfix.default    
2022-07-13 14:09:10.000000000 +0200
@@ -30,7 +30,7 @@
 SMTP_PASSWORD_FILE="/etc/postfix-secrets/SMTP_PASSWORD"
 
 # Ports which needs to be exported
-POSTFIX_PORTS="-p 25:25 -p 587:587"
+POSTFIX_PORTS="-p 25:25 -p 465:465 -p 587:587"
 
 # Extra arguments for podman to start the container
 PODMAN_EXTRA_ARGS=""
@@ -41,6 +41,25 @@
 # User/group ID of the user owning the virtual mailboxes
 VMAIL_UID=5000
 
+# Enable submission (port 587)
+ENABLE_SUBMISSION=0
+
+# Enable submissions/smtps (port 465). This requires SMTPD_USE_TLS=1
+ENABLE_SUBMISSIONS=0
+
+# Setup TLS/SSL for "submission" and "submissions".
+SMTPD_USE_TLS=1
+
+# Directory, where private and public certificate is stored.
+# Directory is mounted on /etc/postfix/ssl/certs
+POSTFIX_CERTS_DIR=/srv/postfix/certs
+
+# Public certificate 
+SMTPD_TLS_CRT=/etc/postfix/ssl/certs/fullchain.pem
+
+# Private certificate key
+SMTPD_TLS_KEY=/etc/postfix/ssl/certs/privkey.pem
+
 # If the virtual users are provided by LDAP 
 USE_LDAP=0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/containers-systemd-0.0+git20220710.f290756/container-postfix.service 
new/containers-systemd-0.0+git20220713.967c6f4/container-postfix.service
--- old/containers-systemd-0.0+git20220710.f290756/container-postfix.service    
2022-07-10 07:20:05.000000000 +0200
+++ new/containers-systemd-0.0+git20220713.967c6f4/container-postfix.service    
2022-07-13 14:09:10.000000000 +0200
@@ -13,10 +13,10 @@
 TimeoutStopSec=70
 EnvironmentFile=/usr/etc/default/container-postfix
 EnvironmentFile=-/etc/default/container-postfix
-ExecStartPre=-/usr/bin/mkdir -p ${POSTFIX_SPOOL_DIR} ${POSTFIX_VMAIL_DIR} 
${EXTRA_PKI_DIR}
+ExecStartPre=-/usr/bin/mkdir -p ${POSTFIX_SPOOL_DIR} ${POSTFIX_VMAIL_DIR} 
${POSTFIX_CERTS_DIR} ${EXTRA_PKI_DIR}
 ExecStartPre=/bin/rm -f %t/%n.pid %t/%n.ctr-id
 ExecStartPre=-/usr/bin/podman pull ${POSTFIX_IMAGE_PATH}
-ExecStart=/usr/bin/podman run --conmon-pidfile %t/%n.pid --cidfile 
%t/%n.ctr-id --cgroups=no-conmon --sdnotify=conmon --replace -d --rm 
$PODMAN_EXTRA_ARGS -v ${POSTFIX_SPOOL_DIR}:/var/spool/postfix:Z -v 
${POSTFIX_VMAIL_DIR}:/var/spool/vmail:z -v ${EXTRA_PKI_DIR}:/etc/pki:z -v 
${SECRETS_DIR}:/etc/postfix-secrets:Z $POSTFIX_PORTS -e 
SERVER_HOSTNAME=${SERVER_HOSTNAME} -e SERVER_DOMAIN=${SERVER_DOMAIN} -e 
SMTP_TLS_SECURITY_LEVEL=${SMTP_TLS_SECURITY_LEVEL} -e 
SMTP_RELAYHOST=${SMTP_RELAYHOST} -e SMTP_PORT=${SMTP_PORT} -e 
NULLCLIENT=${NULLCLIENT} -e SMTP_USERNAME=${SMTP_USERNAME} -e 
SMTP_PASSWORD_FILE=${SMTP_PASSWORD_FILE} -e SMTP_NETWORKS=${SMTP_NETWORKS} -e 
MASQUERADE_DOMAINS=${MASQUERADE_DOMAINS} -e MYDESTINATION=${MYDESTINATION} -e 
SPAMASSASSIN_HOST=${SPAMASSASSIN_HOST} -e LMTP=${LMTP} -e 
VIRTUAL_MBOX=${VIRTUAL_MBOX} -e VMAIL_UID=${VMAIL_UID} -e 
VIRTUAL_DOMAINS=${VIRTUAL_DOMAINS} -e VIRTUAL_USERS=${VIRTUAL_USERS} -e 
USE_LDAP=${USE_LDAP} -e LDAP_BASE_DN=${LDAP_BASE_DN} -e LDAP_SERVER_UR
 L=${LDAP_SERVER_URL} -e LDAP_BIND_DN=${LDAP_BIND_DN} -e 
LDAP_BIND_PASSWORD_FILE=${LDAP_BIND_PASSWORD_FILE} -e 
LDAP_USE_TLS=${LDAP_USE_TLS} -e LDAP_TLS_CA_CRT=${LDAP_TLS_CA_CRT} -e TZ=${TZ} 
-e DEBUG=${DEBUG} --name postfix ${POSTFIX_IMAGE_PATH}
+ExecStart=/usr/bin/podman run --conmon-pidfile %t/%n.pid --cidfile 
%t/%n.ctr-id --cgroups=no-conmon --sdnotify=conmon --replace -d --rm 
$PODMAN_EXTRA_ARGS -v ${POSTFIX_SPOOL_DIR}:/var/spool/postfix:Z -v 
${POSTFIX_VMAIL_DIR}:/var/spool/vmail:z -v ${EXTRA_PKI_DIR}:/etc/pki:z -v 
${SECRETS_DIR}:/etc/postfix-secrets:Z -v 
${POSTFIX_CERTS_DIR}:/etc/postfix/ssl/certs:z $POSTFIX_PORTS -e 
SERVER_HOSTNAME=${SERVER_HOSTNAME} -e SERVER_DOMAIN=${SERVER_DOMAIN} -e 
SMTP_TLS_SECURITY_LEVEL=${SMTP_TLS_SECURITY_LEVEL} -e 
SMTP_RELAYHOST=${SMTP_RELAYHOST} -e SMTP_PORT=${SMTP_PORT} -e 
NULLCLIENT=${NULLCLIENT} -e SMTP_USERNAME=${SMTP_USERNAME} -e 
SMTP_PASSWORD_FILE=${SMTP_PASSWORD_FILE} -e SMTP_NETWORKS=${SMTP_NETWORKS} -e 
MASQUERADE_DOMAINS=${MASQUERADE_DOMAINS} -e MYDESTINATION=${MYDESTINATION} -e 
SPAMASSASSIN_HOST=${SPAMASSASSIN_HOST} -e LMTP=${LMTP} -e 
VIRTUAL_MBOX=${VIRTUAL_MBOX} -e VMAIL_UID=${VMAIL_UID} -e 
VIRTUAL_DOMAINS=${VIRTUAL_DOMAINS} -e VIRTUAL_USERS=${VIRTUAL_USERS} -e 
USE_LDAP=${USE_LDAP} 
 -e LDAP_BASE_DN=${LDAP_BASE_DN} -e LDAP_SERVER_URL=${LDAP_SERVER_URL} -e 
LDAP_BIND_DN=${LDAP_BIND_DN} -e 
LDAP_BIND_PASSWORD_FILE=${LDAP_BIND_PASSWORD_FILE} -e 
LDAP_USE_TLS=${LDAP_USE_TLS} -e LDAP_TLS_CA_CRT=${LDAP_TLS_CA_CRT} -e 
ENABLE_SUBMISSION=${ENABLE_SUBMISSION} -e 
ENABLE_SUBMISSIONS=${ENABLE_SUBMISSIONS} -e SMTPD_USE_TLS=${SMTPD_USE_TLS} -e 
SMTPD_TLS_CRT=${SMTPD_TLS_CRT} -e SMTPD_TLS_KEY=${SMTPD_TLS_KEY} -e TZ=${TZ} -e 
DEBUG=${DEBUG} --name postfix ${POSTFIX_IMAGE_PATH}
 ExecStop=/usr/bin/podman stop --ignore --cidfile %t/%n.ctr-id -t 10
 ExecStopPost=/usr/bin/podman rm --ignore -f --cidfile %t/%n.ctr-id
 Type=notify

Reply via email to