File: ChangeLog

package info (click to toggle)
nullmailer 1.00RC7-22
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,192 kB
  • ctags: 695
  • sloc: cpp: 4,375; sh: 519; makefile: 249; perl: 184; ansic: 10
file content (947 lines) | stat: -rw-r--r-- 29,809 bytes parent folder | download
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
------------------------------------------------------------------------
rev 103:  bruce | 2003-01-03 15:49:25 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/README

Bumped up the version to 1.00RC7

------------------------------------------------------------------------
rev 102:  bruce | 2003-01-03 15:49:13 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/makedist.in

Added the ChangeLog.old file to the list of extras.

------------------------------------------------------------------------
rev 101:  bruce | 2003-01-03 15:02:46 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/lib/address-old.cc
   M /trunk/lib/address.cc
   M /trunk/lib/canonicalize.cc
   M /trunk/lib/config_read.cc
   M /trunk/lib/config_readint.cc
   M /trunk/lib/config_readlist.cc
   M /trunk/lib/errcodes.cc
   M /trunk/lib/hostname.cc
   M /trunk/lib/makefield.cc
   M /trunk/lib/tcpconnect.cc
   M /trunk/makedist.in
   M /trunk/protocols/protocol.cc
   M /trunk/protocols/qmqp.cc
   M /trunk/protocols/smtp.cc
   M /trunk/src/inject.cc
   M /trunk/src/mailq.cc
   M /trunk/src/queue.cc
   M /trunk/src/send.cc
   M /trunk/src/sendmail.cc

Updated dates on copyright marks.

------------------------------------------------------------------------
rev 100:  bruce | 2003-01-03 15:02:18 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   D /trunk/ChangeLog
   A /trunk/ChangeLog.old (from /trunk/ChangeLog:76)

Renamed ChangeLog to allow use of svn-generated ChangeLog

------------------------------------------------------------------------
rev 99:  bruce | 2003-01-03 14:51:59 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/doc/nullmailer-send.8
   M /trunk/src/send.cc

Added a one-shot mode to nullmailer-send.

------------------------------------------------------------------------
rev 98:  bruce | 2003-01-03 14:40:21 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/src/send.cc

Reset reload_files to false when the files are reloaded.

------------------------------------------------------------------------
rev 97:  bruce | 2002-12-27 08:28:33 -0600 (Fri, 27 Dec 2002) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/protocols/smtp.cc

Fixed typo in smtp.cc -- "me" should be "hh".

------------------------------------------------------------------------
rev 96:  bruce | 2002-12-27 08:24:33 -0600 (Fri, 27 Dec 2002) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/configure.in

Bumped up version to 1.00RC7

------------------------------------------------------------------------
rev 94:  bruce | 2002-12-23 14:50:55 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/README

Removed CVS note.

------------------------------------------------------------------------
rev 93:  bruce | 2002-12-23 14:50:42 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/README

Set date to today.

------------------------------------------------------------------------
rev 92:  bruce | 2002-12-23 12:25:01 -0600 (Mon, 23 Dec 2002) | 3 lines
Changed paths:
   M /trunk/NEWS

Added note about new protocol module messages, new control file, and
FutureQuest sponsorship.

------------------------------------------------------------------------
rev 91:  bruce | 2002-12-23 12:22:39 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/protocols/protocol.cc

Fixups: also show the failure message, and use the proper exit code.

------------------------------------------------------------------------
rev 90:  bruce | 2002-12-23 12:19:58 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/protocols/protocol.cc
   M /trunk/protocols/protocol.h
   M /trunk/protocols/qmqp.cc
   M /trunk/protocols/smtp.cc

Show success messages as well.

------------------------------------------------------------------------
rev 89:  bruce | 2002-12-23 12:14:11 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/protocols/smtp.cc

Removed the superfluous "QUIT" command.

------------------------------------------------------------------------
rev 88:  bruce | 2002-12-23 12:11:57 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/protocols/protocol.cc
   M /trunk/protocols/protocol.h
   M /trunk/protocols/qmqp.cc
   M /trunk/protocols/smtp.cc

Output error messages when exiting with a failure code.

------------------------------------------------------------------------
rev 87:  bruce | 2002-12-23 12:11:03 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/src/send.cc

Allow protocol modules to output their own error messages.

