Search Criteria
Package Details: courier-authlib 0.71.1-1
Git Clone URL: | https://aur.archlinux.org/courier-authlib.git (read-only, click to copy) |
---|---|
Package Base: | courier-authlib |
Description: | Authentication library for the Courier mailserver(s) |
Upstream URL: | http://courier-mta.org/authlib/ |
Licenses: | |
Submitter: | Svenstaro |
Maintainer: | runnytu |
Last Packager: | runnytu |
Votes: | 26 |
Popularity: | 0.000000 |
First Submitted: | 2012-10-13 09:51 |
Last Updated: | 2021-02-11 17:49 |
Dependencies (17)
- expect
- gdbm
- libtool (libtool-git)
- openssl (libressl-git, openssl-purify, openssl-zlib, openssl-git, openssl-weak-ciphers, openssl-hardened)
- perl (perl-git)
- courier-unicode>=2.1
- expect (make)
- libldap (make)
- libmariadbclient (libmysqlclient55, mariadb-libs-git, mariadb103-libs, libmysqlclient56, libmysqlclient57, libmysqlclient, mariadb-libs) (make)
- pam (pam-minimal-git, pam-selinux) (make)
- procps-ng (procps-ng-git, procps-ng-static, procps-ng-nosystemd-minimal-git, procps-ng-nosystemd) (make)
- postgresql-libs>=8.3.0 (agensgraph-git, postgresql-libs-1c, postgresql-libs-10, postgresql-src-beta-libs, postgresql-libs-9.5, postgresql-libs-9.4, postgresql-src-libs, postgresql-lts-libs, postgresql-libs-12, postgresql-libs-9.6, postgresql-libs-11) (make)
- libldap (optional) – With support for the authldap authentication module
- libmariadbclient (libmysqlclient55, mariadb-libs-git, mariadb103-libs, libmysqlclient56, libmysqlclient57, libmysqlclient, mariadb-libs) (optional) – With support for the authmysql authentication module
- pam (pam-minimal-git, pam-selinux) (optional) – With support for the authpam authentication module
- postgresql-libs (agensgraph-git, postgresql-libs-1c, postgresql-libs-10, postgresql-src-beta-libs, postgresql-libs-9.5, postgresql-libs-9.4, postgresql-src-libs, postgresql-lts-libs, postgresql-libs-12, postgresql-libs-9.6, postgresql-libs-11) (optional) – With support for the authpgsql authentication module
- sqlite (sqlite-fossil, sqlite-replication, sqlite-fts3-parenthesis, sqlite-minimal-git) (optional) – With support for the authsqlite authentication module
Latest Comments
1 2 3 4 5 6 Next › Last »
runnytu commented on 2019-08-06 17:54
@lilmike, Fixed with the same version to avoid other users to upgrade.
lilmike commented on 2019-08-06 07:36
I get the following error when building from a chroot (missing dependancy/makedepend?)
error: Cannot find pathname to ps
runnytu commented on 2018-02-11 12:42
@rpodgorny, you should have this directory from when you install the package for the first time, nevertheless, I fixed it with the same version to avoid others users to reinstall.
rpodgorny commented on 2018-02-10 23:46
thanks a lot! ...still: now shadow service crashes with:
user 'courier': directory '/var/spool/courier' does not exist
...i don't know what the correct way to handle this would be but i think using "-" as home directory for courier user in sysusers.d would be fine.
runnytu commented on 2018-02-10 21:29
@rpodgorny, implemented. @andrej, fixed.
andrej commented on 2018-02-10 09:24
Thanks for maintaining this package.
At the moment there’s an urgent problem:
authdaemond
will not start due to this systemd bug: https://github.com/systemd/systemd/issues/8085I’m not sure what the best solution would be, so I’m just dropping a note here, to make troubleshooting easier for others. The only workaround seems to be to start the Courier stuff manually until systemd gets fixed. This affects also
courier-imapd
.courier-courierfilter
works fine though.rpodgorny commented on 2018-02-04 13:26
please consider using systemd-sysusers instead of the .install trickery:
u courier 72 - -
g courier 72 - -
...thanks! (sorry for the formatting)
runnytu commented on 2017-08-16 18:53
@midgard, Fixed.
midgard commented on 2017-08-14 13:42
Hi, in PKGBUILD you should quote variables that may contain spaces, in particular $srcdir, $pkgdir and $distfile on lines 32, 57-61, 63, 65 (thrice), 69 and 71. Otherwise the build fails when there are directories that contain spaces. (Learn more at https://unix.stackexchange.com/a/131767)
Prefix variables you introduce (distfile on line 61 of PKGBUILD) with _ to avoid interference with makepkg internals. Alternatively, because they are only used within one function, you can just declare them local instead:
local distfile
for distfile in ...
Nitpicks: spaces and tabs are used inconsistently as indentation in the PKGBUILD, which is a bit ugly. Best to put the checksums on multiple lines to avoid annoying super long lines.
See https://wiki.archlinux.org/index.php/Arch_packaging_standards.
All the best, and thanks for packaging for the AUR!
midgard commented on 2017-08-14 13:33
Hi runnytu, it's not necessary to comment each time you submit a new release. Interested people have enough options to follow packages they want to follow.
See the second item of https://wiki.archlinux.org/index.php/Arch_User_Repository#Maintaining_packages
Cheers