commit 2ae6a51f876fa018dfe3a78a6199b00dad0bb269 Author: Steffen Nurpmeso <steffen@sdaoden.eu> Date: Thu Dec 23 00:46:17 2021 +0100 postfix-lmdb: fix post-install (usermod -d /var/spool/postfix-lmdb postfix) diff --git a/postfix-lmdb/.signature b/postfix-lmdb/.signature index 469c47771..c604c4a8e 100644 --- a/postfix-lmdb/.signature +++ b/postfix-lmdb/.signature @@ -1,12 +1,12 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF36cwunfaTMBKKxSCvmnVc0zIp0pHjpYaKlr4JEmM9eLw71FsSOqgagXUJIrTMIVwOLcz/4Gsxh6Dn1D/uIAm1AY= -SHA256 (Pkgfile) = 89b795b5ef2a8eff41f9d0747cddd3c0f9f431691c2138ea29aee487d4b23d32 +RWSagIOpLGJF3wHwvb+eqo1yigC0gg6SeYTgWYC3Ue7icq27WmejTfm3SPC0CKz5l2z++X4osrcMttaVnmT5Aq0V3XMFsXU/ow0= +SHA256 (Pkgfile) = 08c9520bf158ded47ba20bd8b35c29bc16f71c1df29a9ae066a20ab1ddc7dcad SHA256 (.footprint) = c4bef46624508b9105e8c5816c322560a560c09e9c5507509eb95c886d52a387 SHA256 (postfix-3.6.3.tar.gz) = 0f1241d456a0158e0c418abf62c52c2ff83f8f1dcf2fbdd4c40765b67789b1bc SHA256 (lmdb-default.patch) = 11f42333ae0640a3ca579463ed28007973693b93bc734b5d82225fcb516bf05e SHA256 (postfix-install.patch) = 7185d2b2e4d7cc090b958c1d372c16e15f274465e2123686a0d97db20e2b5943 SHA256 (closefrom.patch) = e7b07aefa319c67b0b44a95a5701f3ef3d35d8e58c126de841ec2e4b16b29c8f -SHA256 (post-install) = 2d7a4e57ea09916dba84bc388399dce162756809c2e914b54d617faeda89161c +SHA256 (post-install) = 16dfda7fc118659d5ed83d4a0f683c730b0de723f9700806666532efa2502957 SHA256 (postfix.rc) = 5ac60205a95faf4633c64bc60d2689f654b997932e3bbc1204b66df7b5dce1d2 SHA256 (README) = a51f96a1f17cdc075d307c44f146e761e0c795812710b1db6e049b7bdee84210 SHA256 (aliases) = 60ae98d869800055b248c32c183a1836cc5a698cf337cb7ad734e862ae80e95a diff --git a/postfix-lmdb/Pkgfile b/postfix-lmdb/Pkgfile index 2612afc7c..fd6d53ceb 100644 --- a/postfix-lmdb/Pkgfile +++ b/postfix-lmdb/Pkgfile @@ -7,7 +7,7 @@ rname=postfix name=postfix-lmdb version=3.6.3 -release=1 +release=2 source=( https://de.${rname}.org/ftpmirror/official/${rname}-${version}.tar.gz lmdb-default.patch diff --git a/postfix-lmdb/post-install b/postfix-lmdb/post-install index ef7d08a67..32d32a9b7 100644 --- a/postfix-lmdb/post-install +++ b/postfix-lmdb/post-install @@ -17,7 +17,7 @@ getent group mail >/dev/null || groupadd -r mail getent group ${usrgrp} >/dev/null || groupadd -r ${usrgrp} getent passwd ${usr} >/dev/null 2>&1 || { - useradd -r -g ${usrgrp} -d /var/spool/${usr} -s /bin/false ${usr} + useradd -r -g ${usrgrp} -d /var/spool/${name} -s /bin/false ${usr} passwd -l ${usr} }