Op deze pagina vindt u een aantal problemen waarvoor Suares & Co oplossingen zocht.
Technology
On this page some solutions we found for some uncommon issues.
Removing sendmail dependencies from spamass-milter on Ubuntu Dapper when using postfix
06-08-2008
Removing sendmail dependencies from spamass-milter on Ubuntu Dapper when using postfix
To use spamass-milter package with postfix instead of sendmail on Ubuntu 6.06 Dapper, you need to tweak the package to not depend on sendmail (this is fixed in later versions).
What I did was:
sudo apt-get source spamass-milter
cd spamass-milter-0.3.0
# edit debian/control
# change the Depends line to: Depends: ${shlibs:Depends}, spamc
# change the Recommends line
# to: Recommends: spamassassin, sendmail|postfix
## debchange -i --nmu # this command didn't work for me so i skipped it
sudo apt-get build-dep spamass-milter
dpkg-buildpackage
The result was a package called spamass-milter_0.3.0-2_i386.deb
which I installed with dpkg -i
sudo dpkg -i spamass-milter_0.3.0-2_i386.deb
Now the irritating dependency on sendmail was removed and I could do normal upgrades again.
See also: http://www.debian-administration.org/articles/556 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=378460