imap server

no, you have to compile / install one yourself. but there are several opensource imap servers which are really good and fairly easy to install and configure. the ones i have tested are courier-imap which i used until recently when a friend recomended dovecot saying that it was faster and possibly more secure.
 
mkwan said:
how do I test if dovecot works properly?
after you've compiled, installed it and edited the conf file you simply try to connect to it. if it works you're done. otherwise read the logs to try to figure out whats wrong.
 
sorry, I am new to this, what do I need to configure in the dovecot.conf file and I am having connection problems (connection refused problems)
 
mkwan said:
sorry, I am new to this, what do I need to configure in the dovecot.conf file and I am having connection problems (connection refused problems)

first of all if you don't want imaps you have to change the line
Code:
protocols = imap imaps
into
Code:
protocols = imap

and

Code:
ssl_disable = no
into
Code:
ssl_disable = yes

and finally
Code:
disable_plaintext_auth = no
needs to be set.

to get dovecot to authenticate using macosx users and their respective passwords the config should look like follows:
Code:
auth_mechanisms = plain
auth_userdb = passwd
auth_passdb = pam login

you might want to change
Code:
default_mail_env
so that it matches the settings of your smtp server i use
Code:
default_mail_env = maildir:/Users/%u/Maildir

finally you must create an unprivilege user with its own group with netinfo manager. preferably this user should have an uid below 500 and be called dovecot.

hope this helps a bit.
 
Back
Top