| Installing SquirrelMail on EnGarde Secure Linux HOWTO | ||
|---|---|---|
| Prev | Chapter 3. Setting up IMAP for SquirrelMail | Next |
Next, configure standard IMAP to listen on the local interface "127.0.0.1". First check if IMAP is currently running by
# chkconfig --list | grep imap
simap: on
The above shows that secure imap is running, this is NOT what we need, which is plain imap (non-SSL mode). To enable plain imap:
# cd /etc/xinetd.d
# cp -p simap imap
Edit the imap file using a text editor such as 'vi' and perform the following changes.
change "service simap" to "service imap"
change "interface = XXX.XXX.XXX.XXX" to "interface = 127.0.0.1"
If this lines exists "disable = yes" put a "#" at the start of the line
Now we want to configure the system so this starts at bootup. Run the following command.
# chkconfig --add xinetd
Now verify that imap is in the "on" bootup state.
# chkconfig --list | grep imap
simap: on
imap: on