]> Cypherpunks.ru repositories - nncp.git/blobdiff - doc/cfg.texi
Document onlinedeadline
[nncp.git] / doc / cfg.texi
index 3f114c52bbc520719402139a3586db81d021847e..e930e27a92f96878056bc7a87a8fec87c940c0a7 100644 (file)
@@ -1,4 +1,116 @@
 @node Configuration
 @unnumbered Configuration file
 
-TODO.
+Example YAML configuration file:
+
+@verbatim
+spool: /var/spool/nncp
+log: /var/spool/nncp/log
+notify:
+  file:
+    from: nncp@localhost
+    to: user+file@example.com
+  freq:
+    from: nncp@localhost
+    to: user+freq@example.com
+self:
+  id: TIJQL...2NGIA
+  exchpub: CYVGQ...PSEWQ
+  exchprv: 65PUY...MPZ3Q
+  signpub: 2NMVC...CMH5Q
+  signprv: 555JD...RGD6Y
+  noiseprv: D62XU...NKYPA
+  noisepub: KIBKK...ESM7Q
+neigh:
+  self:
+    id: TIJQL...2NGIA
+    exchpub: CYVGQ...PSEWQ
+    signpub: 2NMVC...CMH5Q
+    noisepub: KIBKK...ESM7Q
+    sendmail: [/usr/sbin/sendmail]
+  alice:
+    id: XJZBK...65IJQ
+    exchpub: MJACJ...FAI6A
+    signpub: T4AFC...N2FRQ
+    noisepub: UBM5K...VI42A
+    sendmail: ["/bin/sh", "-c", "false"]
+    incoming: /home/alice/incoming
+    onlinedeadline: 3600
+    addrs:
+      lan: "[fe80::1234%igb0]:5400"
+      internet: alice.com:3389
+  bob:
+    id: 2IZNP...UYGYA
+    exchpub: WFLMZ...B7NHA
+    signpub: GTGXG...IE3OA
+    sendmail: [/usr/sbin/sendmail]
+    freq: /home/bob/pub
+    via: [alice]
+@end verbatim
+
+@strong{spool} field contains an absolute path to @ref{Spool, spool}
+directory. @strong{log} field contains an absolute path to @ref{Log,
+log} file.
+
+@strong{notify} section contains notification settings for successfully
+tossed file and freq packets. Corresponding @strong{from} and
+@strong{to} fields will substituted in notification email message.
+@emph{neigh/self/sendmail} will be used as a local mailer. You can omit
+either of those two @emph{from}/@emph{to} sections to omit corresponding
+notifications, or the whole section at once.
+
+@strong{self} section contains our node's private keypairs.
+@strong{exch*} and @strong{sign*} are used during @ref{Encrypted,
+encrypted} packet creation. @strong{noise*} are used during @ref{Sync,
+synchronization protocol} working in @ref{nncp-call}/@ref{nncp-daemon}.
+
+@strong{neigh} section contains all known neighbours information. It
+always has @strong{self} neighbour that is copy of our node's public
+data (public keys). It is useful for copy-paste sharing with your
+friends. Each section's key is a human-readable name of the neighbour.
+
+Except for @emph{id}, @emph{exchpub} and @emph{signpub} each neighbour
+node has the following fields:
+
+@table @strong
+
+@item noisepub
+If present, then node can be online called using @ref{Sync,
+synchronization protocol}. Contains authentication public key.
+
+@item sendmail
+An array containing path to executable and its command line arguments
+that is called for mail sending.
+
+@item incoming
+Full path to directory where all file uploads will be saved. May be
+omitted to forbid file uploading on that node.
+
+@item freq
+Full path to directory from where file requests will queue files for
+transmission. May be omitted to forbid freqing from that node.
+
+@item via
+An array of node identifiers that will be used as a relay to that node.
+For example @verb{|[foo,bar]|} means that packet can reach current node
+by transitioning through @emph{foo} and then @emph{bar} nodes. May be
+omitted if direct connection exists and no relaying is required.
+
+@item addrs
+Dictionary containing known network addresses of the node. Each key is
+human-readable name of the link/address. Values are @verb{|addr:port|}
+pairs pointing to @ref{nncp-daemon}'s listening instance. May be omitted
+if either no direct connection exists, or @ref{nncp-call} is used with
+forced address specifying.
+
+@anchor{Onlinedeadline}
+@item onlinedeadline
+Online connection deadline of node inactivity in seconds. It is the time
+connection considered dead after not receiving/sending any packets and
+node must disconnect. By default it is set to 10 seconds -- that means
+that disconnecting after 10 seconds when no packets received and
+transmitted. This can be set to rather high values to keep connection
+alive (to reduce handshake overhead and delays), wait for appearing
+packets ready to send and notifying remote side about their appearance.
+
+@end table