Displaying 3 results from an estimated 3 matches for "have_systemd".
2010 Oct 20
1
add basic systemd support to dovecot
Hi all,
In the last days, I've been trying to add support for systemd[1]
socket activation to dovecot. The basic idea is that systemd takes
care of opening the sockets needed by dovecot to communicate with
external processes, and when a connection happens on one of these
sockets, systemd spawns dovecot, and then dovecot uses these sockets
instead of creating its own sockets. The main reason
2013 May 27
2
Dovecot 2.2 build rpm on Centos6
...#define PACKAGE_VERSION "2.2.2"
| #define PACKAGE_STRING "Dovecot 2.2.2"
| #define PACKAGE_BUGREPORT "dovecot at dovecot.org"
| #define DOVECOT_ABI_VERSION "2.2.ABIv2(2.2.2)"
| #define PACKAGE "dovecot"
| #define VERSION "2.2.2"
| #define HAVE_SYSTEMD /**/
| /* end confdefs.h. */
|
| int
| main ()
| {
|
| ;
| return 0;
| }
configure:4307: error: in `/home/builder/rpmbuild/BUILD/dovecot-2.2.2':
configure:4310: error: C compiler cannot create executables
See `config.log' for more details.
## ---------------- ##
## Cache variables....
2011 Apr 20
2
possible bug leading to lmtp crashes
...(objectClass=person)
in dovecot.conf:
import_environment = TZ KRB5CCNAME=/etc/dovecot/krb5.cc
With that do any of the following lines from the referenced hg rev set
mean I am missing anything on my import_environment variable? Or is it
all good?
10.15 +/* <settings checks> */
10.16 +#ifdef HAVE_SYSTEMD
10.17 +# define ENV_SYSTEMD " LISTEN_PID LISTEN_FDS"
10.18 +#else
10.19 +# define ENV_SYSTEMD ""
10.20 +#endif
10.21 +#ifdef DEBUG
10.22 +# define ENV_GDB " GDB"
10.23 +#else
10.24 +# define ENV_GDB ""
10.25 +#endif
10.26 +/* </settings checks> */
10.27...