Hi, I have installed 1.1.2 first with ssl_disable=yes, work fine but when i set ssl_disable to no and configuring according to dovecot.org (SSL certificates) i get 'SSL support not compiled in but ssl_disable=no' CPPFLAGS=-I/opt/openssl/include LDFLAGS=-L/opt/openssl/lib ./configure make make install what am i missing? i starting with a simple dovecot.conf protocol imap { } protocol pop3 { pop3_uidl_format = %08Xu%08Xv } protocol lda { } auth default { mechanisms = plain cram-md5 passdb passwd-file { args = /etc/passwd.dovecot } } user = root }
I did'nt know that i have to install first SSL then recompile with CPPFLAGS=-I/usr/local/ssl/include LDFLAGS=-L/usr/local/ssl/lib ./configure it's ok now but the server does not accept the password There was a problem logging onto your mail server. Your User Name was rejected. Account: '10.10.10.4', Server: '10.10.10.4', Protocol: POP3, Server Response: '-ERR Plaintext authentication disallowed on non-secure connections.', Port: 110, Secure(SSL): No, Server Error: 0x800CCC90, Error Number: 0x800CCC91 i attached the dovecot.conf if anyone know? regards, ----- Original Message ---- From: Catalin Ciubotariu <ciubo67 at yahoo.com> To: dovecot at dovecot.org Sent: Wednesday, August 27, 2008 2:51:33 PM Subject: [Dovecot] compile with ssl support Hi, I have installed 1.1.2 first with ssl_disable=yes, work fine but when i set ssl_disable to no and configuring according to dovecot.org (SSL certificates) i get 'SSL support not compiled in but ssl_disable=no' CPPFLAGS=-I/opt/openssl/include LDFLAGS=-L/opt/openssl/lib ./configure make make install what am i missing? i starting with a simple dovecot.conf protocol imap { } protocol pop3 { pop3_uidl_format = %08Xu%08Xv } protocol lda { } auth default { mechanisms = plain cram-md5 passdb passwd-file { args = /etc/passwd.dovecot } } user = root } -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: dovecot.txt URL: <http://dovecot.org/pipermail/dovecot/attachments/20080827/b227b5d9/attachment-0002.txt>
Catalin Ciubotariu escreveu:> I did'nt know that i have to install first SSL then recompile with CPPFLAGS=-I/usr/local/ssl/include LDFLAGS=-L/usr/local/ssl/lib ./configure > > it's ok now but the server does not accept the password > > There was a problem logging onto your mail server. Your User Name was rejected. Account: '10.10.10.4', Server: '10.10.10.4', Protocol: POP3, Server Response: '-ERR Plaintext authentication disallowed on non-secure connections.', Port: 110, Secure(SSL): No, Server Error: 0x800CCC90, Error Number: 0x800CCC91 >Your client is not connecting with SSL. I guess that's not what you want. In dovecot.conf, enable the protocol pop3s (right in the beginning), and configure your clients to use SSL. The default port for POP3 over SSL is 995, if I recall correctly.
it works, thanks Eduardo! i have a question for anyone who know, can i use SSL and system passwords not the plain text file (passwd.dovecot)? it's look a little strange to me to have the password in a plain text file. regards, ----- Original Message ---- From: Eduardo M KALINOWSKI <eduardo at kalinowski.com.br> To: dovecot at dovecot.org Sent: Wednesday, August 27, 2008 7:42:43 PM Subject: Re: [Dovecot] compile with ssl support Catalin Ciubotariu escreveu:> I did'nt know that i have to install first SSL then recompile with CPPFLAGS=-I/usr/local/ssl/include LDFLAGS=-L/usr/local/ssl/lib ./configure > > it's ok now but the server does not accept the password > > There was a problem logging onto your mail server. Your User Name was rejected. Account: '10.10.10.4', Server: '10.10.10.4', Protocol: POP3, Server Response: '-ERR Plaintext authentication disallowed on non-secure connections.', Port: 110, Secure(SSL): No, Server Error: 0x800CCC90, Error Number: 0x800CCC91 >Your client is not connecting with SSL. I guess that's not what you want. In dovecot.conf, enable the protocol pop3s (right in the beginning), and configure your clients to use SSL. The default port for POP3 over SSL is 995, if I recall correctly.