Relativ gute Anleitung zur Installation:
------------------------ cut --------------------------------
The latest version of the product can be found on
http://www.greatcircle.com/majordomo/
The latest (at the moment of publishing) gzipped version can
downloaded via the following URL:
http://www.greatcircle.com/majordom...o-1.94.5.tar.gz
Unpack the software
#~: tar xzf majordomo-1.94.5.tar.gz
#~: cd majordomo-1.94.5
Create majordomo user and group:
#~: groupadd majordomo
#~: useradd majordomo -g majordomo
#~: cat /etc/passwd | grep majordomo
read the 'majordomo' user id and group id in output, and remeber it.
#~: mkdir /usr/local/majordomo
Create temporary dir for majordomo:
#~: mkdir /usr/tmp
#~: chown majordomo:majordomo /usr/tmp
Edit the makefile
#~: vi Makefile
Change the line with PERL variable definition to
PERL = /usr/bin/perl
Change the line with W_HOME variable definition to
W_HOME = /usr/local/majordomo
Change the lines with W_USER and W_GROUP variables definition to
(below are sample value use the UID and GID remembered above):
W_USER = 1000
W_GROUP = 104
Edit the configuration file
#~: cp sample.cf majordomo.cf
#~: vi majordomo.cf
Set $whereami variable to your host name and that is enough
$whereami = "your-host.com";
Install the majordomo:
#~: make wrapper
#~: make install
#~: make install-wrapper
Check the installation:
#~: cd /usr/local/majordomo; ./wrapper config-test
------------------------ cut --------------------------------
Wenn alles beachtet wird dann funktioniert es einwandfrei. Bitte beachten, umbedingt vorher die korrekte UID und GID aus der /etc/passwd auslesen um die Datei Makefile richtig anzupassen.
I hope es hilft :P