- (make-remote-mailbox-server [#:name NAME] [#:tcp-port-no TCP-PORT-NO] [#:listen LISTEN] [#:request-limit REQUEST-LIMIT] [#:auto-create? AUTO-CREATE?] [#:debug DEBUG])procedure
Creates and returns a remote-mailbox-server. Uses make-tcp-server to create a server procedure. The server threads spawned by this procedure are continuously processing remote mailbox sends until the connection is closed.)
- NAME
- symbol ; Defaults to rtmbsv#.
- TCP-PORT-NO
- fixnum in [0 65535] or {{#f}} ; Defaults to (remote-mailbox-default-tcp-port-no)
- LISTEN
- procedure ; Defaults to (remote-mailbox-default-listen)
- REQUEST-LIMIT
- fixnum ; The tcp-server upper limit for currently executing requests. Defaults to 10000.
- AUTO-CREATE?
- boolean ; Automatically create local-mailbox. Defaults to #t
- DEBUG
- (or false string) ; Print tcp diagnostics with DEBUG prefix when true. Defaults to #f