masqmail

view docs/INSTALL.agenda @ 392:c5fd796ea06e

Heavy refactoring in parts of conf.c. init_conf() parse_boolean() parse_list_file() Re-arrangement of code. parse_address_glob_list() Removed unneccessary parameter. parse_list() parse_interface(): Use strtok()/strchr() instead of doing is all by hand. Removed limitation of fixed size buffer. eat_comments() Use a state machine. eat_line_trailing() eat_spaces() read_lval() Better structured code. read_conf() read_route() Removed magic numbers. Made all list type in the config files accept pathname entries, except for `permanent_routes' and `query_routes.' for which this is impossible.
author markus schnalke <meillo@marmaro.de>
date Sat, 18 Feb 2012 18:07:55 +0100
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.