Hi,
You should start by getting the files at
http://www.logiciel-libre.org/downloads/cyrus-imap-sme-howto/smeserver-cyrus.tgzThen untar in a folder like /root/cyrus
This will provide the files needed.
The install scripts are executed as root, so no need for ftp and all... Return to my howto and refresh the page
http://www.logiciel-libre.org/downloads/cyrus-imap-sme-howto/index.htmlCopy the installation script to a file in the same folder (like /root/cyrus) and name it install.
Give execute permission to it:
chmod u+x install
Alternatively, you could also do this:
mkdir /root/cyrus
cd /root/cyrus
wget http://www.logiciel-libre.org/downloads/cyrus-imap-sme-howto/smeserver-cyrus.tgz
tar -xz --directory="." -f smeserver-cyrus.tgz
cd smeserver-cyrus
wget http://www.logiciel-libre.org/downloads/cyrus-imap-sme-howto/install-cyrus.sh
chmod u+x install-cyrus.sh
The updated (2008-08-26) script will as you for a password to set for user cyrus.
I recommend running the scripts "line by line" or "block by block" to follow what is going on. But you could run the whole script in a single shot (blindly). Since the cyrus-imap is not supported by the dev team, it might be advisable to run the installation and follow what is happening so you can know what you are doing. IMO.
After the last lines of the installation scripts
# Apply changes
signal-event email-update
a reboot is required:
signal-event post-upgrade && signal-event reboot
If you are new to putty, remember that you just need to use the clipboard by selecting the script lines, "copy to clipboard", then in the putty's window just do a right-click. This will automaticly paste it...
Phases are shown to help understand what is going on. Nothing else.
I have edited the script and made a file for it just now. So give it an other shot!
Hoping that will help you...