masqmail-0.2

view docs/INSTALL.agenda @ 179:ec3fe72a3e99

Fixed an important bug with folded headers! g_strconcat() returns a *copy* of the string, but hdr->value still pointed to the old header (which probably was a memory leak, too). If the folded part had been quite small it was likely that the new string was at the same position as the old one, thus making everything go well. But if pretty long headers were folded several times it was likely that the new string was allocated somewhere else in memory, thus breaking things. In result mails to lots of recipients (folded header) were frequently only sent to the ones in the first line. Sorry for the inconvenience.
author meillo@marmaro.de
date Fri, 03 Jun 2011 09:52:17 +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.