masqmail-0.2

view docs/INSTALL.agenda @ 72:ad034b57f3b2

fixed Debian bug 536060 (log files are closed after SIGHUP receival) Explanation: When run in daemon mode, first the log files are opened. They get assigned to the file descriptors 3 and 4 usually. Then std{in,out,err} are closed. When SIGHUP comes in, all open files are closes and masqmail reexecutes itself. The new masqmail instance opens the log files at fd 0 and 1 now, but std{in,out,err} are closed afterwards, thus the log files are closed. The fix is to close the log files before std{in,out,err} are closed, in case the log files have higher fds. After std{in,out,err} were closed, the log files get opened again, now. See also: http://bugs.debian.org/536060
author meillo@marmaro.de
date Wed, 16 Jun 2010 10:32:20 +0200
parents 08114f7dcc23
children
line source
2 prerequesites:
3 --------------
4 cp /usr/lib/glib-config /usr/mipsel-linux/bin
5 and apply this patch:
7 3c3
8 < prefix=/usr
9 ---
10 > prefix=/usr/mipsel-linux/
13 compile
14 -------
15 export CONFIG_SITE=./agenda-config.site
17 ./configure --prefix=/usr/local/ --with-spooldir=/flash/spool/masqmail/ --with-glib-prefix=/usr/mipsel-linux/ --disable-smtp-server --disable-resolver --with-group=mail --disable-debug --enable-auth
18 make
20 mipsel-linux-strip --remove-section=.comment --remove-section=.note --strip-unneeded src/masqmail
22 install
23 -------
25 # Become root and do:
26 make DESTDIR=/tmp/agenda-masqmail/ install
28 # make the configuration directory writable for user mail
29 # (this is needed for sqilconf)
30 chown mail.mail /tmp/agenda-masqmail/etc/masqmail/
31 chmod g+rw /tmp/agenda-masqmail/etc/masqmail/
33 # delete man pages and unneeded binaries:
34 rm -rf /tmp/agenda-masqmail/usr/local/man/ /tmp/agenda-masqmail/usr/local/bin/
36 You can now rsync the files you need to your agenda from DESTDIR.