[Dovecot] imap-login - where does the user get filled in from?
Sorry to ask such a basic question, but I finally got some major hurdles working for imaps on port 993 and Im getting the following when I try to connect from my iphone:
imap-login: Disconnected (no auth attempts in 60 secs): user=<>, rip=192.168.1.1, lip=192.168.1.22, TLS handshaking: Disconnected
Im using SQL and SSL over 993. I cant seem to find where my user comes from that its blank? Your help is appreciated.
Thanks
/mf/home/jeep/shell/.signature
Am 06.12.2012 23:25, schrieb Jeff Lacki:
Sorry to ask such a basic question, but I finally got some major hurdles working for imaps on port 993 and Im getting the following when I try to connect from my iphone:
imap-login: Disconnected (no auth attempts in 60 secs): user=<>, rip=192.168.1.1, lip=192.168.1.22, TLS handshaking: Disconnected
Im using SQL and SSL over 993. I cant seem to find where my user comes from that its blank?
the client disconnects due TLS/SSL handshake at this time no user could be known at all maybe a bad connection
Reindl Harald h.reindl@thelounge.net wrote:
Am 06.12.2012 23:25, schrieb Jeff Lacki:
Sorry to ask such a basic question, but I finally got some major hurdles working for imaps on port 993 and Im getting the following when I try to connect from my iphone:
imap-login: Disconnected (no auth attempts in 60 secs): user=<>, rip=192.168.1.1, lip=192.168.1.22, TLS handshaking: Disconnected
Im using SQL and SSL over 993. I cant seem to find where my user comes from that its blank?
the client disconnects due TLS/SSL handshake at this time no user could be known at all maybe a bad connection
Odd, its coming from my iphone and the user is filled out. Ill try deleting it on the phone and re-trying.
Thanks
/mf/home/jeep/shell/.signature
Am 06.12.2012 23:45, schrieb Jeff Lacki:
Reindl Harald h.reindl@thelounge.net wrote:
Am 06.12.2012 23:25, schrieb Jeff Lacki:
Sorry to ask such a basic question, but I finally got some major hurdles working for imaps on port 993 and Im getting the following when I try to connect from my iphone:
imap-login: Disconnected (no auth attempts in 60 secs): user=<>, rip=192.168.1.1, lip=192.168.1.22, TLS handshaking: Disconnected
Im using SQL and SSL over 993. I cant seem to find where my user comes from that its blank?
the client disconnects due TLS/SSL handshake at this time no user could be known at all maybe a bad connection
Odd, its coming from my iphone and the user is filled out.
that does not matter in any way
you refused to understand that if a connection is closed for whateever reason due ssl handshake there is no data information exchanged between client and server
Ill try > deleting it on the phone and re-trying
check the auth-mech configured on the phone and which methods your server configuration supports
long before the login the server offers auth methods and if the client is configured to a unsupported it closes the connection and apple devices are really braindead in this context
Reindl Harald h.reindl@thelounge.net wrote:
check the auth-mech configured on the phone and which methods your server configuration supports
long before the login the server offers auth methods and if the client is configured to a unsupported it closes the connection and apple devices are really braindead in this context
I have dovecot setup for:
auth_mechanisms = plain login
The iphone offers the following:
- password
- Apple Token
- MD5 Challenge-Response
- NTLM
- HTTP MD5 Digest
Im set for password, which I assumed was plaintext which should match my plain mechanism. Im using an AES_DECRYPT in my SQL statement to get the password however, maybe this is part of my issue:
password_query = SELECT AES_DECRYPT(password, 'xxx') AS password,
userid AS user
FROM users WHERE userid='%u' AND AES_DECRYPT(password, 'xxx')='%w'
This is the first time Im attempting to use SQL with SSL.
/mf/home/jeep/shell/.signature
At 2PM -0800 on 6/12/12 Jeff Lacki wrote:
Sorry to ask such a basic question, but I finally got some major hurdles working for imaps on port 993 and Im getting the following when I try to connect from my iphone:
imap-login: Disconnected (no auth attempts in 60 secs): user=<>, rip=192.168.1.1, lip=192.168.1.22, TLS handshaking: Disconnected
Just to be sure: you have replaced the self-signed certificate Dovecot installs with one which is signed by a public CA?
Ben
participants (3)
-
Ben Morrow
-
jeep@rahul.net
-
Reindl Harald