David C. Rankin, J.D.,P.E. wrote:
On Sunday 10 May 2009 11:00:18 Baho Utot wrote:
Anyone got a simple configuration file ( dovecot.conf ) that has simple auth login? like clear text?
thanks
Baho,
Here is a simple one I use (comments removed):
00:28 nirvana:~> nc /etc/dovecot/dovecot.conf protocols = imap imaps ssl_disable = no mail_location = mbox:~/Mail:INBOX=/var/spool/mail/%u protocol imap { mail_plugin_dir = /usr/lib64/dovecot/modules/imap }
protocol pop3 { mail_plugin_dir = /usr/lib64/dovecot/modules/pop3 } protocol managesieve { sieve=~/.dovecot.sieve sieve_storage=~/sieve } protocol lda { postmaster_address = postmaster@example.com mail_plugin_dir = /usr/lib64/dovecot/modules/lda } auth default { mechanisms = plain passdb pam { } userdb passwd { } user = root } dict { } plugin { }
OK thanks