------------------------------------------------------------------------
rev 86:  bruce | 2002-12-23 11:52:49 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/test/tests/inject/from
   M /trunk/test/tests/inject/sender

Make sure to remove default{domain,host} before testing use of "me".

------------------------------------------------------------------------
rev 85:  bruce | 2002-12-23 11:52:22 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/doc/nullmailer-queue.8
   M /trunk/src/queue.cc

Use the "me" control as the hostname to remap with adminaddr.

------------------------------------------------------------------------
rev 84:  bruce | 2002-12-23 11:51:17 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/src/inject.cc

Use the "me" control as the idhost, not a default file.

------------------------------------------------------------------------
rev 83:  bruce | 2002-12-23 11:50:38 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/doc/nullmailer-inject.1
   M /trunk/lib/hostname.cc

Fixed up and documented the default host/domain rules.

------------------------------------------------------------------------
rev 82:  bruce | 2002-12-23 11:38:45 -0600 (Mon, 23 Dec 2002) | 3 lines
Changed paths:
   M /trunk/lib/canonicalize.cc

Only append a "." to the domain name (when appending the defaultdomain)
if it isn't empty.

------------------------------------------------------------------------
rev 81:  bruce | 2002-12-23 11:27:33 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/spec

Auto-create /etc/nullmailer/{me,defaultdomain} on install.

------------------------------------------------------------------------
rev 80:  bruce | 2002-12-23 11:22:36 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/test/functions
   M /trunk/test/tests/inject/from
   M /trunk/test/tests/inject/message-id
   M /trunk/test/tests/inject/sender
   M /trunk/test/tests/protocols
   M /trunk/test/tests/queue/rewrite

Fixed up tests for the new "me" control file.

------------------------------------------------------------------------
rev 79:  bruce | 2002-12-23 10:59:48 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/test/functions
   M /trunk/test/tests/inject/bad-headers
   M /trunk/test/tests/inject/date
   M /trunk/test/tests/inject/from
   M /trunk/test/tests/inject/message-id
   M /trunk/test/tests/inject/recips
   M /trunk/test/tests/inject/return-path
   M /trunk/test/tests/inject/sender

Fixup the tests for the more strict bash2 syntax.

------------------------------------------------------------------------
rev 78:  bruce | 2002-12-23 10:59:26 -0600 (Mon, 23 Dec 2002) | 2 lines
Changed paths:
   M /trunk/test/Makefile.am

Skip over the .svn directory instead of the CVS directory.

------------------------------------------------------------------------
rev 77:  bruce | 2002-12-17 11:49:04 -0600 (Tue, 17 Dec 2002) | 2 lines
Changed paths:
   M /trunk/configure.in

Renamed lib/cli to lib/cli++

------------------------------------------------------------------------
rev 74:  bruce | 2002-12-14 23:36:45 -0600 (Sat, 14 Dec 2002) | 2 lines
Changed paths:
   M /trunk/lib/Makefile.am
   M /trunk/protocols/Makefile.am
   M /trunk/protocols/protocol.cc
   M /trunk/src/Makefile.am
   M /trunk/src/inject.cc
   M /trunk/src/sendmail.cc

Renamed lib/cli to lib/cli++ to match the current sources.

------------------------------------------------------------------------
rev 73:  bruce | 2002-12-14 23:29:43 -0600 (Sat, 14 Dec 2002) | 2 lines
Changed paths:
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
rev 72:  bruce | 2002-12-14 23:29:39 -0600 (Sat, 14 Dec 2002) | 2 lines
Changed paths:
   M /trunk/test/address-test.cc

Added some empty address list tests.

------------------------------------------------------------------------
rev 71:  bruce | 2002-12-14 23:29:06 -0600 (Sat, 14 Dec 2002) | 2 lines
Changed paths:
   M /trunk/doc/nullmailer-inject.1
   M /trunk/doc/nullmailer-send.8

Clarified documentation.

------------------------------------------------------------------------
rev 70:  bruce | 2002-12-14 23:28:13 -0600 (Sat, 14 Dec 2002) | 3 lines
Changed paths:
   M /trunk/protocols/Makefile.am
   M /trunk/src/Makefile.am
   M /trunk/test/Makefile.am

Remove the CXXLINK hack that prevents compilation with newer versions of
gcc.

