I&#39;ve been in the process of moving my pop3 proxy over to the dovecot proxy. I have a ton of users using pop3 still, and am seeing these errors&nbsp; popup within a minute or so of the connection to the database:<br><br>Password query failed: Not connected to database
<br><br>Eventually the auth-worker will reconnect to the database and things will go on normal for another minute or two, then the same issue occurs.&nbsp; I&#39;m runing MySQL 5.0.22 on FreeBSD 6.1.&nbsp; I upgraded to 5.0.27, however I started getting the: &quot;Password query failed: Commands out of sync; you can&#39;t run this command now&quot; error instead.&nbsp; So I downgraded until I could figure out this issue first.
<br><br>I&#39;ve tried connecting to localhost, /tmp/mysql.sock, and a remote server and all exhibit the same problem. The MySQL idle timeouts shouldnt come into play because I&#39;m constantly having users check their accounts.
<br><br>Any insights will be useful,<br><br>Thanks!<br><br>Cassidy<br><br><br>### Part of my dovecot.conf that might be useful:<br>&nbsp; login_process_per_connection = yes<br>&nbsp; login_processes_count = 3<br>&nbsp; login_max_processes_count = 512
<br>&nbsp;<br>&nbsp; auth_verbose = yes<br>&nbsp; auth_debug = yes<br>&nbsp; auth_debug_passwords =yes<br>&nbsp; auth_worker_max_count = 400<br><br>&nbsp; auth <a href="http://mail.infowest.com">mail.infowest.com</a> {&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; mechanisms = plain<br>
<br>&nbsp;&nbsp;&nbsp; passdb sql {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; args = /usr/local/etc/dovecot-sql.conf<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; userdb static {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; args = uid=5000 gid=5000 home=/dev/null<br>&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; user = root<br>&nbsp;&nbsp;&nbsp; # Number of authentication processes to create
<br>&nbsp;&nbsp;&nbsp; count = 10<br><br><br>## dovecot-sql.conf<br>driver = mysql<br>connect = host=/tmp/mysql.sock dbname=iwmailsystem user=imap_proxy password=***** client_flags=65536<br>default_pass_scheme = MD5<br>password_query = CALL pop_auth(&#39;%u&#39;,&#39;%l&#39;,&#39;%r&#39;)
<br><br>