Difference between revisions of "Courier Connection Refused"

From Noah.org
Jump to navigationJump to search
 
Line 1: Line 1:
 
+
The office was getting lots of connection timeouts and connection refused to the Courier IMAP server.
edit /usr/local/etc/imapd
+
The solution was to increase the max number of daemons allowed and the max per IP allowed.
 
+
Edit /usr/local/etc/imapd:
 +
<pre>
 
##NAME: MAXDAEMONS:0
 
##NAME: MAXDAEMONS:0
 
#
 
#
Line 14: Line 15:
  
 
MAXPERIP=200
 
MAXPERIP=200
 +
</pre>

Revision as of 14:54, 7 March 2007

The office was getting lots of connection timeouts and connection refused to the Courier IMAP server. The solution was to increase the max number of daemons allowed and the max per IP allowed. Edit /usr/local/etc/imapd:

##NAME: MAXDAEMONS:0
#
#  Maximum number of IMAP servers started
#

MAXDAEMONS=200

##NAME: MAXPERIP=50
#
#  Maximum number of connections to accept from the same IP address

MAXPERIP=200