From 67b7aa73f7321aa6fe6bf5013b533fb410dd20ea Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Tue, 06 Oct 2009 09:33:49 -0400 Subject: [PATCH] Fixed: FS#897 - Adjust debian installation instructions to match perfect setup tutorial. --- docs/INSTALL_DEBIAN_5.0.txt | 37 +++++++++++++++++++++++++++++++++++-- 1 files changed, 35 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL_DEBIAN_5.0.txt b/docs/INSTALL_DEBIAN_5.0.txt index dad7e2b..e6e27c1 100644 --- a/docs/INSTALL_DEBIAN_5.0.txt +++ b/docs/INSTALL_DEBIAN_5.0.txt @@ -57,9 +57,13 @@ vi /etc/mysql/my.cnf -# and comment out the line +# and change the line: bind-address = 127.0.0.1 + +to: + +#bind-address = 127.0.0.1 # then restart mysql @@ -69,6 +73,35 @@ apt-get install amavisd-new spamassassin clamav clamav-daemon zoo unzip bzip2 arj nomarch lzop cabextract apt-listchanges libnet-ldap-perl libauthen-sasl-perl clamav-docs daemon libio-string-perl libio-socket-ssl-perl libnet-ident-perl zip libnet-dns-perl +# During the installation, the SSL certificates for IMAP-SSL and POP3-SSL are created with the hostname localhost. To change this to the correct hostname (server1.example.com in this tutorial), delete the certificates... + +cd /etc/courier +rm -f /etc/courier/imapd.pem +rm -f /etc/courier/pop3d.pem + +# ... and modify the following two files; replace CN=localhost with CN=server1.example.com (you can also modify the other values, if necessary): + +vi /etc/courier/imapd.cnf + +[...] +CN=server1.example.com +[...] + +vi /etc/courier/pop3d.cnf + +[...] +CN=server1.example.com +[...] + +# Then recreate the certificates... + +mkimapdcert +mkpop3dcert + +# ... and restart Courier-IMAP-SSL and Courier-POP3-SSL: + +/etc/init.d/courier-imap-ssl restart +/etc/init.d/courier-pop-ssl restart 3) Install apache, PHP5, phpmyadmin, better fastCGI, suexec, Pear and mcrypt (1 line!): @@ -226,7 +259,7 @@ apt-get install vlogger webalizer -Change the following line in /etc/webalizer.conf from +Change the following line in /etc/webalizer/webalizer.conf from #Incremental no -- Gitblit v1.9.1