-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
1723 lines (943 loc) · 53.4 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sat Jun 5 11:47:17 MEST 2010 Gert Doering <gert@greenie.muc.de>
* release 1.1.37
Fri Jun 4 14:56:46 MEST 2010 Gert Doering <gd@medat.de>
* the following fixes prompted by Wouter van Marle...
* fax/faxspool.in: implement "-t hh:mm-hh:mm" time-range syntax
* fax/faxq.in: properly display queued jobs with time-range field
* fax/faxrunqd.in: correctly handle jobs running out of the end of
their sent-time window. ** Changes handling
of "-t hh:mm" to "from hh:mm to midnight" **
* doc/faxqueue.5in: document "time hhmm-hhmm" syntax & constraints
Sat Feb 20 14:04:11 MET 2010 Gert Doering <gert@greenie.muc.de>
* tools/microcom.c: improve read-from-device exception handling
Wed Feb 17 09:28:44 MET 2010 Gert Doering <gert@greenie.muc.de>
* Makefile: split CC/HOSTCC for easier cross-compiling
Tue Nov 24 16:05:20 MET 2009 Gert Doering <gert@greenie.muc.de>
* tap/atsms.c: add SMS retrieval from AT GSM modems
Tue Jul 7 16:43:11 MEST 2009 Gert Doring <gd@medat.de>
* fax/faxrunqd.in: add run-time configurable delay after failures
* faxrunq.config: add example lines for "delay-rule" option
* doc/faxrunqd.8in: document "delay-rule" option
Thu Mar 19 16:10:50 MET 2009 Gert Doering <gert@greenie.muc.de>
* Makefile, conf_sf.c, conf_sf.h: change working of version.h
(now it only contains #define's, the actual variable assignment
happens in conf*.c - prerequisites for inclusion in class1lib.c)
* class1.c: send NSF frame on reception (optional)
* class1lib.c: implement class1_send_nsf(), send mgetty version
Sat Mar 14 12:54:19 MET 2009 Getr Doering <gert@greenie.muc.de>
* hyla_nsf.c: import updates from Hylafax NSF.c++
Wed Feb 25 14:02:20 MET 2009 Gert Doering <gd@medat.de>
* fax/faxrunqd.in: enhance and clarify per-modem statistics
Wed Feb 18 09:20:55 MET 2009 Gert Doering <gd@medat.de>
* Makefile, doc/Makefile: cleanup "make install" warnings
Fri Mar 7 15:53:23 MET 2008 Gert Doering <gd@medat.de>
* ring.c: be flexible regarding whitespace in FM:...TO:... (Blatzheim)
Thu Jan 31 17:26:18 MET 2008 Gert Doering <gd@medat.de>
* sendfax.c, conf_sf.c, conf_sf.h: new option for sendfax:
reset-after-fail <ATxxx> --> sent to modem after dial failures
Sun Sep 9 13:56:46 MEST 2007 Stepan Kasal <kasal@ucw.cz>
* Makefile: file COPYING was missing
Tue Aug 21 11:48:44 MEST 2007 Gert Doering <gd@medat.de>
* fax/faxspool.in: add @DATE +<format>@ to faxheader processing
Fri Jun 15 13:11:24 MEST 2007 Gert Doering <gert@greenie.muc.de>
* add missing files (g3file.c), re-release 1.1.36
Fri Jun 15 09:13:20 MEST 2007 Gert Doering <gert@greenie.muc.de>
* release 1.1.36
Wed May 16 17:46:39 MEST 2007 Gert Doering <gd@medat.de>
* faxsend.c: (optionally) insert 100 0-bytes at start of page, to
help modems that have problems with the before-EOL timing (new USRs)
* fax_lib.c: add new MQ_ bit for 0-padding
Sat May 5 14:03:16 MEST 2007 Gert Doering <gd@medat.de>
* fax/faxrunqd.in: make wait() interruptible, avoid queue stalls
if only one modem active and this modem has a very long job.
Additionally, detect hung sendfax processes, and kill()' em.
* faxlib.c: recognize modem ID for Blatzheim ISDN/hybrid modems
Fri Jan 19 08:36:49 MET 2007 Gert Doering <gd@medat.de>
* fax/faxrunqd.in: add functionality to run external scripts if
the fax queue reaches a "high water mark" length, and if a given
modem has more than <x> consecutive errors
* doc/faxrunqd.8in: document new options
Thu Dec 7 16:44:55 MET 2006 Gert Doering <gd@medat.de>
* fax/faxspool.in: add @S@ for faxheader (replace with job id)
Wed Nov 22 16:41:47 MET 2006 Gert Doering <gd@medat.de>
* sendfax.c: for "failed transmitting", log #of pages successfully
sent + #of retries (important for judging significance of errors)
* conf_sf.c: add new sendfax option "-R <n>" to set "max_tries" value
* doc/sendfax.8in: document -R
Wed Oct 25 13:50:17 MEST 2006 Gert Doering <gert@greenie.muc.de>
* tools/README: update documentation, add "microcom"
* class1lib.c: in fax1_send_frame(): make logging more uniform and
easier to read. Handle case of "NO CARRIER" after
frame has been sent, and check for internal
consistency regarding "we have carrier" vs. "use
existing carrier" (ugly)
* class1.c: on reception, don't try to send DIS when CSI frame
couldn't be sent. Log # of current re-try.
Thu Oct 19 10:01:02 MEST 2006 Jan-Peter Koopmann
* add exim4 documentation to frontends/mail2fax06/README
Fri Sep 29 13:05:40 MEST 2006 Gert Doering <gert@greenie.muc.de>
* class1lib.c: check all fax_send() return values (in case flow
control gets stuck, we might have a timeout in there)
* class1.c: properly implement scan line time handling / byte padding
* class1.c: implement re-training on TCF/FTT, including stepdown
* class1lib.c: implement fax1_st_table[] for scan line time
handling (bit ordering in DCS/DIS frames is just weird).
Add scan time parameter to fax1_send_dcs()
* fax/faxspool.rules: add conversion rules for .jpg and .doc
Wed Sep 27 11:49:45 MEST 2006 Gert Doering <gd@mdat.de>
* fax/faxrunqd.in: fix write combining bug with partially-sent jobs
Tue Sep 26 11:05:36 MEST 2006 Gert Doering <gert@greenie.muc.de>
* voice/libvoice/*: sparc64 compatibility fixes (*int vs. *p_int)
* voice/Makefile: pull in new object files (hyla_nsf.o, g3file.o)
* g3file.c: implement first draft of generic G3 I/O module,
including EOL padding
* t/t_g3f_c.c, t/t_g3file.in: test routines for g3file.c
* class1.c: change fax1_send_page() to use g3_send_file()
* fax/faxspool.in: netpbm calls "giftoppm" now "giftopnm" -> adapt
Fri Sep 22 23:43:51 MEST 2006 Gert Doering <gert@greenie.muc.de>
* frontends/mail2fax06/: implement new mail to fax conversion tool,
in perl, using MIME::Parser, which will properly handle attachments
Wed Jun 14 11:38:54 MEST 2006 Gert Doering <gd@medat.de>
* tools/microcom.c: add <stdlib.h> to fix missing prototype warnings
* config.c: insert {} to silence over-eager compiler warnings
* tio.c: change "static char[] tio_compilation_type" into "#ident"
(get rid of "unused variable" warning, save a few bytes .data)
* locks.c: get rid of "unused variable tries" compiler warning
* hyla_nsf.c: add mgetty T.35 vendor code to table
Sat Jun 10 13:45:04 MEST 2006 Gert Doering <gert@greenie.muc.de>
* mgetty has its own ITU T.35 vendor code now! [0x04 0x81 0x0e]
Fri May 26 22:04:20 MEST 2006 Gert Doering <gert@greenie.muc.de>
* tools/mid.c: implement "-Q" (quick query)
Thu Apr 13 12:07:16 MEST 2006 Gert Doering <gd@medat.de>
* faxlib.c: handle USR reporting format for NSF frames
Sun Apr 9 18:39:51 MEST 2006 Gert Doering <gert@greenie.muc.de>
* fax/faxrunqd.in: fix quoting bug in `date` call (Klaus Weglehner)
* hyla_nsf.c: import new set of tables from Hylafax NSF.c++
Wed Mar 29 14:26:48 MEST 2006 Gert Doering <gert@greenie.muc.de>
* hyla_nsf.c, class1.c, class1.h: silence compiler complaints
* config.h: cast return value of c_bool() to (boolean)
Wed Mar 22 15:10:18 MET 2006 Gert Doering <gert@greenie.muc.de>
* class1.c: hand off incoming NSF frames to decoder
* faxlib.c: convert incoming NSF frames to binary, hand off to decoder
* hyla_nsf.c: import NSF vendor tables + decoder from Hylafax
Tue Mar 7 15:10:13 MET 2006 Gert Doering <gert@greenie.muc.de>
* class1.c: fax1_send_page(): fix end-of-page handling, reorder
sending of TSI and DCS to correctly handle RTP/RTN
* class1.c: fax1_send_page(): properly use fax_send_swaptable[]
(page sending works now, if receiver doesn't need padding)
* class1.c: fax1_send_page(): fix first and last chunk of page data
(digifax header wasn't skipped, and last chunk was lost)
* class1.c: handle DCN in fax1_dial_and_phase_AB()
* class1.c: add receive torture test (to sender), more logging
* fax_lib.h: define CAN character (cancel, ctrl-x)
* class1lib.c: fax1_receive_frame(): if waiting for start-of-frame
already runs into timeout, don't even try to read
end-of-frame modem response (robustness)
* class1lib.c: tell modem (send CAN character) when we timeout
after AT+FRH=n, to make sure recovering works
Mon Mar 6 17:27:04 MET 2006 Gert Doering <gert@greenie.muc.de>
* class1lib.c: don't query AT+FRH=?/+FTH=? carriers
Wed Feb 22 18:10:50 MET 2006 Gert Doering <gd@medat.de>
* */Makefile: move all "fullclean" extras into "clean" target,
remove "make fullclean"
* Makefile: for "make fullclean" or "distclean", just do "clean"
Wed Feb 22 14:36:16 MET 2006 Gert Doering <gert@greenie.muc.de>
* release 1.1.35
Sat Feb 18 13:42:59 MET 2006 Gert Doering <gert@greenie.muc.de>
* tio.c: tio_check_speed(): set errno to EINVAL for invalid speeds
* doc/faxq-helper.8in: add man page
Thu Feb 9 18:44:06 MET 2006 Gert Doering <gert@greenie.muc.de>
* fax_lib.h, class1lib.c: implement MQ_C1_NO_V17
Thu Jan 19 14:41:33 MET 2006 Gert Doering <gd@medat.de>
* fax/faxrunq.in: implement same acct.log format as in faxrunqd 1.71
* www/faxhist.in: adapt to new acct.log, cleanup sorted output
* www/faxhists.in: adapt to new acct.log, show total number of lines
Fri Jan 13 15:06:26 MET 2006 Gert Doering <gd@medat.de>
* fax/faxrunqd.in: change output format for acct.log to something
that is more consistant and easier to parse
Tue Jan 3 11:17:07 MET 2006 Gert Doering <gert@greenie.muc.de>
* use +FAA=x for adaptive answer in class 1.0 mode, +FAE=x in class 1
(this is very ill-standardized. Some modems accept both, some
only one or the other)
Sun Jan 1 17:19:08 MET 2006 Gert Doering <gert@greenie.muc.de>
* class1.c, class1lib.c: make (receive) code robust against all sort
of unexpected behaviours (modem responses not coming back in time,
sudden hangups from the remote end, need for re-tries, etc.)
still not the full T.30 flow chart, but important parts of it.
Sat Dec 31 17:01:19 MET 2005 Gert Doering <gert@greenie.muc.de>
* class 1 fax reception now "mostly works"
* class1lib.c: correctly construct DIS frame from modem
capabilities + user settings
* faxrecp.c: use fax_recv_swaptable[] for bit swapping (if needed)
* faxlib.c: initialize fax_recv_swaptable[] to swap bits in class
1/1.0 mode, add lots of comments to explain background
* mgetty.c: get non-adaptive answering in class 1/1.0 right
* various: handle "class 1" and "class 1.0" the same way (for now)
Fri Dec 30 22:35:00 MET 2005 Gert Doering <gert@greenie.muc.de>
* class1.c, class1lib.c: rework frame sending, handle DCS
* faxrec.c: split faxrec() into fax class-independent part and
class 2/2.0 handler (fax2_highlevel_receive())
* faxrec.c, policy.h: drop FAX_USRobotics cruft
* conf_mg.c: drop FAX_USRobotics -> SWITCHBAUD 19200 logic
Wed Dec 28 22:56:57 MET 2005 Gert Doering <gert@greenie.muc.de>
* faxrec.c, mg_m_init.c: preparations for fax class 1 receive
* class1.c, class1lib.c: very preliminary fax class 1 receiver
* class1.h: fix wrong value for T30_DCN
Tue Dec 20 22:01:48 MET 2005 Warren Burstein <warren@softov.co.il>
* conf_mg.c: fix typo if MAIL_TO is undefined
Wed Nov 30 09:46:52 MET 2005 Gert Doering <gert@greenie.muc.de>
* release 1.1.34
Sat Nov 26 14:28:09 MET 2005 Gert Doering <gert@greenie.muc.de>
* mg_m_init.c: write to log file if blocking open() is used
* logfile.c, tio.c, tio.h, mgetty.h: portability changes to
GNU/kFreeBSD (by Robin Elfrink)
* Makefile: new master FTP site is mgetty.greenie.net
Thu Nov 24 17:38:44 MET 2005 Gert Doering <gert@greenie.muc.de>
* faxlib.c, voice/libvoice/detect.c: understand ATI response 1507
for another ZyXEL Omni 56K variant (56k Pro)
* doc/mgetty.texi-in: document login-env-ttyprompt-hack
* policy.h: drop description of ENV_TTYPROMPT, point to mgetty.texi
* logname.c: replace #ifdef ENV_TTYPROMPT with run-time check of
the new config option, login-env-ttyprompt-hack
* mgetty.c: pass c_bool(env_ttyprompt) to getlogname()
* conf_mg.h, conf_mg.c: add option login-env-ttyprompt-hack
* mgetty.c: cleanup, use set_env_var() to set TERM=...
Wed Nov 9 10:12:36 MET 2005 Gert Doering / D.Binderman
* locks.c: a lprintf() call was missing a file name argument
Fri Jun 17 19:05:27 MEST 2005 Gert Doering <gert@greenie.muc.de>
* faxlib.c: remove #ifdef FAX_USRobotics -> MQ_USR_FMINSP
(if someone still has such an old modem, setting
"modem_quirks 0x20" will do the same thing at run-time)
Wed Jun 15 11:43:12 MEST 2005 Marcus Meissner
* voice/libvoice/record.c: fix (non-exploitable) 1-byte buffer
overflow in construction of RMD file header
Wed May 25 16:04:11 MEST 2005 Gert Doering <gd@medat.de>
* sendfax.c: alarm() out of fcntl() if it hangs > 10s. (AIX problem)
Mon Apr 25 16:27:14 MEST 2005 Gert Doering <gd@medat.de>
* logname.c: drain tty output before changing CR/LF settings
* mgetty.h, callback/callback.c: SIG_HDLR_ARGS cleanup
* mgetty.h, locks.c: prototype for rmlocks() cleaned up
* faxlib.c: decode & log receiver capabilities (+FDIS/+FIS)
Sat Apr 16 11:51:25 MEST 2005 Gert Doering <gert@greenie.muc.de>
* cnd.c: add destination number format (NDID=...) for Digi DataFire
* fax/faxq.in: add "faxq stop" and "faxq start" functionality
* doc/faxq.1in: document start/stop
Sun Apr 10 23:02:00 MEST 2005 Gert Doering <gert@greenie.muc.de>
* release 1.1.33
* fax/faxq-helper.c: repair creation of multi-page fax JOB files
Wed Mar 23 10:57:05 MET 2005 Gert Doering <gert@greenie.muc.de>
* ring.c: repair detection of V.253 RING signalling (<DLE>R)
Wed Mar 16 12:08:44 MET 2005 Gert Doering <gert@greenie.muc.de>
* t/t_ring.c: add test module for "ring.c" and "cnd.c" functions
Sun Mar 13 12:43:08 MET 2005 Gert Doering <gert@greenie.muc.de>
* release 1.1.32
* voice/<lots of files>: import vgetty jumbo patch from Juergen
Kosel, adding full duplex voice (experimental) and V.253 fixes
* voice/libpvf/wav.c, voice/pvftools/pvfcut.c, pvfecho.c,
pvfreverse.c: fix realloc(NULL) induced core dumps on older OSes
Sun Feb 27 12:58:29 MET 2005 Gert Doering <gert@greenie.muc.de>
* g3/Makefile: add tests for g3cat -L/-w
* g3/g3cat.c: add -L <max length> switch (cap lines in output file)
* doc/g3cat.1in: document all command line switches
* Makefile, mksed.c: new setting: SHELL_TRAP_POSIX
* t/t_trap.in: test for correct shell/trap behaviour
* fax/faxrunq.in: get correct "trap 0" syntax from sedscript
Thu Feb 24 17:24:18 MET 2005 Gert Doering <gd@medat.de>
* fax/faxq-helper.c: fix scrubbing of JOB file lines,
create "user" line if not present
* fax/faxspool.in: don't pass logname/id information to faxq-helper
anymore (unless "-u" is set) - caused weird problems, gains nothing
Thu Feb 17 12:08:13 MET 2005 Gert Doering <gd@medat.de>
* fax/faxrunqd.in: speed up detection of new jobs in queue (<10s)
* fax/faxrunqd.in: change over to 'use strict' perl
Mon Feb 14 13:41:49 MET 2005 Karsten Keil <kkeil@suse.de>
* doc/mgetty.texi-in: dirindex node
* mgetty.h: on __powerpc64__ platforms, define PTR_IS_LONG
Wed Feb 9 10:46:08 MET 2005 Gert Doering <gert@greenie.muc.de>
* config.h: portability fixes ((int) cast) for 64bit platforms
Mon Jan 3 17:46:36 MET 2005 Matthias Andree <matthias.andree@gmx.de>
* fax/faxrunq.in: workaround for bash 3.x "trap" incompatibility
Wed Nov 24 14:33:43 MET 2004 Gert Doering <gd@medat.de>
* tools/microcom.c: add utra-light terminal program
* fax/faxrunqd.in: Implement 'sendfax-tty-map' (run
tty-specific sendfax binary)
* fax/faxrunqd.in, faxrunq.in: implement update-call-program
Sun Nov 14 21:28:07 MET 2004 fdc@cliwe.ping.de (Frank D. Cringle)
* frontends/X11/viewfax: import viewfax-2.6
Sat Nov 13 23:12:53 MET 2004 Gert Doering <gert@greenie.muc.de>
* doc/faxrunqd.8in: document sendfax-tty-map & update-call-program
* fax/faxspool.in: fix wrong test for "$HOME/.make.coverpg"
* fax/faxspool.in: fix spooling from stdin ("faxspool 123 -")
* faxlib.c: recognize "Eicon ISDN Modem" as DIVA card with class 2
Thu Nov 11 21:54:11 MET 2004 Gert Doering <gert@greenie.muc.de>
* t/Makefile, t/t_echo.sh: add tests for $ECHO setting
Mon Nov 8 21:07:35 MET 2004 Gert Doering <gert@greenie.muc.de>
* incorporate portability patches from NetBSD pkgsrc tree
Tue Nov 2 09:17:37 MET 2004 Gert Doering <gert@greenie.muc.de>
* add t/ subdirectory and t/t_conf.c struct/int size test program
* Makefile: call t/Makefile for "make test"
Sat Jul 24 16:54:52 MEST 2004 Gert Doering <gert@greenie.muc.de>
* release 1.1.31
* doc/mgetty.texi-in: add section on isdn4linux and CAPI
Sat Jul 17 17:21:38 MEST 2004 Gert Doering <gert@greenie.muc.de>
* doc/sff2g3.1in: add man page for sff2g3
Sat Jul 17 12:18:28 MEST 2004 Andreas Barth <aba@not.so.argh.org>
* cnd.c: add "+CLIP:" string for caller ID
* voice/libvoice/detect.c: ATI codes for Zoom and Multitech modems
* voice/libvoice/V253modem.c: more flexible sample/s. handling
(old stuff was fixed at 7200 hz)
* voice/pvftools/pvftormd.c: accept 7200, 8000, 11025 Hz for "Lucent"
* fax/faxspool.in: use per-user .faxheader/.make.coverpg files
instead of global defaults (if per-user files exists)
Fri Jul 16 19:03:48 MEST 2004 Gert Doering <gert@greenie.muc.de>
* g3/Makefile: add "make test" test suite (for G3 tools)
* g3/sff2g3.c: NEW: converter from CAPI SFF fax format to raw G3
* Makefile: pack g3/sff2g3.c
Thu Feb 5 18:40:29 MET 2004 Gert Doering <gert@greenie.muc.de>
* fax/faxspool: rework umask saving/restoring (use subshell trick)
Sat Jan 10 00:01:25 MET 2004 Gert Doering <gert@greenie.muc.de>
* faxlib.c: add 1503 ID code (ZyXEL U-90E)
Tue Dec 16 12:46:52 MET 2003 Andreas Barth <aba+nospam@not.so.argh.org>
* Makefile: remove -DAUTO_PPP
* policy.h: include FIDO and AUTO_PPP here
Fri Dec 5 22:46:47 MET 2003 Ken Findlay <kjf@taylorbritt.com>
* login.c: empty lines should never match, not even empty user names
Mon Nov 17 20:08:59 MET 2003 Gert Doering
* mgetty.c: log warning if parent PID is not "1" (init)
* mgetty.cfg.in: add clarification about "direct yes" to sample cfg
Fri Nov 7 21:47:27 MET 2003 Andreas Barth <aba+nospam@not.so.argh.org>
* fax/faxspool.in: add per-user faxheader and coverpg files
* doc/faxspool.1in, mgetty.texi: document new feature
Thu Oct 9 12:44:47 MEST 2003 Gert Doering
* fax/faxspool.in: reject empty (0 bytes) input files
Sun Oct 5 13:59:51 MEST 2003 Gert Doering
* do_chat.c: make clean_line() logging show the timeout value
Mon Sep 29 23:36:34 MEST 2003 Andreas Barth
* contrib/g3tolj.c, g3toxwd.c: clean up protoypes and return types
* various .c files: integrate Debian cleanup fixes (usually
adding <string.h> and/or <stdlib.h> where missing)
Wed Aug 20 12:39:53 MEST 2003 Gert Doering (gert@greenie.muc.de)
* fax/faxrunqd.in: change signal handling - use HUP for graceful
exit, and dump statistics to logfile upon receipt of USR2
Sat Jun 28 22:14:35 MEST 2003 Gert Doering (gert@greenie.muc.de)
* fax/faxq-helper.c: honour user umask when spooling G3 files
(user decides whether group/other can read faxes)
* fax/faxspoool.in: reset umask after creating tmpdir (with umask 077)
* fax/faxq-helper.c: file name validation was overly strict -
accept anything that's printable, not a space, '/' or '\'
Thu Jun 12 16:56:44 MEST 2003 Gert Doering (gert@greenie.muc.de)
* faxlib.c: Multitech and USR return class 2.0/2.1 +FPS:<x>,<lc>
values in decimal, not hex -> change +FPS: parser to do decimal
for those modems (via modem_quirks |= MQ_FPS_NOT_HEX)
* fax_lib.h: add MQ_FPS_NOT_HEX modem quirk bit
* faxrec.c, faxrecp.c: understand VR=8 for "normal mode" (200x100 dpi)
Mon Apr 28 19:41:14 MEST 2003 Gert Doering (gert@greenie.muc.de)
* logname: make "buffer overrun" error message more precise
Wed Apr 23 10:49:25 MEST 2003 John R. Jackson <jrj@purdue.edu>
* voice/libutil/access.c: more verbose error reporting
Wed Apr 9 23:05:23 MEST 2003 Gert Doering (gert@greenie.muc.de)
* fax/faxspool.in: fix spooling without header line (-h -)
Sun Apr 6 16:09:14 MEST 2003 Andreas Barth <aba@not.so.argh.org>
* mgetty.8in, mgetty.texi-in: document escape sequences for
/etc/issue and login prompt.
Wed Mar 5 21:37:38 MET 2003 Gert Doering (gert@greenie.muc.de)
* Makefile: abort "make install" before installing faxspool
if fax user does not exist
* Makefile: unconditionally chown $FAX_SPOOL_OUT to fax user
Tue Feb 4 17:46:45 MET 2003 Gert Doering (gert@greenie.muc.de)
* fax/faxq-helper.c: uid=0 overrides access permission checks
* fax/faxrm.in: bugfix: get faxq-helper path from sedscript
Tue Jan 21 14:27:39 MET 2003 Gert Doering (gert@greenie.muc.de)
* fax/faxspool.in: abort with a proper error message on input file
names containing white space or quote characters
Tue Jan 14 14:30:42 MET 2003 Gert Doering (gert@greenie.muc.de)
* fax/faxrunqd.in: include "success" counter in per_phone_statistics
* ugly.h: #define USE_VARARGS for non-Ansi C compilers
* logfile.c: change #include<> sequence to catch USE_VARARGS def.
Wed Jan 8 23:03:26 MET 2003 Gert Doering (gert@greenie.muc.de)
* fax/faxrunqd.in: if a fax job fails, reschedule on different
modem (if possible)
* voice/libvoice/V253modem.c: fix ELSA_RMD_NAME (used for
V.253 modem <-> other modem RMD equivalency checks)
Mon Dec 16 14:08:06 MET 2002 Gert Doering (gert@greenie.muc.de)
* release 1.1.30
Sun Dec 15 20:45:48 MET 2002 Gert Doering (gert@greenie.muc.de)
* voice/vgetty/answer.c, voice/include/default.c: integrate Paul
Fox' pre_message and beep_sound patches
Thu Dec 12 07:33:12 MET 2002 Gert Doering (gert@greenie.muc.de)
* voice/libvoice/detect.c: recognize MultiTech MT3334ZDXV
* faxhng.c: add some result codes for the i4l DIVA driver
* voice/libvoice/IS_101.c: fix DTMF events for the unshielded case
Thu Dec 5 17:40:05 MET 2002 Gert Doering (gert@greenie.muc.de)
* voice/vgetty/answer.c: accept arbitrary ring types, not only 0..6
Wed Dec 4 09:15:47 MET 2002 Gert Doering (gert@greenie.muc.de)
* ring.c: map DRON/DROF return codes to binary word, use result
as distinctive RING number
Tue Dec 3 23:10:05 MET 2002 Gert Doering (gert@greenie.muc.de)
* frontends/www/README: add user authentication example
Mon Nov 25 22:16:41 MET 2002 Gert Doering (gert@greenie.muc.de)
* voice/libvoice/V253modem.c: repair messed-up 16 bit PCM patch
Mon Nov 25 14:05:20 MET 2002 Gert Doering (gert@greenie.muc.de)
* release 1.1.29
* voice/libvoice/detect.c: insert delay before sending ATE0 to
modem (timing issue - modem might not have sent the full \r\n
sequence from the last "OK" yet when the new AT comes in)
Sat Nov 23 12:55:39 MET 2002 Gert Doering (gert@greenie.muc.de)
* doc/*.[158]in: bring man pages up to date
* tools/ltest.c, tools/mid.c: adapt to new lprintf() prototype
* mgetty.h, logfile.c: adapt to use <stdarg.h> and "..."
function declaration (unless USE_VARARGS is set, which is
needed for NeXT platforms). Karsten Keil <kkeil@suse.de>.
* Makefile: relax permissions on sendfax and faxrunq.config
install - must be readable/executeable by user "fax" now
* doc/faxrunqd.8in: document "-u", minor updates
* fax/faxrunqd.in, fax/faxspool.in, fax/faxrunq.in: revert
Aug 6, 200 change - put faxqueue_done back into $FAX_SPOOL_OUT/
(faxrunq/faxrunqd have no access rights to $VARRUNDIR/ anymore,
and $FAX_SPOOL_OUT is no longer world writeable anyway)
* fax/faxq.in: change from .last_run to faxqueue_done
* fax/faxrunqd.in: add "-u <user>" switch (set uid to <user>)
* fax/faxq-helper.c: finalize new fax queue handling using helper
process (suid fax) and a fax queue that is no longer
world-readable (open issue since 1994 :) )
* faxrecp.c: implement experimental teergrubing mode (signal
"page bad, please retransmit" at the end of each page - or just
hang up hard on caller). Activared with "modem-quirks 0x100"
or "0x200", respectively.
Tue Nov 19 12:13:46 MET 2002 Gert Doering (gert@greenie.muc.de)
* voice/libvoice/V253Modem.c: add 16 bit linear PCM support
(patch coming from Peter Bruley)
* voice/pvftools/pvftormd.c, rmdtopvf.c: add 16 bit linear PCM
* rework faxq-helper concept (suid root -> suid fax)
* fax/faxq.in: adap "-r" to use faxq-helper
Sun Nov 17 22:19:56 MET 2002 Gert Doering (gert@greenie.muc.de)
* fax/faxspool.in: adapt to use faxq-helper
* fax/faxrm.in: adapt to use faxq-helper
* Makefile: create FAX_SPOOL_OUT with mode 755 and owner FAX_OUT_USER
* Makefile: add FAX_OUT_USER definition, pass lots of variables
to fax/Makefile (for faxq-helper)
* README.1st: add instructions about FAX_OUT_USER setup
* doc/mgetty.texi-in add instructions about FAX_OUT_USER setup
Wed Nov 13 23:12:30 MET 2002 Gert Doering (gert@greenie.muc.de)
* fax/faxrunqd.in: fix symlink / file overwrite race in JOB files.
Pointed out by Jablonovsky Alexander <sasha@cit-saratov.ru>
* doc/faxrunq.8in: point out insecurity in symlink handling
Tue Nov 12 22:42:33 MET 2002 Nalin Dahyabhai <nalin@redhat.com>
* mgetty.h: Intel 64bit platforms (__x86_64__) needs PTR_IS_LONG
Wed Nov 6 23:56:05 MET 2002 Gert Doering (gert@greenie.muc.de)
* voice/libvoice/IS_101.c: implement DLE shielding for long DTMF tones
for V.253 (initially by Lee Howard <faxguy@howardsilvan.com>)
* mgetty.c: throw out DIST_RING #define - not used anymore
Tue Nov 5 22:41:29 MET 2002 Gert Doering (gert@greenie.muc.de)
* ring.c: make sure action strings (CONNECT) are only recognized
at the beginning if a line, not in the middle (Paul Fox,
pgf@foxharp.boston.ma.us, CALLER NAME = CONNECTICUT).
* cnd.c: replace non-printable characters and quotes in caller ID
or caller name strings with ' ' - safeguard for passing them to
shell later on.
Mon Nov 4 23:43:28 MET 2002 Gert Doering (gert@greenie.muc.de)
* doc/mgetty.texi-in: add stuff about recent multitech modems,
superfine+v.34 fax, and rework chapter about common problems
* faxlib.c: fix ugliness with USR modems reporting remote fax
ID as " 12345" -> skip leading '"' and all whitespace
Sun Oct 20 14:32:05 MEST 2002 Gert Doering (gert@greenie.muc.de)
* cnd.c: possible buffer overrun via CallName
(found by "A. Guru" <a.guru@sympatico.ca>)
Mon Apr 8 22:28:11 MEST 2002 Gert Doering (gert@greenie.muc.de)
* fax/faxrunqd: fix priority vs. write combining bug
Mon Mar 11 19:26:29 MET 2002 Gert Doering (gert@greenie.muc.de)
* login.c: check for close-on-exec bit on FD 0 (FreeBSD 4.1 bug)
Sat Mar 2 19:23:35 MET 2002 Gert Doering (gert@greenie.muc.de)
* login.c: export Caller Name as environment variable $CALLER_NAME
Wed Feb 20 18:28:40 MET 2002 Gert Doering (gert@greenie.muc.de)
* login.c: make message about bad permissions even more clear
Thu Jan 10 21:11:20 MET 2002 Gert Doering (gert@greenie.muc.de)
* release 1.1.28
* faxrec.c: replace "0"'s by "STDIN" (readability)
Fri Jan 4 18:50:31 MET 2002 Gert Doering (gert@greenie.muc.de)
* doc/mgetty.texi-in: some updates
* doc/faxrunq.1in, doc/faxrunqd.8in: document calling convention
changes (as below)
* fax/faxrunq(d).in: pass (last) sendfax return code as 2nd
argument to success/failure program
Mon Dec 17 22:55:56 MET 2001 Gert Doering (gert@greenie.muc.de)
* policy.h, utmp.c: incorporate some NetBSD changes
* various: change time() prototype to "time_t time(time_t *tloc)"
* mgetty.h, syslibs.h, logfile.c: some #ifdef fiddling for Darwin
Sun Dec 16 14:56:18 MET 2001 Gert Doering (gert@greenie.muc.de)
* doc/faxrunq.1in, doc/faxrunqd.8in: document more stuff
* fax/faxrunq, fax/faxrunqd: don't run queue if a file
$FAX_SPOOL_OUT/stop exists.
Sun Dec 2 14:23:34 CET 2001 Gert Doering (gert@greenie.muc.de)
* login.c: MAX_LOGIN_ARGS handling reworked (claimed N, but allowed
only N-1), plus warning message improved. <Juergen.Kosel@gmx.de>
Sun Oct 21 16:40:51 MEST 2001 Gert Doering (gert@greenie.muc.de)
* release 1.1.27
* doc/mgetty.texi-in: work on isdn4linux notes
* cnd.c (cndtable): add swedish ZyXEL caller ID format (T. Lundgren)
* cnd.c (cndtable): add "CALLED NUMBER:" (Jan Oberlaender/i4l)
Fri Sep 28 23:06:24 MEST 2001 Gert Doering (gert@greenie.muc.de)
* various: adaptions to OpenBSD (similar to NetBSD)
Mon Jun 18 22:26:08 MEST 2001 Gert Doering (gert@greenie.muc.de)
* mgetty.h: patch to adapt to Linux/S390 (PTR_IS_LONG)
* frontends/www/: integrate new version from Neko
Mon Apr 16 10:56:21 MEST 2001 Gert Doering (gert@greenie.muc.de)
* release 1.1.26
* frontends/windows/lprfax.txt: add description of "fax port monitor"
Tue Mar 13 21:32:47 MET 2001 Gert Doering (gert@greenie.muc.de)
* login.c: export current tty as $DEVICE to shell
Sat Feb 24 11:48:11 MET 2001 Gert Doering (gert@greenie.muc.de)
* updates to frontends/www/ (minor bug fixes)
* updates to voice/ (see voice/ChangeLog)
Sat Feb 24 12:47:19 2001 Marc SCHAEFER <schaefer@vulcan.alphanet.ch>
* dialin.config: added V253 codes for OUT_OF_AREA and PRIVATE.
Thu Feb 1 22:20:10 MET 2001 Gert Doering (gert@greenie.muc.de)
* release 1.1.25
Sat Jan 27 19:14:15 MET 2001 Gert Doering (gert@greenie.muc.de)
* mksed.c: fix @KVG_PID_FILE@
* getdisk.c: fix overflow on file systems with > 2G (2^31 bytes) free
* getdisk.c: default MINFREESPACE from policy.h was interpreted
as *bytes*, not as *kbytes*. Which kind of defeats the purpose
of checking for "enough disk space". Fixed, work with kbytes now.
Fri Jan 19 20:51:31 MET 2001 Gert Doering (gert@greenie.muc.de)
* ring.c: add isdn4linux form "RING/<dest.MSN>" (*sigh*)
Mon Jan 8 11:19:16 MET 2001 Gert Doering (gert@greenie.muc.de)
* goodies.c: fix include files (Linux/FreeBSD/SVR4 dependent)
Sun Jan 7 21:10:28 MET 2001 Gert Doering (gert@greenie.muc.de)
* release 1.1.24
Sun Jan 7 00:28:09 MET 2001 Gert Doering (gert@greenie.muc.de)
* faxrecp.c: check access rights first, space second (this will
give clearer log messages for non-existing directories)
* getdisk.c: fix #ifdef mess (this code did never work!)
Fri Jan 5 19:30:39 CET 2001 Gert Doering (gert@mobile.greenie.muc.de)
* faxrecp.c: accept multiple directories for fax storage,
separated by ':'. Use the first one that is writeable and
has enough disk space.
* mgetty.c, conf_mg.c, conf_mg.c: add "fax-spool-in" config file
option to set the incoming fax dir(s).
* doc/mgetty.texi-in: document fax-spool-in
Thu Jan 4 18:32:24 CET 2001 Gert Doering (gert@mobile.greenie.muc.de)
* faxrecp.c: change fax page writing to open( O_EXCL|O_CREAT )
* locks.c: use mkstemp() to create tmp file, if available,
open( O_EXCL|O_CREAT ) otherwise.
* goodies.c: FreeBSD 3.3 already has /proc/<pid>/cmdline
Thu Dec 21 23:04:25 MET 2000 Gert Doering (gert@greenie.muc.de)
* release 1.1.23
* goodies.c: on FreeBSD 4, use /proc/<pid>/cmdline
* mgetty.c: understand VMA_FAX vgetty return codes (unexpected +FCO)
Sat Sep 23 16:50:14 MEST 2000 Gert Doering (gert@greenie.muc.de)
* mgetty.h: Intel ia64 adaptions (PTR_IS_LONG)
(coming from RedHat patches)
Sat Aug 26 13:10:00 MEST 2000 Gert Doering (gert@greenie.muc.de)
* frontends/X11/: new viewfax version (2.5)
Thu Aug 17 19:58:20 MEST 2000 Gert Doering (gert@greenie.muc.de)
* release 1.1.22
Mon Aug 14 21:20:26 MEST 2000 Gert Doering (gert@greenie.muc.de)
* callback/callback.c: use VARRUNDIR instead of MGETTY_PID_FILE
* mgetty.c: use VARRUNDIR to get name of PID file, non-conditional
* policy.h: MGETTY_PID_FILE is gone, VARRUNDIR used instead
* mgetty.c: write CallerId to UTMP, if available, Connect otherwise
Sun Aug 6 16:13:43 MEST 2000 Gert Doering (gert@greenie.muc.de)
* fax/faxspool: convert .pdf files via Acroread (contributed by
Michael Fischer v. Mollard, mfvm@gmx.de).
* Makefile, mksed: introduce $VARRUNDIR
* fax/faxrunqd.in, fax/faxrunq.in, fax/faxspool.in: change
location of ".last_run" to $VARRUNDIR/faxqueue_done (previously,
$fax_spool_out/.last_run creation was vulnerable to symlink attacks)
Tue Jul 4 20:56:30 MEST 2000 Gert Doering (gert@greenie.muc.de)
* cnd.c: add NMBR=<nnn> format for Digi DataFire RAS
Tue Nov 02 15:23:52 1999 Gert Doering (gert@greenie.muc.de)
* login.c: add \Y hack (simplar to \I) to get CallerID in ut_host field
Sat Jul 31 22:10:09 1999 Gert Doering (gert@greenie.muc.de)
* faxlib.c: distinguish Elink 310 and Elink 343