X-Spam-Check-By: sourceware.org Message-ID: <441506D6.2030101@gohilton.com> Date: Sun, 12 Mar 2006 22:44:54 -0700 From: Kevin Hilton User-Agent: Thunderbird 1.5 (Windows/20051201) MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Using uw-imapd over secure 995 with cygwin -- Cant seem to get it working Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Thanks to Corinna's help and others, I actually added the following 2 lines to the services file (found either using cygwin at /etc/services or c:\windows\system32\drives\etc\services): imaps 993/tcp imaps #Secure Internet Message Access Protocol pop3s 995/tcp pop3s #Secure Post Office Protocol - Version 3 In addition 2 lines were added to the inetd.conf file: pop3s stream tcp nowait root /usr/sbin/uw-ipop3d imaps stream tcp nowait root /usr/sbin/uw-imapd This produced the following: netstat -an | grep 993 or 995 TCP 0.0.0.0:993 0.0.0.0:0 LISTENING TCP 0.0.0.0:995 0.0.0.0:0 LISTENING Inetd service was restarted. My problem however still stems in that Thunderbird is still not able to connect via the port 993 to the secure IMAP server. Thunderbird gives me an error that I may have exceeced the number of connections to the server, and may want to try reducing the number of cached connections to the server. Ive tried possibly reducing the number of cached connections from 5 to 3 and then 1, but I was still unsuccessful. For troubleshooting, I telneted to localhost on port 993, was connected, however I received the following: $ telnet localhost 993 Trying 127.0.0.1... Connected to marge. Escape character is '^]'. Connection closed by foreign host. Possibly a problem here since the connection was closed automatically. I also wanted to verify that I had set up the SSL certificates appropriately. Certificates were created via the following and placed in the /usr/ssl/certs directory (as instructed in the user manual for cygwin configuration): openssl req -new -days 3999 -x509 -nodes -out imapd.pem -keyout imapd.pem openssl req -new -days 3999 -x509 -nodes -out ipopd.pem -keyout ipopd.pem Symbolic hash file links were also created to each of these files. Must be going doing something wrong. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/