User Comments

Currently, the server takes all configuration commands from the command line. In time there will likely be a config file option as well. To run the server:

/path/to/jserver-c <port> <unix_sock> <log_level> [log_file]

port : TCP port the jabber server will listen on
unix_sock : UNIX domain socket file where the server whould listen for UNIX socket connections
log_level : 1-4 (ERROR, WARN, INFO, DEBUG)
log_file : Logs go here. If none is specified, logs go to stderr.

Chop Chop will eventually have automatic daemonization for process backgrounding. For the time being, an option is to run jserver-c with the nohup option:

nohup /path/to/jserver-c ...options... &