Install Cyrus-SASL
Install Cyrus-SASL
#cd /root/postfixrocks
#tar -zxvf cyrus-sasl-2.1.23.tar.gz
#cd cyrus-sasl-2.1.23
#./configure --enable-anon --enable-plain --enable-login \
--enable-sql --disable-krb4 --disable-otp --disable-cram \
--disable-digest --without-pam --without-saslauthd \
--without-pwcheck --with-plugindir=/usr/lib64/sasl2
#make && make install
Trouble on make and make install :
******************************************************** *
WARNING: * Plugins are being installed into /usr/local/lib/sasl2, * but the library will look for them in /usr/lib64/sasl2. *
You need to make sure that the plugins will eventually * be in /usr/lib64/sasl2 --
the easiest way is to make a * symbolic link from /usr/lib64/sasl2 to /usr/local/lib/sasl2, * but this may not be appropriate for your site, so this * installation procedure won't do it for you.
* * If you don't want to do this for some reason, you can * set the location where the library will look for plugins * by setting the environment variable SASL_PATH to the path * the library should use. ********************************************************
Solution To Fixed This Problem
#cd /root/postfixrocks/cyrus-sasl-2.1.23
#cd /usr/lib64/
#mv sasl2 sasl2.ori
#ln -s /usr/local/lib/sasl2 /usr/lib64/sasl2
#cd /usr/lib
#mv sasl2 sasl2.ori
#ln -s /usr/local/lib/sasl2 /usr/lib/sasl2