linux poison RSS
linux poison Email

QuickStart - IMAP/POP server configuration on OpenSuSe

Dovecot is an IMAP server whose major goals are security and extreme reliability. It uses index files to optimally store the mailbox state, which makes it very fast even with huge mailboxes. Indexes won't prevent external mailbox updates, so Dovecot is still fully compatible with standard Maildir and mbox formats. There's also a fully featured POP3 server included.

Installation: Use "1-click" installer to install dovecot
OpenSuse 11.1 - here
OpenSuse 11.0 - here

Configuration:
To configure dovecot, you edit the file /etc/dovecot/dovecot.conf.

IMAP and POP3. POP3 is useful when e-mail is checked from only one computer, and is best for people who download their email, and then work offline. IMAP is the better choice when you would like to check your mail from multiple computers, at work and home, for example. IMAP has the added benefit of accessing folders on the server, allowing you to organize your e-mail, and access it from anywhere.

IMAPS and POP3S are more secure than the simple IMAP and POP3 because they use TLS encryption to connect.

Once you have chosen, amend the following line in the file /etc/dovecot/dovecot.conf:

protocols = pop3 pop3s imap imaps

This enables those protocols when dovecot is started.

Start dovecot: /etc/init.d/dovecot start

To check that it is running, type the command ps -A|grep dovecot. You should see the dovecot service running. If you have enabled imap, or pop3, you can also try to log in with the commands telnet localhost pop3 or telnet localhost imap. If you see something like the following, the installation has been successful.
poison:# telnet localhost imap
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
* OK Dovecot ready.
This is a very simple configuration of dovecot, check the site to know more about some detail configuration.


1 comments:

Anonymous said...

Why all the typing?
I thought it was a GUI???

Post a Comment

Related Posts with Thumbnails