]> Cypherpunks.ru repositories - nncp.git/blob - doc/news.texi
self section is optional in nncp-cfgdir
[nncp.git] / doc / news.texi
1 @node News
2 @unnumbered News
3
4 See also this page @ref{Новости, on russian}.
5
6 @node Release 8_1_0
7 @section Release 8.1.0
8 @itemize
9
10 @item
11 @command{nncp-cfgdir} does not require @code{self} section existence in
12 configuration file.
13
14 @end itemize
15
16 @node Release 8_0_2
17 @section Release 8.0.2
18 @itemize
19
20 @item
21 Fixed sending ability to areas.
22
23 @end itemize
24
25 @node Release 8_0_1
26 @section Release 8.0.1
27 @itemize
28
29 @item
30 Fixed incorrect @code{freq.chunked} value calculation. If it missed,
31 then anyway chunked transfer mode was forcefully turned on.
32
33 @item
34 Fixed incorrect full file's size calculation in @file{.nncp.meta}.
35
36 @end itemize
37
38 @node Release 8_0_0
39 @section Release 8.0.0
40 @itemize
41
42 @item
43 @strong{Incompatible} encrypted packet format change: payload and pad
44 sizes are sent in-bound in the encrypted stream. That gives ability to
45 streamingly create encrypted packets, without knowing sizes in advance,
46 without creating temporary file or buffer data in memory.
47
48 @item
49 Proper encrypted packet padding verification is done now. This is not
50 critical issue, but previously neither padding value, nor its size were
51 authenticated, giving ability to iteratively strip trailing bytes and
52 determine payload's size by observing the reaction of the encrypted
53 packet processing.
54
55 @item
56 @command{nncp-exec} loses its @option{-use-tmp} option, because of
57 streaming-compatible encrypted packets format.
58
59 @item
60 @command{nncp-file} and @command{nncp-exec} commands have
61 @option{-maxsize} option, limiting maximal resulting encrypted packet's
62 maximal size (returning error if it is exceeded). Could be useful,
63 because no payload size could be known in advance.
64
65 @end itemize
66
67 @node Release 7_7_0
68 @section Release 7.7.0
69 @itemize
70
71 @item
72 Experimental @code{kqueue} and @code{inotify} based notifications
73 support about spool directory changes, for reducing their often reading
74 overhead.
75
76 @item
77 @file{.seen} and @file{.hdr} files moved to @file{seen/} and @file{hdr/}
78 subdirectories, for faster scanning of spool directories.
79 Current files migration required:
80
81 @example
82 $ find $NNCPSPOOL -type f -name "*.hdr" -exec rm @{@} +
83
84 $ find $NNCPSPOOL -type d -name rx | while read rx ; do
85     cd $rx
86     mkdir -p seen
87     find . -type f -name "*.seen" | while read fn ; do
88         mv $fn seen/$@{fn%.seen@}
89     done
90 done
91
92 $ find $NNCPSPOOL -type d -name area | while read area ; do
93     find $area -type f -name "*.seen" | while read fn ; do
94         mv $fn $@{fn%.seen@}
95     done
96 done
97 @end example
98
99 @end itemize
100
101 @node Release 7_6_0
102 @section Release 7.6.0
103 @itemize
104
105 @item
106 Logging may be done to specified opened file descriptor
107 (@env{$NNCPLOG=FD:5} for example).
108 That is friendly to use under @command{daemontools}.
109
110 @item
111 Added additional checks of public keys existence in configuration file,
112 preventing some commands from failing.
113
114 @end itemize
115
116 @node Release 7_5_1
117 @section Release 7.5.1
118 @itemize
119
120 @item
121 NNCP builds on NetBSD.
122
123 @end itemize
124
125 @node Release 7_5_0
126 @section Release 7.5.0
127 @itemize
128
129 @item
130 @command{nncp-daemon} is compatible with UCSPI-TCP interface, so log
131 will contain remote side's address (when running under appropriate
132 utility). @option{-ucspi} option should be used instead of @option{-inetd}.
133
134 @item
135 @command{nncp-call} can be UCSPI-TCP client, using @option{-ucspi} option.
136
137 @item
138 Do not exit if some of MCD network interfaces can not be listened --
139 only warn about that.
140
141 @end itemize
142
143 @node Release 7_4_0
144 @section Release 7.4.0
145 @itemize
146
147 @item
148 Fixed simultaneous @command{nncp-daemon} and @command{nncp-caller} MCD work.
149
150 @end itemize
151
152 @node Release 7_3_2
153 @section Release 7.3.2
154 @itemize
155
156 @item
157 @command{hjson-cli} utility builds in vendor-mode now.
158
159 @end itemize
160
161 @node Release 7_3_1
162 @section Release 7.3.1
163 @itemize
164
165 @item
166 Fixed possibly left opened file descriptor in online commands.
167
168 @item
169 Severely decreased memory usage of MTH hashing.
170
171 @end itemize
172
173 @node Release 7_3_0
174 @section Release 7.3.0
175 @itemize
176
177 @item
178 Fixed some workability problems on 32-bit systems with big files.
179
180 @item
181 Ability to use directory with a bunch of files as a configuration.
182 @command{nncp-cfgdir} command appeared.
183
184 @end itemize
185
186 @node Release 7_2_1
187 @section Release 7.2.1
188 @itemize
189
190 @item
191 Small optimizations in online commands.
192
193 @end itemize
194
195 @node Release 7_2_0
196 @section Release 7.2.0
197 @itemize
198
199 @item
200 @command{nncp-trns} command appeared for manual transition packets creation.
201
202 @item
203 If destination node of transitional packet has non empty @option{via}
204 route, then do not ignore, but use it.
205
206 @item
207 Do not relay multicast packet to area message's originator, that
208 obviously has seen its own packet.
209
210 @item
211 Much less memory usage during MTH hashing when offset is zero: when
212 packet is not resumed, but for example checked with @command{nncp-check}
213 command.
214
215 @end itemize
216
217 @node Release 7_1_1
218 @section Release 7.1.1
219 @itemize
220
221 @item
222 Fixed failing directories fsync after @file{.seen} file creation.
223
224 @end itemize
225
226 @node Release 7_1_0
227 @section Release 7.1.0
228 @itemize
229
230 @item
231 Multicasting areas feature appeared. Implemented merely by an additional
232 plain packet type with @command{nncp-toss}, @command{nncp-file} and
233 @command{nncp-exec} commands modification.
234
235 @item
236 Fixed workability of @command{nncp-file} and @command{nncp-exec}
237 commands, that use temporary file (stdin and @option{-use-tmp}).
238
239 @item
240 Fixed disappearing bad return code in @command{nncp-exec} command.
241
242 @item
243 Fixed invalid @file{.hdr} generation when transitional packets are used.
244
245 @item
246 @option{-all} option appeared in @command{nncp-rm} command, applying to
247 all the nodes at once.
248
249 @item
250 @option{-cycle} option appeared in @command{nncp-check} command, looping
251 the check in infinite cycle.
252
253 @item
254 @command{nncp-rm} command can take node alias name.
255
256 @item
257 @command{nncp-pkt} can parse @file{.hdr} files.
258
259 @end itemize
260
261 @node Release 7_0_0
262 @section Release 7.0.0
263 @itemize
264
265 @item
266 Minimal required Go version 1.13.
267
268 @item
269 Merkle Tree-based Hashing with BLAKE3 (MTH) is used instead of BLAKE2b.
270 Because of that, there are backward @strong{incompatible} changes of
271 encrypted files (everything laying in the spool directory) and
272 @file{.meta} files of chunked transfer.
273
274 Current implementation is far from being optimal: it lacks
275 parallelizable calculations and has higher memory consumption: nearly
276 512 KiB for each 1 GiB of file's data. Future performance and memory
277 size optimizations should not lead to packet's format change. But it is
278 still several times faster than BLAKE2b.
279
280 @item
281 Resumed online downloads, because of MTH, require reading only of the
282 preceding part of file, not the whole one as was before.
283
284 @item
285 @command{nncp-hash} utility appeared for calculating file's MTH hash.
286
287 @item
288 BLAKE2 KDF and XOF functions are replaced with BLAKE3 in encrypted
289 packets. Lowering number of used primitives. Also, its encrypted
290 packet's header is used as an associated data during encryption.
291
292 @item
293 MultiCast Discovery uses
294 @verb{|ff02::4e4e:4350|} address instead of @verb{|ff02::1|}.
295
296 @item
297 @command{nncp-cfgenc} mistakenly asked passphrase three times during encryption.
298
299 @item
300 @command{nncp-stat} reports about partly downloaded packets.
301
302 @item
303 Updated dependencies.
304
305 @end itemize
306
307 @node Release 6_6_0
308 @section Release 6.6.0
309 @itemize
310
311 @item
312 @command{nncp-daemon}, @command{nncp-call} and @command{nncp-caller}
313 commands wait for all background checksummers completion after
314 connection is finished.
315
316 @item
317 Added possibility of address determining through multicast announcement
318 in local area network, so called MCD (MultiCast Discovery).
319
320 @end itemize
321
322 @node Release 6_5_0
323 @section Release 6.5.0
324 @itemize
325
326 @item
327 Fixed segfault in @command{nncp-daemon} when SP handshake did not succeed.
328
329 @item
330 Fixed possible bad return code ignoring in automatic tosser.
331
332 @item
333 Fixed race during file descriptors closing when online protocol call is
334 finished, that could lead to write error of received packet fragment.
335
336 @item
337 Kill all packet transmission progress bars in @command{nncp-daemon},
338 @command{nncp-call} and @command{nncp-caller} when call is finished.
339
340 @end itemize
341
342 @node Release 6_4_0
343 @section Release 6.4.0
344 @itemize
345
346 @item
347 Fixed possible race in online protocol, that lead to panic.
348
349 @end itemize
350
351 @node Release 6_3_0
352 @section Release 6.3.0
353 @itemize
354
355 @item
356 Fixed possible panic while showing progress during online protocol.
357
358 @end itemize
359
360 @node Release 6_2_1
361 @section Release 6.2.1
362 @itemize
363
364 @item
365 Three places in logs contained excess @code{%s}.
366
367 @end itemize
368
369 @node Release 6_2_0
370 @section Release 6.2.0
371 @itemize
372
373 @item
374 Returned @command{nncp-caller}'s @option{-autotoss*} options workability.
375
376 @item
377 Yet another logging refactoring and simplification.
378 Should be no visible differences to the end user.
379
380 @end itemize
381
382 @node Release 6_1_0
383 @section Release 6.1.0
384 @itemize
385
386 @item
387 Optimization: most commands do not keep opened file descriptors now.
388 Previously you can exceed maximal number of opened files if you have got
389 many packets in the spool directory.
390
391 @item
392 Optimization: do not close file descriptor of the file we download
393 online. Previously each chunk lead to expensive open/close calls.
394
395 @item
396 Online downloaded files are saved with @file{.nock} (non-checksummed)
397 suffix, waiting either for @command{nncp-check}, or online daemons to
398 perform integrity check.
399
400 @item
401 Optimization: files, that are not resumed, are checksummed immediately
402 during the online download, skipping @file{.nock}-intermediate step.
403
404 @item
405 Ability to store encrypted packet's header in @file{.hdr} file, close to
406 the packet itself. That can greatly increase performance of packets
407 listing on filesystems with big block's size.
408
409 @end itemize
410
411 @node Release 6_0_0
412 @section Release 6.0.0
413 @itemize
414
415 @item
416 Log uses human readable and easy machine parseable
417 @url{https://www.gnu.org/software/recutils/, recfile} format for the
418 records, instead of structured RFC 3339 lines. Old logs are not readable
419 by @command{nncp-log} anymore.
420
421 @item
422 @option{-autotoss*} option workability with @command{nncp-daemon}'s
423 @option{-inetd} mode.
424
425 @item
426 Call's @option{when-tx-exists} allows to make a call only when outbound
427 packets exists. Combined with seconds-aware cron expression that can be
428 used as some kind of auto dialler.
429
430 @item
431 @command{nncp-cronexpr} command allows you to check validity and
432 expectations of specified cron expression.
433
434 @end itemize
435
436 @node Release 5_6_0
437 @section Release 5.6.0
438 @itemize
439
440 @item
441 @option{-autotoss*} option runs tosser not after the call, but every
442 second while it is active.
443
444 @item
445 @option{autotoss}, @option{autotoss-doseen},
446 @option{autotoss-nofile}, @option{autotoss-nofreq},
447 @option{autotoss-noexec}, @option{autotoss-notrns} options available in
448 @option{calls} configuration section. You can configure per-call
449 automatic tosser options.
450
451 @item
452 Use vendoring, instead of @env{$GOPATH} overriding during tarball
453 installation, because current minimal Go's version is 1.12 and it
454 supports modules.
455
456 @end itemize
457
458 @node Release 5_5_1
459 @section Release 5.5.1
460 @itemize
461
462 @item
463 Respect for @env{$BINDIR}, @env{$INFODIR} and @env{$DOCDIR} environment
464 variables in @file{config} during installation.
465
466 @end itemize
467
468 @node Release 5_5_0
469 @section Release 5.5.0
470 @itemize
471
472 @item
473 Bugfixes in @command{nncp-call(er)}/@command{nncp-daemon},
474 @command{nncp-bundle} and @command{nncp-stat}.
475
476 @item
477 @command{nncp-rm} has @option{-dryrun} and @option{-older} options now.
478
479 @item
480 @command{nncp-exec} has @option{-use-tmp} and @option{-nocompress}
481 options now. Uncompressed packets are not compatible with previous NNCP
482 versions.
483
484 @item
485 @command{nncp-call}, @command{nncp-caller} and @command{nncp-daemon} commands
486 have @option{-autotoss*} options for running tosser after call is ended.
487
488 @item
489 Updated dependencies. Minimal required Go version is 1.12.
490
491 @end itemize
492
493 @node Release 5_4_1
494 @section Release 5.4.1
495 @itemize
496
497 @item
498 Fixed @code{SENDMAIL} variable usage during the build.
499
500 @end itemize
501
502 @node Release 5_4_0
503 @section Release 5.4.0
504 @itemize
505
506 @item
507 Updated dependencies.
508
509 @item
510 Build system is moved from Makefiles to @url{http://cr.yp.to/redo.html, redo}.
511 This should not influence package maintainers, because minimal @command{redo}
512 implementation is included in tarball.
513
514 @end itemize
515
516 @node Release 5_3_3
517 @section Release 5.3.3
518 @itemize
519
520 @item
521 More various error checks.
522
523 @item
524 Updated dependencies.
525
526 @end itemize
527
528 @node Release 5_3_2
529 @section Release 5.3.2
530 @itemize
531
532 @item
533 Fixed incorrect logic of @option{onlinedeadline} timeout, where
534 connection won't take into account incoming packets events and will
535 forcefully disconnect.
536
537 @end itemize
538
539 @node Release 5_3_1
540 @section Release 5.3.1
541 @itemize
542
543 @item
544 Fixed @option{onlinedeadline} workability with call addresses that use
545 external commands (@verb{#"|somecmd"#}).
546
547 @item
548 @command{nncp-stat} has @option{-pkt} option displaying information
549 about each packet in the spool.
550
551 @end itemize
552
553 @node Release 5_3_0
554 @section Release 5.3.0
555 @itemize
556
557 @item
558 Progress messages contain prefix, describing the running action.
559
560 @item
561 Fixed not occurring handshake messages padding.
562
563 @item
564 Finish all SP protocol related goroutines, less memory leak.
565
566 @item
567 SP protocol generates less socket write calls, thus generating less TCP
568 packets.
569
570 @item
571 Check @option{onlinedeadline} and @option{maxonlinetime} options every
572 second, independently from socket reads (up to 10 seconds).
573
574 @item
575 Once per minute, if no other traffic exists, PING packets are sent in
576 SP-connection. That allows faster determining of connection unworkability.
577
578 @item
579 @command{nncp-toss} uses lock-file to prevent simultaneous tossing.
580
581 @end itemize
582
583 @node Release 5_2_1
584 @section Release 5.2.1
585 @itemize
586
587 @item
588 Fixed SP protocol error handling, sometimes causing program panic.
589
590 @end itemize
591
592 @node Release 5_2_0
593 @section Release 5.2.0
594 @itemize
595
596 @item
597 Most commands by default show oneline operations progress.
598 @option{-progress}, @option{-noprogress} command line options,
599 @option{noprogress} configuration file option appeared.
600
601 @item
602 Fixed incorrect @command{nncp-check} command return code, that returned
603 bad code when everything is good.
604
605 @item
606 Free disk space check during @command{nncp-bundle -rx} call.
607
608 @end itemize
609
610 @node Release 5_1_2
611 @section Release 5.1.2
612 @itemize
613
614 @item
615 @strong{Critical} vulnerability: remote peers authentication could lead
616 to incorrect identification of remote side, allowing foreign encrypted
617 packets downloading.
618
619 @item
620 Bugfix: private and public Noise keys were swapped in newly created
621 configuration files, that lead to inability to authenticate online peers.
622
623 @item
624 Explicit directories fsync-ing for guaranteed files renaming.
625
626 @end itemize
627
628 @node Release 5_1_1
629 @section Release 5.1.1
630 @itemize
631
632 @item
633 Fixed workability of @command{nncp-file} with @option{-chunked 0} option.
634
635 @end itemize
636
637 @node Release 5_1_0
638 @section Release 5.1.0
639 @itemize
640
641 @item
642 @command{nncp-file} can send directories, automatically creating pax
643 archive on the fly.
644
645 @item
646 Free disk space is checked during outbound packets creation.
647
648 @item
649 @option{freq}, @option{freqminsize}, @option{freqchunked} configuration
650 file options replaced with the structure:
651 @option{freq: @{path: @dots{}, minsize: @dots{}, chunked: @dots{}@}}.
652
653 @item
654 Added @option{freq.maxsize} configuration file option, forbidding of
655 freq sending larger than specified size.
656
657 @item
658 Ability to notify about successfully executed commands (exec) with
659 @option{notify.exec} configuration file option.
660
661 @end itemize
662
663 @node Release 5_0_0
664 @section Release 5.0.0
665 @itemize
666
667 @item
668 @strong{Incompatible} configuration file format change: YAML is
669 replaced with Hjson, due to its simplicity, without noticeable lack
670 of either functionality or convenience.
671
672 @item
673 @strong{Incompatible} plain packet format changes. Older versions are
674 not supported. @code{zlib} compression is replaced with
675 @code{Zstandard}, due to its speed and efficiency, despite library
676 version is not mature enough.
677
678 @item
679 Ability to call remote nodes via pipe call of external command, not only
680 through TCP.
681
682 @item
683 @command{nncp-cfgnew} generates configuration file with many
684 comments. @option{-nocomments} option can be used for an old
685 behaviour.
686
687 @item
688 Duplicate filenames have @file{.CTR} suffix, instead of @file{CTR}, to
689 avoid possible collisions with @file{.nncp.chunkCTR}.
690
691 @item
692 Ability to override process umask through configuration file option.
693
694 @item
695 Files and directories are created with 666/777 permissions by default,
696 allowing control with @command{umask}.
697
698 @item
699 Updated dependencies.
700
701 @item
702 Full usage of go modules for dependencies management
703 (@code{go.cypherpunks.ru/nncp/v5} namespace is used).
704
705 @item
706 Forbid any later GNU GPL version autousage
707 (project's licence now is GNU GPLv3-only).
708
709 @end itemize
710
711 @node Release 4_1
712 @section Release 4.1
713 @itemize
714 @item Workability on GNU/Linux systems and Go 1.10 is fixed.
715 @end itemize
716
717 @node Release 4_0
718 @section Release 4.0
719 @itemize
720
721 @item
722 @strong{Incompatible} encrypted and eblob packet format change: AEAD
723 encryption mode with 128 KiB blocks is used now, because previously
724 @command{nncp-toss} did not verify encrypted packet's MAC before feeding
725 decrypted data to external command. Older versions are not supported.
726
727 @item
728 Available free space checking before copying in @command{nncp-xfer},
729 @command{nncp-daemon}, @command{nncp-call(er)}.
730
731 @item
732 @command{nncp-call} has ability only to list packets on remote node,
733 without their transmission.
734
735 @item
736 @command{nncp-call} has ability to transfer only specified packets.
737
738 @item
739 Workability of @option{xxrate} preference in @option{calls}
740 configuration file section.
741
742 @item
743 Dependant libraries are updated.
744
745 @item
746 Minor bugfixes.
747
748 @item
749 Begin using of @code{go.mod} subsystem.
750
751 @end itemize
752
753 @node Release 3_4
754 @section Release 3.4
755 @itemize
756 @item @command{nncp-daemon} can be run as @command{inetd}-service.
757 @end itemize
758
759 @node Release 3_3
760 @section Release 3.3
761 @itemize
762
763 @item
764 @command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller} check
765 if @file{.seen} exists and treat it like file was already downloaded.
766 Possibly it was transferred out-of-bound and remote side needs to be
767 notifier about that.
768
769 @item
770 If higher priority packet is spooled, then @command{nncp-daemon} will
771 queue its sending first, interrupting lower priority transmissions.
772
773 @item
774 Simple packet rate limiter added to online-related tools
775 (@command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller}).
776
777 @item
778 Ability to specify niceness with symbolic notation:
779 @verb{|NORMAL|}, @verb{|BULK+10|}, @verb{|PRIORITY-5|}, etc.
780
781 @item
782 Changed default niceness levels:
783 for @command{nncp-exec} from 64 to 96,
784 for @command{nncp-freq} from 64 to 160,
785 for @command{nncp-file} from 196 to 224.
786
787 @end itemize
788
789 @node Release 3_2
790 @section Release 3.2
791 @itemize
792 @item
793 @strong{Incompatible} @emph{bundle} archive format changes and
794 @command{nncp-bundle} workability with Go 1.10+. Bundles must be
795 valid tar archives, but Go 1.9 made them invalid because of long paths
796 inside. NNCP accidentally was dependant on that bug. Explicit adding of
797 @file{NNCP/} directory in archive restores workability with valid tar
798 archives.
799 @end itemize
800
801 @node Release 3_1
802 @section Release 3.1
803 @itemize
804 @item
805 Ability to disable relaying at all using @verb{|-via -|} command line option.
806 @end itemize
807
808 @node Release 3_0
809 @section Release 3.0
810 @itemize
811
812 @item
813 @strong{Incompatible} plain packet format changes. Older versions are
814 not supported.
815
816 @item
817 Ability to queue remote command execution, by configuring @option{exec}
818 option in configuration file and using @command{nncp-exec} command:
819     @itemize
820     @item
821     @command{nncp-mail} command is replaced with more flexible
822     @command{nncp-exec}. Instead of @verb{|nncp-mail NODE RECIPIENT|}
823     you must use @verb{|nncp-exec NODE sendmail RECIPIENT|}.
824     @item
825     @option{sendmail} configuration file option is replaced with
826     @option{exec}. @verb{|sendmail: [...]|} must be replaced with
827     @verb{|exec: sendmail: [...]|}.
828     @end itemize
829
830 @item
831 Ability to override @option{via} configuration option for destination
832 node via @option{-via} command line option for following commands:
833 @command{nncp-file}, @command{nncp-freq}, @command{nncp-exec}.
834
835 @item
836 Chunked files, having size less than specified chunk size, will be sent
837 as an ordinary single file.
838
839 @item
840 Exec commands are invoked with additional @env{$NNCP_NICE} and
841 @env{$NNCP_SELF} environment variables.
842
843 @item
844 Files, that are sent as a reply to freq, have niceness level taken from
845 the freq packet. You can set desired niceness during @command{nncp-freq}
846 invocation using @option{-replynice} option.
847
848 @item
849 @command{nncp-toss} command can ignore specified packet types during
850 processing: @option{-nofile}, @option{-nofreq}, @option{-noexec},
851 @option{-notrns}.
852
853 @item
854 @command{nncp-file} command uses
855 @option{FreqMinSize}/@option{FreqChunked} configuration file options
856 for @option{-minsize}/@option{-chunked} by default. You can turn this
857 off by specifying zero value.
858
859 @end itemize
860
861 @node Release 2_0
862 @section Release 2.0
863 @itemize
864
865 @item
866 @strong{Incompatible} encrypted/eblob packet format changes. Older
867 versions are not supported.
868
869 @item
870 Twofish encryption algorithm is replaced with ChaCha20. It is much more
871 faster. One cryptographic primitive less.
872
873 @item
874 HKDF-BLAKE2b-256 KDF algorithm is replaced with BLAKE2Xb XOF. Yet
875 another cryptographic primitive less (assuming that BLAKE2X is nearly
876 identical to BLAKE2).
877
878 @end itemize
879
880 @node Release 1_0
881 @section Release 1.0
882 @itemize
883
884 @item
885 @strong{Incompatible} encrypted packet format changes. Older versions
886 are not supported.
887
888 @item
889 @command{nncp-bundle} command can either create stream of encrypted
890 packets, or digest it. It is useful when dealing with
891 @code{stdin}/@code{stdout} based transmission methods (like writing to
892 CD-ROM without intermediate prepared ISO image and working with tape
893 drives).
894
895 @item
896 @command{nncp-toss} is able to create @file{.seen} files preventing
897 duplicate packets receiving.
898
899 @item
900 Single background checksum verifier worker is allowed in
901 @command{nncp-call}. This is helpful when thousands of small inbound
902 packets could create many goroutines.
903
904 @item
905 Ability to override path to spool directory and logfile through either
906 command line argument, or environment variable.
907
908 @item
909 @command{nncp-rm} is able to delete outbound/inbound, @file{.seen},
910 @file{.part}, @file{.lock} and temporary files.
911
912 @end itemize
913
914 @node Release 0_12
915 @section Release 0.12
916 @itemize
917 @item Sendmail command is called with @env{$NNCP_SENDER} environment variable.
918 @end itemize
919
920 @node Release 0_11
921 @section Release 0.11
922 @itemize
923 @item @command{nncp-stat}'s command output is sorted by node name.
924 @end itemize
925
926 @node Release 0_10
927 @section Release 0.10
928 @itemize
929 @item
930 @command{nncp-freq}'s @file{DST} argument is optional now. Last
931 @file{SRC} path's element will be used by default.
932 @end itemize
933
934 @node Release 0_9
935 @section Release 0.9
936 @itemize
937 @item
938 Fix @option{-rx}/@option{-tx} arguments processing in
939 @command{nncp-call} command. They were ignored.
940 @end itemize
941
942 @node Release 0_8
943 @section Release 0.8
944 @itemize
945 @item
946 Little bugfix in @command{nncp-file} command, where @option{-minsize}
947 option for unchunked transfer was not in KiBs, but in bytes.
948 @end itemize
949
950 @node Release 0_7
951 @section Release 0.7
952 @itemize
953
954 @item
955 Ability to feed @command{nncp-file} from @code{stdin}, that uses an
956 encrypted temporary file for that.
957
958 @item
959 Chunked files transmission appeared with corresponding
960 @command{nncp-reass} command and @option{freqchunked} configuration file
961 entry. Useful for transferring big files over small storage devices.
962
963 @item
964 @option{freqminsize} configuration file option, analogue to
965 @option{-minsize} one.
966
967 @item
968 @command{nncp-xfer}'s @option{-force} option is renamed to
969 @option{-mkdir} for clarity.
970
971 @item
972 @option{-minsize} option is specified in KiBs, not bytes, for
973 convenience.
974
975 @item
976 @command{nncp-newcfg} command is renamed to @command{nncp-cfgnew},
977 and @command{nncp-mincfg} to @command{nncp-cfgmin} -- now they have
978 common prefix and are grouped together for convenience.
979
980 @item
981 @command{nncp-cfgenc} command appeared, allowing configuration file
982 encryption/decryption, for keeping it safe without any either OpenPGP or
983 similar tools usage.
984
985 @item
986 Cryptographic libraries (dependencies) are updated.
987
988 @end itemize
989
990 @node Release 0_6
991 @section Release 0.6
992 @itemize
993 @item Small @command{nncp-rm} command appeared.
994 @item Cryptographic libraries (dependencies) are updated.
995 @end itemize
996
997 @node Release 0_5
998 @section Release 0.5
999 @itemize
1000 @item
1001 Trivial small fix in default niceness level of @command{nncp-file}
1002 and @command{nncp-freq} commands.
1003 @end itemize
1004
1005 @node Release 0_4
1006 @section Release 0.4
1007 @itemize
1008
1009 @item
1010 Small fix in @command{nncp-call}, @command{nncp-caller},
1011 @command{nncp-daemon}: they can segmentation fail sometimes (no data is
1012 lost).
1013
1014 @item
1015 @command{nncp-newnode} renamed to @command{nncp-newcfg} -- it is shorter
1016 and more convenient to use.
1017
1018 @item
1019 @command{nncp-mincfg} command appeared: helper allowing to create
1020 minimalistic stripped down configuration file without private keys, that
1021 is useful during @command{nncp-xfer} usage.
1022
1023 @end itemize
1024
1025 @node Release 0_3
1026 @section Release 0.3
1027 @itemize
1028 @item Fixed compatibility with Go 1.6.
1029 @end itemize
1030
1031 @node Release 0_2
1032 @section Release 0.2
1033 @itemize
1034
1035 @item
1036 @strong{Incompatible} packet's format change (magic number is changed
1037 too): size field is encrypted and is not send in plaintext anymore.
1038
1039 @item
1040 @option{-minsize} option gives ability to automatically pad outgoing
1041 packets to specified minimal size.
1042
1043 @item
1044 @command{nncp-daemon} and @command{nncp-call}/@command{nncp-caller}
1045 always check new @emph{tx} packets appearance in the background while
1046 connected. Remote side is immediately notified.
1047
1048 @item
1049 @option{-onlinedeadline} option gives ability to configure timeout of
1050 inactivity of online connection, when it could be disconnected. It could
1051 be used to keep connection alive for a long time.
1052
1053 @item
1054 @option{-maxonlinetime} option gives ability to set maximal allowable
1055 online connection aliveness time.
1056
1057 @item
1058 @command{nncp-caller} command appeared: cron-ed TCP daemon caller.
1059
1060 @item
1061 @command{nncp-pkt} command can decompress the data.
1062
1063 @end itemize