1 2 3 4 5 6 |
> wget ftp://ftp.qualcomm.com/eudora/servers/unix/popper/qpopper4.0.5.tar.gz > cd qpopper4.0.5 > ./configure --enable-specialauth > make > make install > cp /usr/local/sbin/popper /usr/sbin/popper |
Archive | Mandrake
IMAP On Mandrake Linux release 8.2 (Bluebird) for i586
1 2 3 4 |
> wget ftp://ftp.cac.washington.edu/mail/imap.tar.Z > cd imap-2002d/ > make slx > make slx SSLTYPE=none |
Sendmail On Mandrake Linux release 8.2 (Bluebird) for i586
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
1. Install latest version of Berkeley DB. > wget http://www.sleepycat.com/update/snapshot/db-4.1.25.tar.gz > tar -xvzf db-4.1.25.tar.gz > cd db-4.1.25 > cd build_unix > ../dist/configure > make > make install > edit /etc/ld.so.conf and add /usr/local/BerkeleyDB.4.1/lib to list of search paths > ldconfig 2. Setup devtools/Site/site.config.m4 define(`confMAPDEF', `-DNEWDB') define(`confINCDIRS', `-I/usr/local/BerkeleyDB.4.1/include/') define(`confLIBDIRS', `-L/usr/local/BerkeleyDB.4.1/lib/') 3. Recompile sendmail > sh Build -c 4. Install sendmail > sh Build install |