------------------------------------------------------------------------
rev 69:  bruce | 2002-12-14 23:27:40 -0600 (Sat, 14 Dec 2002) | 2 lines
Changed paths:
   M /trunk/protocols/smtp.cc
   M /trunk/src/send.cc

Pass $HELOHOST on to the protocol modules.

------------------------------------------------------------------------
rev 68:  bruce | 2002-12-14 23:21:51 -0600 (Sat, 14 Dec 2002) | 2 lines
Changed paths:
   M /trunk/lib/canonicalize.cc
   M /trunk/lib/hostname.cc
   M /trunk/lib/hostname.h
   M /trunk/protocols/smtp.cc
   M /trunk/src/inject.cc
   M /trunk/src/queue.cc

Completed the conversion from hostname() to the new config files.

------------------------------------------------------------------------
rev 67:  bruce | 2002-12-14 21:18:09 -0600 (Sat, 14 Dec 2002) | 2 lines
Changed paths:
   M /trunk/NEWS

Fixed a bug in the setenv function in sendmail.cc.

------------------------------------------------------------------------
rev 66:  bruce | 2001-09-21 23:15:29 -0600 (Fri, 21 Sep 2001) | 2 lines
Changed paths:
   M /trunk/src/sendmail.cc

The parameter for putenv must not be automatic.

------------------------------------------------------------------------
rev 65:  bruce | 2001-08-25 21:49:12 -0600 (Sat, 25 Aug 2001) | 2 lines
Changed paths:
   M /trunk/src/inject.cc

Drop address header fields with blank contents.

------------------------------------------------------------------------
rev 64:  bruce | 2001-08-25 21:46:23 -0600 (Sat, 25 Aug 2001) | 2 lines
Changed paths:
   M /trunk/lib/address.cc

Completed handling empty address lists.

------------------------------------------------------------------------
rev 63:  bruce | 2001-08-25 21:15:31 -0600 (Sat, 25 Aug 2001) | 2 lines
Changed paths:
   M /trunk/lib/address.cc

Modified to properly parse an empty address field as empty.

------------------------------------------------------------------------
rev 62:  bruce | 2001-07-09 19:39:40 -0600 (Mon, 09 Jul 2001) | 2 lines
Changed paths:
   M /trunk/makedist.in

Updated for the new untroubled.org web site.

