Table of Contents

In this document (see INSTALL.html for the formatted version of this INSTALL file):

Requirements

See the README file for a general description of this library. The following software should be installed before building the Courier authentication library:

Courier-authlib uses Libtool to build shared libraries. Libtool must be installed, together with its libltdl library and its header files.

On non-Linux platforms the GNU linker is also required. Courier-authlib's build script uses some GNU linker-specific options. It's possible to manually specify the native linker's equivalent options manually, if they exist. If the native linker does not have the equivalent options, the GNU linker will have to be installed.

On the other hand, GNU make will be required in almost every case. SYSV-derived make variants (probably) will not work.

The same line of logic also applies to gcc. So, strictly speaking, only a basic C compiler, GNU make and libtool, are really needed to build courier-authlib. Still, try the following before giving up if problems occur when building this package:

  1. Install a recent version of the GNU linker
  2. Install the current version of Libtool
  3. Install the current version of gcc

Installation overview

rpm and deb packages

These are not the same packages as the ones from the distributions' repositories. These packages carry a higher internal revision level in order to prevent them from getting upgraded by the distributions' packages. This packaging exists in order to have a convenient way of updating after a release without waiting for the distributions' packages to get built.

NOTE: If a distribution package is already installed it should be removed completely before switching to the upstream version (dnf remove or apt purge). Preserve any existing configuration files, beforehand, in order to restore it after switching packages. This applies to all Courier packages. A switch to this courier-authlib package requires switching to the courier-unicode package too.

NOTE: These packages use their own, generic, installation layout that may deviate slightly from the package installation conventions preferred by the distributions.

rpm

Run dnf install rpm-build if it's not installed already, then:

rpmbuild -ta courier-authlib-VERSION.tar.bz2

If this fails due to any missing dependencies, install them. This builds: the main (runtime libraries); a subpackage for each authentication module (LDAP, MySQL, etc...); the development (link libraries, header files) package. All development libraries needed to build all authentication modules must be installed to build the rpms, but do not need to be installed at runtime unless the corresponding authentication module rpm is also installed.

This creates rpms that can be installed with "rpm -U":

deb

Run "apt install devscripts debhelper", if they're not installed already. Create an empty directory and copy/move the tarball into it:

$ mkdir tmp
$ mv courier-authlib-VERSION.tar.bz2 tmp
$ cd tmp

Unpack the tarball and cd into the unpacked subdirectory:

$ tar xvf courier-authlib-VERSION.tar.bz2
$ cd courier-authlib-VERSION

Run the courier-debuild script, which is a wrapper for debuild, and forwards its parameters to it:

$ ./courier-debuild -us -uc

NOTE: the above steps must be followed strictly. The courier-debuild script expects the distributed tarball in its parent directory.

This eventually produces a deb subdirectory with .deb packages that can be installed with "dpkg -i":

$ DEBGCC=10 ./courier-debuild -us -uc

Setting the DEBGCC environment variable selects a non-default gcc version.

NOTE: all Courier packages should be built using the same version of gcc.

Maintainer Mode (see README in the git repository to set up)

make rpm or make deb, as appropriate, will:

  1. Increment an internal release number.

  2. Run make dist.

  3. Proceed and build a new release, creating the native packages in the rpm or deb subdirectory.

  4. Execute either $HOME/bin/rpmrepos.sh or $HOME/bin/debrepos.sh. This can be a script that does nothing, or it's intended to be the maintainer's script that pushes out the packages to a repository.

Manual installation

The following sequence of commands should be sufficient to install courier-authlib in most cases:

./configure [options] [variable=value]*...
make
make install
make install-configure

NOTE: On the BSD family, GNU make is usually the 'gmake' command. Use the 'gmake' command, instead of 'make'.

The 'make install-configure' command is required; it installs and updates the configuration files; this command must be executed when installing courier-authlib for the first time, and when upgrading from an older version.

Configuration options

The configure script takes the usual autoconf options: --prefix, --bindir, and the rest of the usual toolchain options. The default installation directories should be sufficient, though.

DO NOT USE the --disable-static, or --enable-static=no option. Both static and shared library options must be enabled for courier-authlib to build properly (but see "Post-installation cleanup" below).

--without-stdheaderdir

The default configuration installs development files in /usr/local/include (see "What gets installed", below). This directory is usually in the compiler's search path for header files. This option must be specified if the compiler does NOT search for header files in /usr/local/include by default.

This option must also be specified if other configuration options (such as --prefix or --includedir) specify a different installation directory, and the new directory is also not searched by the compiler, by default

--with-mailuser=userid, --with-mailgroup=groupid

"userid" is a reserved system username, "groupid" is a reserved system groupname. These two options should be used before installing Courier for the first time. These options are not required before installing Courier-IMAP or SqWebMail.

These options specify the user/group that will own the configuration files, and the socket that authentication daemon process listens on. This is a key part of Courier's security model.

These options should not be necessary if upgrading from an earlier version of Courier and/or this authentication library. The default userid and groupid are computed as follows:

When installing Courier authentication library for the first time, it is highly recommended to create a "courier" userid and groupid, so that specifying these options will not be necessary.

VARIABLE=value

Environment variables may be set either before running the configure script, or by providing the environment variables as parameters to the configure script. Example:

./configure --with-mailuser=mail --with-mailgroup=mail \
     CC=gcc-10 CXX=g++-10 LDFLAGS=-L/opt/fsf/lib \
     MAKE=gmake

The CC and CXX environment variables specify the C compiler that will be used to compile the authentication library. LDFLAGS specifies additiona linker flags, etc...

Dependencies

On a minimum, bare-bones system, the Courier authentication library builds support for garden-variety authentication against system accounts (from the system's password file, /etc/passwd).

If the configure script detects that certain optional software components are installed, additional authentication modules will be built and installed. This chapter describes what needs to be installed in order to build the optional authentication modules.

NOTE: In all cases, it is not sufficient to install the runtime support libraries for the following components. In order to build the authentication modules the DEVELOPMENT LIBRARIES for the following software packages must be installed. The development libraries are usually a separate package, that must be installed in addition to the package that adds alleged support for the following software libraries.

What gets installed

Toolchain options to the configure script may be used to select alternative installation directories for these components.

Post-installation cleanup

On most systems, after running make install-configure all static libraries can be removed from the /usr/local/lib/courier-authlib directory:

rm -rf /usr/local/lib/courier-authlib/*.a

The Courier authentication library uses only the shared libraries. The static versions of the shared libraries are not used. They are installed by default, via libtool, but are not really needed. On most platforms the libtool files, "*.la" can also be removed. Do not remove any soft links.

For more information

Following "make install", see the README_authlib.html file for details on setting up the authentication modules. The README_authlib.html file gets assembled as part of the build process.

Before proceding to install any other packages, be sure to verify that the authentication library is working by running the authtest command, as documented in the README_authlib.html file.

Starting and stopping the authentication daemon

Arrangements must be made to run the courier-authlib.sysvinit script with "start" and "stop" parameters at system startup and shutdown. make install does not install this script from the source directory, it needs to be installed manually.

Guidelines for using other package managers

The recommended way to build packages can be inferred from the RPM build script. It is summarized here for convenience:

Now, create the installable packages, as follows: