> -----Original Message-----
> From: Ben Beuchler [mailto:[EMAIL PROTECTED]]
> If you review the man page for qmail-smtpd, it will explain 
> the usage of
> "concurrencyremote" which should solve your problem.

Ben, that doesn't make sense.

First of all, from man qmail-control

              concurrencylocal    10                 qmail-send
              concurrencyremote   20                 qmail-send

these files are controlled by qmail-send

Secondly, concurrency of qmail-smtpd is configured by
whatever-the-hay-starts-qmail-smtpd, in my system that's tcpserver.  From
tcpserver's man page:

OPTIONS
       -climit
              Do  not handle more than limit simultaneous connec­
              tions.  If there are limit simultaneous  copies  of
              program  running, defer acceptance of a new connec­
              tion until one copy finishes.  limit must be a pos­
              itive integer.  Default: 40.


So I try to look up the error code in netscape.  From the source online I
found these POP3 codes, below.  Dale - can you identify which error message
it is?  From that we can track down when its generated, and see why it might
be generated.

David


473 /* #define MK_POP3_SERVER_ERROR            -311  generic pop3 error code
*/
474 ResDef(MK_POP3_SERVER_ERROR,        -311,
475 "An error occurred with the POP3 mail server.\n\
476 You should contact the administrator for this server\n\
477 or try again later.")
478 
479 /* #define MK_POP3_USERNAME_UNDEFINED      -312  no username defined */
480 ResDef(MK_POP3_USERNAME_UNDEFINED,  -312,
481 MOZ_NAME_BRAND" is unable to use the mail server because\n\
482 you have not provided a username.  Please provide\n\
483 one in the preferences and try again")
484 
485 /* #define MK_POP3_PASSWORD_UNDEFINED      -313  no password defined */
486 ResDef(MK_POP3_PASSWORD_UNDEFINED,  -313,
487 "Error getting mail password.")
488 
489 /* #define MK_POP3_USERNAME_FAILURE         -314  failure in USER step
*/
490 ResDef(MK_POP3_USERNAME_FAILURE,        -314,
491 "An error occurred while sending your user name to the mail server.\n\
492 You should contact the administrator for this server\n\
493 or try again later.")
494 
495 /* #define MK_POP3_PASSWORD_FAILURE         -315  failure in PASS step
*/
496 ResDef(MK_POP3_PASSWORD_FAILURE,        -315,
497 "An error occurred while sending your password to the mail server.\n\
498 You should contact the administrator for this server\n\
499 or try again later.")
500 
501 /* #define MK_POP3_NO_MESSAGES              -316  no mail messages on
pop server */
502 ResDef(MK_POP3_NO_MESSAGES,             -316,
503 "There are no new messages on the server.")
504 
505 /* #define MK_POP3_LIST_FAILURE         -317  LIST command failed */
506 ResDef(MK_POP3_LIST_FAILURE,            -317,
507 "An error occurred while listing messages on the POP3 mail server.\n\
508 You should contact the administrator for this server\n\
509 or try again later.")
510 
511 /* #define MK_POP3_LAST_FAILURE         -318  LAST command failed */
512 ResDef(MK_POP3_LAST_FAILURE,            -318,
513 "An error occurred while querying the POP3 mail server for\n\
514 the last processed message.\n\
515 You should contact the administrator for this server\n\
516 or try again later.")
517 
518 
519 /* #define MK_POP3_RETR_FAILURE            -319  RETR command failed,
continues */
520 ResDef(MK_POP3_RETR_FAILURE,        -319,
521 "An error occurred while getting messages from the POP3 mail server.\n\
522 You should contact the administrator for this server\n\
523 or try again later.")
524 
525 /* #define MK_POP3_DELE_FAILURE         -320  DELE command failed */
526 ResDef(MK_POP3_DELE_FAILURE,            -320,
527 "An error occurred while removing messages from the POP3 mail server.\n\
528 You should contact the administrator for this server\n\
529 or try again later.")
530 
531 /* #define MK_POP3_OUT_OF_DISK_SPACE        -321 */
532 ResDef(MK_POP3_OUT_OF_DISK_SPACE,       -321,
533 "There isn't enough room on the local disk to download\n\
534 your mail from the POP3 mail server.  Please make room and\n\
535 try again.  (The `Empty Trash' and `Compress This Folder'\n\
536 commands may recover some space.)")
537 
538 /* #define MK_POP3_MESSAGE_WRITE_ERROR  -322 */
539 ResDef(MK_POP3_MESSAGE_WRITE_ERROR, -322,
540 "An error occurred while saving mail messages.")

Reply via email to