------------------------------------------------------------------------
rev 61:  bruce | 2001-07-09 19:39:18 -0600 (Mon, 09 Jul 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
rev 60:  bruce | 2001-07-09 19:38:54 -0600 (Mon, 09 Jul 2001) | 3 lines
Changed paths:
   M /trunk/scripts/nullmailer.run

Redirect stderr to stdout before starting anything else to catch error
messages.

------------------------------------------------------------------------
rev 59:  bruce | 2001-07-09 19:38:29 -0600 (Mon, 09 Jul 2001) | 2 lines
Changed paths:
   M /trunk/protocols/smtp.cc

Fixed a quoting bug with handling lines starting with ".".

------------------------------------------------------------------------
rev 58:  bruce | 2001-07-09 19:37:33 -0600 (Mon, 09 Jul 2001) | 2 lines
Changed paths:
   M /trunk/configure.in

Tidied up the library function checks.

------------------------------------------------------------------------
rev 57:  bruce | 2001-07-09 19:36:59 -0600 (Mon, 09 Jul 2001) | 2 lines
Changed paths:
   M /trunk/src/sendmail.cc

Added an ignored option entry from the sendmail "-m" option.

------------------------------------------------------------------------
rev 56:  bruce | 2001-03-29 15:57:30 -0600 (Thu, 29 Mar 2001) | 2 lines
Changed paths:
   M /trunk/HOWTO

Fixed instructions on RPM startup.

------------------------------------------------------------------------
rev 55:  bruce | 2001-03-29 15:57:06 -0600 (Thu, 29 Mar 2001) | 2 lines
Changed paths:
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
rev 54:  bruce | 2001-03-29 15:56:36 -0600 (Thu, 29 Mar 2001) | 2 lines
Changed paths:
   M /trunk/spec

Removed unnecessary init.d directory, and added in the man7 pages.

------------------------------------------------------------------------
rev 53:  bruce | 2001-02-27 16:38:05 -0600 (Tue, 27 Feb 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/configure.in
   M /trunk/lib/makefield.cc
   M /trunk/src/send.cc

Fixed some include file problems with sys/time.h.

------------------------------------------------------------------------
rev 52:  bruce | 2001-02-07 15:45:32 -0600 (Wed, 07 Feb 2001) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/README

*** empty log message ***

------------------------------------------------------------------------
rev 51:  bruce | 2001-02-07 15:45:13 -0600 (Wed, 07 Feb 2001) | 2 lines
Changed paths:
   M /trunk/src/send.cc

Modified to always attempt to send everything in the queue.

------------------------------------------------------------------------
rev 50:  bruce | 2001-02-01 20:30:36 -0600 (Thu, 01 Feb 2001) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/configure.in

Bumped up version number to 1.00RC6.

------------------------------------------------------------------------
rev 49:  bruce | 2001-02-01 20:28:53 -0600 (Thu, 01 Feb 2001) | 2 lines
Changed paths:
   M /trunk/lib/hostname.cc
   M /trunk/src/send.cc

Added a missing include.

------------------------------------------------------------------------
rev 48:  bruce | 2000-12-30 04:22:46 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/NEWS

Added 1.00RC5 release notes.

------------------------------------------------------------------------
rev 47:  bruce | 2000-12-30 04:18:42 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/makedist.in
   M /trunk/spec

*** empty log message ***

------------------------------------------------------------------------
rev 46:  bruce | 2000-12-30 04:16:46 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/spec

Make the service directory.

------------------------------------------------------------------------
rev 45:  bruce | 2000-12-30 04:12:45 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/configure.in

Bumped up version number.

------------------------------------------------------------------------
rev 44:  bruce | 2000-12-30 03:47:26 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   D /trunk/scripts/nullmailer.init

Removed unnecessary init script.

------------------------------------------------------------------------
rev 43:  bruce | 2000-12-30 03:47:17 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/spec

Modified to use supervise-scripts 3.

------------------------------------------------------------------------
rev 42:  bruce | 2000-12-30 03:41:21 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/protocols/smtp.cc

Return proper error codes for permanent and temporary SMTP failures.

------------------------------------------------------------------------
rev 41:  bruce | 2000-12-30 03:41:02 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/lib/hostname.cc

Fixed the prototype for getdomainname.

------------------------------------------------------------------------
rev 40:  bruce | 2000-12-30 03:40:44 -0600 (Sat, 30 Dec 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/HOWTO

*** empty log message ***

------------------------------------------------------------------------
rev 39:  bruce | 2000-08-30 14:58:37 -0600 (Wed, 30 Aug 2000) | 2 lines
Changed paths:
   M /trunk/lib/hostname.cc

Moved extern declaration of getdomainname out of the function.

------------------------------------------------------------------------
rev 38:  bruce | 2000-08-28 23:11:45 -0600 (Mon, 28 Aug 2000) | 2 lines
Changed paths:
   M /trunk/Makefile.am

Added missing INSTALL dist file.

------------------------------------------------------------------------
rev 37:  bruce | 2000-08-28 23:11:09 -0600 (Mon, 28 Aug 2000) | 2 lines
Changed paths:
   D /trunk/scripts/init
   A /trunk/scripts/nullmailer-log.run
   A /trunk/scripts/nullmailer.init
   A /trunk/scripts/nullmailer.run
   D /trunk/scripts/run-log
   D /trunk/scripts/run-svc
   M /trunk/spec

Renamed the script files.

------------------------------------------------------------------------
rev 36:  bruce | 2000-08-28 18:07:50 -0600 (Mon, 28 Aug 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog

Fixed up forgotten ChangeLog entries.

------------------------------------------------------------------------
rev 35:  bruce | 2000-08-28 18:00:15 -0600 (Mon, 28 Aug 2000) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README

Final RC4 update.

------------------------------------------------------------------------
rev 34:  bruce | 2000-08-28 17:58:38 -0600 (Mon, 28 Aug 2000) | 2 lines
Changed paths:
   M /trunk/test/address-test.cc

Test addresses with trailing periods.

------------------------------------------------------------------------
rev 33:  bruce | 2000-08-28 17:57:43 -0600 (Mon, 28 Aug 2000) | 2 lines
Changed paths:
   M /trunk/lib/address.cc

Fixed to handle addresses with trailing periods.

------------------------------------------------------------------------
rev 32:  bruce | 2000-08-15 19:28:46 -0600 (Tue, 15 Aug 2000) | 3 lines
Changed paths:
   M /trunk/lib/hostname.cc

Added extern declaration of getdomainname for systems that don't declare
it.

------------------------------------------------------------------------
rev 31:  bruce | 2000-08-15 19:28:25 -0600 (Tue, 15 Aug 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
rev 30:  bruce | 2000-08-15 19:21:22 -0600 (Tue, 15 Aug 2000) | 3 lines
Changed paths:
   M /trunk/HOWTO
   D /trunk/INSTALL
   M /trunk/README
   M /trunk/TODO

Updated install instructions in HOWTO, removed the modified INSTALL
document.

------------------------------------------------------------------------
rev 29:  bruce | 2000-08-15 19:13:24 -0600 (Tue, 15 Aug 2000) | 2 lines
Changed paths:
   A /trunk/INSTALL

Added custom INSTALL instructions.

------------------------------------------------------------------------
rev 28:  bruce | 2000-08-15 16:45:39 -0600 (Tue, 15 Aug 2000) | 2 lines
Changed paths:
   M /trunk/acinclude.m4

Ignore warnings from compile output.

------------------------------------------------------------------------
rev 27:  bruce | 2000-08-14 15:05:51 -0600 (Mon, 14 Aug 2000) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/acinclude.m4
   M /trunk/configure.in

Fixed the reversed named pipe bug logic.

------------------------------------------------------------------------
rev 26:  bruce | 2000-08-11 05:10:25 -0600 (Fri, 11 Aug 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/README
   M /trunk/makedist.in

1.00RC3 release checkin.

------------------------------------------------------------------------
rev 25:  bruce | 2000-08-11 05:09:41 -0600 (Fri, 11 Aug 2000) | 2 lines
Changed paths:
   M /trunk/test/address-test.cc

Fixed a problem with multiple use of itoa.

------------------------------------------------------------------------
rev 24:  bruce | 2000-08-10 18:48:19 -0600 (Thu, 10 Aug 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/acconfig.h
   M /trunk/acinclude.m4
   M /trunk/configure.in

Added configure test for named pipe bug.

------------------------------------------------------------------------
rev 23:  bruce | 2000-08-10 18:47:53 -0600 (Thu, 10 Aug 2000) | 2 lines
Changed paths:
   M /trunk/src/inject.cc

Fixed header parsing logic.

------------------------------------------------------------------------
rev 22:  bruce | 2000-08-08 05:09:35 -0600 (Tue, 08 Aug 2000) | 2 lines
Changed paths:
   M /trunk/src/send.cc

Added code to handle systems that require a writer on the named pipe.

------------------------------------------------------------------------
rev 21:  bruce | 2000-08-08 05:08:43 -0600 (Tue, 08 Aug 2000) | 2 lines
Changed paths:
   M /trunk/src/sendmail.cc

Added a handler for the -L sendmail option (ignored).

------------------------------------------------------------------------
rev 20:  bruce | 2000-08-08 05:08:08 -0600 (Tue, 08 Aug 2000) | 2 lines
Changed paths:
   M /trunk/doc/Makefile.am
   A /trunk/doc/sendmail.1

Added man page for the sendmail emulator.

------------------------------------------------------------------------
rev 19:  bruce | 2000-08-08 04:43:47 -0600 (Tue, 08 Aug 2000) | 2 lines
Changed paths:
   M /trunk/doc/Makefile.am
   A /trunk/doc/nullmailer.7

Added an overall man page for nullmailer.

------------------------------------------------------------------------
rev 18:  bruce | 2000-08-08 04:31:02 -0600 (Tue, 08 Aug 2000) | 2 lines
Changed paths:
   M /trunk/Makefile.am

Fixed a typo in the root-install chmods.

------------------------------------------------------------------------
rev 17:  bruce | 2000-08-08 04:16:13 -0600 (Tue, 08 Aug 2000) | 2 lines
Changed paths:
   M /trunk/lib/tcpconnect.cc

Fixed some typos.

------------------------------------------------------------------------
rev 16:  bruce | 2000-07-07 18:21:53 -0600 (Fri, 07 Jul 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/TODO

Fixed up release notes.

------------------------------------------------------------------------
rev 15:  bruce | 2000-07-04 03:37:35 -0600 (Tue, 04 Jul 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/lib/hostname.cc

Fixed typo in lib/hostname.cc

------------------------------------------------------------------------
rev 14:  bruce | 2000-06-28 15:27:46 -0600 (Wed, 28 Jun 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/NEWS
   M /trunk/acconfig.h
   M /trunk/acinclude.m4
   M /trunk/configure.in

Added utsname tests to configure.

------------------------------------------------------------------------
rev 13:  bruce | 2000-06-28 15:26:44 -0600 (Wed, 28 Jun 2000) | 2 lines
Changed paths:
   M /trunk/lib/hostname.cc
   M /trunk/lib/mergelib.sh

Fixed domain name determination bug, and portability fix in mergelib.sh

------------------------------------------------------------------------
rev 12:  bruce | 2000-06-28 15:26:05 -0600 (Wed, 28 Jun 2000) | 2 lines
Changed paths:
   M /trunk/protocols/smtp.cc

Fixed response number bug.

------------------------------------------------------------------------
rev 11:  bruce | 2000-06-19 19:47:50 -0600 (Mon, 19 Jun 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog
   M /trunk/lib/tcpconnect.cc

Fixed a minor type bug.

------------------------------------------------------------------------
rev 10:  bruce | 2000-06-15 15:26:49 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog

Final release 1.00RC1 check in.

------------------------------------------------------------------------
rev 9:  bruce | 2000-06-15 15:22:13 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   M /trunk/NEWS

Final 1.00RC1 check in.

------------------------------------------------------------------------
rev 8:  bruce | 2000-06-15 15:20:59 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/configure.in

Fixed up NEWS and README to reflect new version number.

------------------------------------------------------------------------
rev 7:  bruce | 2000-06-15 15:13:53 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   M /trunk/lib/address-old.cc
   M /trunk/lib/address.cc
   M /trunk/lib/canonicalize.cc
   M /trunk/lib/config_read.cc
   M /trunk/lib/config_readint.cc
   M /trunk/lib/config_readlist.cc
   M /trunk/lib/errcodes.cc
   M /trunk/lib/hostname.cc
   M /trunk/lib/makefield.cc
   M /trunk/lib/tcpconnect.cc
   M /trunk/protocols/protocol.cc
   M /trunk/protocols/qmqp.cc
   M /trunk/protocols/smtp.cc
   M /trunk/src/inject.cc
   M /trunk/src/mailq.cc
   M /trunk/src/queue.cc
   M /trunk/src/send.cc
   M /trunk/src/sendmail.cc

Fixed up copyright notices.

------------------------------------------------------------------------
rev 6:  bruce | 2000-06-15 15:13:42 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   M /trunk/ChangeLog

Added note on bug fix to lib/makefields.cc

------------------------------------------------------------------------
rev 5:  bruce | 2000-06-15 14:59:15 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   D /trunk/test/address-test

Removed compiled binary file address-test.

------------------------------------------------------------------------
rev 4:  bruce | 2000-06-15 14:58:41 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   M /trunk/protocols/Makefile.am
   M /trunk/protocols/protocol.h
   M /trunk/protocols/qmqp.cc
   M /trunk/protocols/smtp.cc
   M /trunk/src/inject.cc
   M /trunk/src/mailq.cc
   M /trunk/src/queue.cc
   M /trunk/src/send.cc
   M /trunk/src/sendmail.cc
   M /trunk/test/Makefile.am
   M /trunk/test/address-test
   M /trunk/test/address-test.cc

Fixed include file paths.

------------------------------------------------------------------------
rev 3:  bruce | 2000-06-15 14:58:12 -0600 (Thu, 15 Jun 2000) | 3 lines
Changed paths:
   M /trunk/lib/Makefile.am
   M /trunk/lib/address.cc
   M /trunk/lib/address.h
   M /trunk/lib/canonicalize.cc
   M /trunk/lib/canonicalize.h
   M /trunk/lib/config_read.cc
   M /trunk/lib/config_readint.cc
   M /trunk/lib/config_readlist.cc
   M /trunk/lib/configio.h
   M /trunk/lib/connect.h
   D /trunk/lib/defines.cc
   D /trunk/lib/fdbuf.h
   M /trunk/lib/hostname.cc
   A /trunk/lib/make_defines.sh
   M /trunk/lib/makefield.cc
   A /trunk/lib/mergelib.sh
   D /trunk/lib/mystring.h
   M /trunk/lib/netstring.h

Fixed include file paths, added missing shell scripts and removed some
unnecessary headers.

------------------------------------------------------------------------
rev 2:  bruce | 2000-06-15 14:57:32 -0600 (Thu, 15 Jun 2000) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/configure.in
   M /trunk/makedist.in

Bumped the version number, and touched up the README and NEWS.

------------------------------------------------------------------------
rev 1:  bruce | 2000-02-16 18:24:45 -0600 (Wed, 16 Feb 2000) | 2 lines
Changed paths:
   A /trunk
   A /trunk/AUTHORS
   A /trunk/BUGS
   A /trunk/ChangeLog
   A /trunk/HOWTO
   A /trunk/Makefile.am
   A /trunk/NEWS
   A /trunk/README
   A /trunk/TODO
   A /trunk/YEAR2000
   A /trunk/acconfig.h
   A /trunk/acinclude.m4
   A /trunk/configure.in
   A /trunk/doc
   A /trunk/doc/Makefile.am
   A /trunk/doc/diagram
   A /trunk/doc/nullmailer-inject.1
   A /trunk/doc/nullmailer-queue.8
   A /trunk/doc/nullmailer-send.8
   A /trunk/lib
   A /trunk/lib/Makefile.am
   A /trunk/lib/address-old.cc
   A /trunk/lib/address.cc
   A /trunk/lib/address.h
   A /trunk/lib/canonicalize.cc
   A /trunk/lib/canonicalize.h
   A /trunk/lib/config_read.cc
   A /trunk/lib/config_readint.cc
   A /trunk/lib/config_readlist.cc
   A /trunk/lib/configio.h
   A /trunk/lib/connect.h
   A /trunk/lib/defines.cc
   A /trunk/lib/defines.h
   A /trunk/lib/errcodes.cc
   A /trunk/lib/errcodes.h
   A /trunk/lib/fdbuf.h
   A /trunk/lib/hostname.cc
   A /trunk/lib/hostname.h
   A /trunk/lib/itoa.cc
   A /trunk/lib/itoa.h
   A /trunk/lib/list.h
   A /trunk/lib/listtest.cc
   A /trunk/lib/makefield.cc
   A /trunk/lib/mystring.h
   A /trunk/lib/netstring.cc
   A /trunk/lib/netstring.h
   A /trunk/lib/tcpconnect.cc
   A /trunk/makedist.in
   A /trunk/protocols
   A /trunk/protocols/Makefile.am
   A /trunk/protocols/protocol.cc
   A /trunk/protocols/protocol.h
   A /trunk/protocols/qmqp.cc
   A /trunk/protocols/smtp.cc
   A /trunk/scripts
   A /trunk/scripts/init
   A /trunk/scripts/run-log
   A /trunk/scripts/run-svc
   A /trunk/spec
   A /trunk/src
   A /trunk/src/Makefile.am
   A /trunk/src/address-main.cc
   A /trunk/src/inject.cc
   A /trunk/src/mailq.cc
   A /trunk/src/queue.cc
   A /trunk/src/send.cc
   A /trunk/src/sendmail.cc
   A /trunk/test
   A /trunk/test/Makefile.am
   A /trunk/test/address-test
   A /trunk/test/address-test.cc
   A /trunk/test/address-trace.cc
   A /trunk/test/functions
   A /trunk/test/tests
   A /trunk/test/tests/inject
   A /trunk/test/tests/inject/bad-headers
   A /trunk/test/tests/inject/date
   A /trunk/test/tests/inject/from
   A /trunk/test/tests/inject/message-id
   A /trunk/test/tests/inject/recips
   A /trunk/test/tests/inject/return-path
   A /trunk/test/tests/inject/sender
   A /trunk/test/tests/protocols
   A /trunk/test/tests/queue
   A /trunk/test/tests/queue/rewrite

Imported sources.

------------------------------------------------------------------------