File: ChangeLog

package info (click to toggle)
nullmailer 1%3A1.03-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,524 kB
  • ctags: 695
  • sloc: cpp: 4,484; sh: 4,123; makefile: 224; perl: 184
file content (1199 lines) | stat: -rw-r--r-- 37,751 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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
------------------------------------------------------------------------
r135 | bruce | 2005-11-02 11:52:21 -0600 (Wed, 02 Nov 2005) | 3 lines
Changed paths:
   M /trunk/TODO
   M /trunk/lib/Makefile.am
   A /trunk/lib/base64.cc (from /trunk/protocols/smtp.cc:134)
   A /trunk/lib/base64.h
   M /trunk/protocols/smtp.cc

Broken the base64 conversion out of protocols/smtp.cc (and simplified it
greatly in the process).

------------------------------------------------------------------------
r134 | bruce | 2005-11-02 11:11:22 -0600 (Wed, 02 Nov 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/doc/nullmailer-send.8
   M /trunk/protocols/protocol.cc
   M /trunk/protocols/protocol.h
   M /trunk/protocols/qmqp.cc
   M /trunk/protocols/smtp.cc

Added support for SMTP AUTH PLAIN
Thanks Ace Jones <ace.j@hotpop.com>

------------------------------------------------------------------------
r133 | bruce | 2005-11-02 10:50:37 -0600 (Wed, 02 Nov 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/lib/list.h

Fixed compile error in lib/list.h

------------------------------------------------------------------------
r132 | bruce | 2005-11-02 10:50:11 -0600 (Wed, 02 Nov 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/configure.in

Bumped version to 1.01

------------------------------------------------------------------------
r130 | bruce | 2005-02-28 11:54:04 -0600 (Mon, 28 Feb 2005) | 2 lines
Changed paths:
   M /trunk/lib/Makefile.am

Fixed up lib Makefile to properly dist the ac directory.

------------------------------------------------------------------------
r129 | bruce | 2005-02-28 11:49:53 -0600 (Mon, 28 Feb 2005) | 2 lines
Changed paths:
   M /trunk/lib/makefield.cc
   M /trunk/src/send.cc

Renamed ac/time.h to ac/systime.h to prevent #include recursion.

------------------------------------------------------------------------
r128 | bruce | 2005-02-28 11:28:34 -0600 (Mon, 28 Feb 2005) | 2 lines
Changed paths:
   M /trunk/README

Updated dates, version, and em.ca URLs.

------------------------------------------------------------------------
r127 | bruce | 2005-02-28 11:28:11 -0600 (Mon, 28 Feb 2005) | 2 lines
Changed paths:
   M /trunk/HOWTO

Removed note about my daemontools RPMs as they are no longer really mailtained.

------------------------------------------------------------------------
r126 | bruce | 2005-02-28 11:27:45 -0600 (Mon, 28 Feb 2005) | 2 lines
Changed paths:
   M /trunk/TODO

Added some TODOs for protocols, I just want to get 1.00 out the door.

------------------------------------------------------------------------
r125 | bruce | 2005-02-28 11:20:39 -0600 (Mon, 28 Feb 2005) | 2 lines
Changed paths:
   M /trunk/makedist.in

Updated links to em.ca to untroubled.org

------------------------------------------------------------------------
r124 | bruce | 2005-02-28 11:20:15 -0600 (Mon, 28 Feb 2005) | 2 lines
Changed paths:
   M /trunk/TODO

Removed note about documentation fix.

------------------------------------------------------------------------
r123 | bruce | 2005-02-25 18:14:31 -0600 (Fri, 25 Feb 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/configure.in

Bumped version to 1.00 (no RC status)

------------------------------------------------------------------------
r122 | bruce | 2005-02-25 18:07:54 -0600 (Fri, 25 Feb 2005) | 2 lines
Changed paths:
   M /trunk/TODO

Removed extra TODO item as nullmailer-inject already handles it.

------------------------------------------------------------------------
r121 | bruce | 2005-02-25 18:06:16 -0600 (Fri, 25 Feb 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/src/inject.cc

Fixed bug in handling headers containing CR+LF line endings.

------------------------------------------------------------------------
r120 | bruce | 2005-02-25 17:52:31 -0600 (Fri, 25 Feb 2005) | 2 lines
Changed paths:
   M /trunk/test/functions

Use a plain grep instead of formail to extract header entries.

------------------------------------------------------------------------
r119 | bruce | 2005-02-25 17:52:15 -0600 (Fri, 25 Feb 2005) | 2 lines
Changed paths:
   M /trunk/test/tests/inject/recips
   M /trunk/test/tests/inject/sender

Use the "-n" argument to head and tail commands.

------------------------------------------------------------------------
r118 | bruce | 2005-02-25 17:50:11 -0600 (Fri, 25 Feb 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/src/inject.cc

Fixed bug in header parsing that would cause the last header line to 
be repeated if there was no body.

------------------------------------------------------------------------
r117 | bruce | 2005-02-25 16:33:59 -0600 (Fri, 25 Feb 2005) | 2 lines
Changed paths:
   D /trunk/acconfig.h
   M /trunk/acinclude.m4
   M /trunk/configure.in

Adjusted usage for newest automake 1.9 and autoconf 2.59 tools.

------------------------------------------------------------------------
r116 | bruce | 2005-02-21 16:23:55 -0600 (Mon, 21 Feb 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/src/send.cc

Fixed problem with multiple arguments to protocol modules.
Thanks Sascha Silbe <sascha-ml-nullmailer@silbe.org>

------------------------------------------------------------------------
r115 | bruce | 2005-02-21 10:56:44 -0600 (Mon, 21 Feb 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/protocols/smtp.cc

Fixed extraneous spaces in SMTP sender.

------------------------------------------------------------------------
r114 | bruce | 2003-02-12 17:47:07 -0600 (Wed, 12 Feb 2003) | 2 lines
Changed paths:
   M /trunk/doc/nullmailer.7

Added reference to "me" config file in top-level documentation.

------------------------------------------------------------------------
r113 | bruce | 2003-01-15 11:34:45 -0600 (Wed, 15 Jan 2003) | 3 lines
Changed paths:
   M /trunk/test/address-test.cc

Fixed a bug in reporting errors in the result string -- they do need a
newline.

------------------------------------------------------------------------
r112 | bruce | 2003-01-15 11:34:08 -0600 (Wed, 15 Jan 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/lib/address.cc
   M /trunk/test/address-test.cc

Fixed the address parser handling domain names with trailing periods.

------------------------------------------------------------------------
r111 | bruce | 2003-01-13 14:21:50 -0600 (Mon, 13 Jan 2003) | 3 lines
Changed paths:
   M /trunk/protocols/protocol.cc
   M /trunk/src/inject.cc
   M /trunk/src/sendmail.cc

Fixed the warning on the cli_options list end marker.
Patch from Martin Godisch <martin@godisch.de>

------------------------------------------------------------------------
r110 | bruce | 2003-01-11 22:31:15 -0600 (Sat, 11 Jan 2003) | 4 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/src/sendmail.cc

Handle the "-bs" flag in the sendmail wrapper by dieing when we see it.
http://bugs.debian.org/170079
Patch from Martin Godisch <martin@godisch.de>

------------------------------------------------------------------------
r109 | bruce | 2003-01-11 22:27:24 -0600 (Sat, 11 Jan 2003) | 3 lines
Changed paths:
   M /trunk/lib/list.h
   M /trunk/src/sendmail.cc

Fixed some compile warnings.
Patch from Martin Godisch <martin@godisch.de>

------------------------------------------------------------------------
r108 | bruce | 2003-01-11 22:25:07 -0600 (Sat, 11 Jan 2003) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/src/queue.cc

Made permissions on queued files more strict.
http://bugs.debian.org/164951

------------------------------------------------------------------------
r107 | bruce | 2003-01-11 22:24:18 -0600 (Sat, 11 Jan 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/configure.in

Bumped version up to 1.00RC8

------------------------------------------------------------------------
r106 | bruce | 2003-01-03 17:10:21 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/TODO

Removed old items.

------------------------------------------------------------------------
r105 | bruce | 2003-01-03 17:09:46 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/HOWTO

Added note about setting up the "me" config file.

------------------------------------------------------------------------
r103 | 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

------------------------------------------------------------------------
r102 | 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.

------------------------------------------------------------------------
r101 | 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.

------------------------------------------------------------------------
r100 | 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

------------------------------------------------------------------------
r99 | 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.

------------------------------------------------------------------------
r98 | 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.

------------------------------------------------------------------------
r97 | 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".

------------------------------------------------------------------------
r96 | 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

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

Removed CVS note.

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

Set date to today.

------------------------------------------------------------------------
r92 | 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.

------------------------------------------------------------------------
r91 | 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.

------------------------------------------------------------------------
r90 | 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.

------------------------------------------------------------------------
r89 | 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.

------------------------------------------------------------------------
r88 | 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.

------------------------------------------------------------------------
r87 | 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.

------------------------------------------------------------------------
r86 | 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".

------------------------------------------------------------------------
r85 | 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.

------------------------------------------------------------------------
r84 | 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.

------------------------------------------------------------------------
r83 | 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.

------------------------------------------------------------------------
r82 | 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.

------------------------------------------------------------------------
r81 | 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.

------------------------------------------------------------------------
r80 | 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.

------------------------------------------------------------------------
r79 | 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.

------------------------------------------------------------------------
r78 | 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.

------------------------------------------------------------------------
r77 | 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++

------------------------------------------------------------------------
r74 | 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.

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

*** empty log message ***

------------------------------------------------------------------------
r72 | 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.

------------------------------------------------------------------------
r71 | 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.

------------------------------------------------------------------------
r70 | 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.

------------------------------------------------------------------------
r69 | 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.

------------------------------------------------------------------------
r68 | 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.

------------------------------------------------------------------------
r67 | 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.

------------------------------------------------------------------------
r66 | 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.

------------------------------------------------------------------------
r65 | 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.

------------------------------------------------------------------------
r64 | 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.

------------------------------------------------------------------------
r63 | 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.

------------------------------------------------------------------------
r62 | 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.

------------------------------------------------------------------------
r61 | 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 ***

------------------------------------------------------------------------
r60 | 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.

------------------------------------------------------------------------
r59 | 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 ".".

------------------------------------------------------------------------
r58 | 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.

------------------------------------------------------------------------
r57 | 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.

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

Fixed instructions on RPM startup.

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

*** empty log message ***

------------------------------------------------------------------------
r54 | 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.

------------------------------------------------------------------------
r53 | 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.

------------------------------------------------------------------------
r52 | 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 ***

------------------------------------------------------------------------
r51 | 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.

------------------------------------------------------------------------
r50 | 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.

------------------------------------------------------------------------
r49 | 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.

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

Added 1.00RC5 release notes.

------------------------------------------------------------------------
r47 | 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 ***

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

Make the service directory.

------------------------------------------------------------------------
r45 | 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.

------------------------------------------------------------------------
r44 | 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.

------------------------------------------------------------------------
r43 | 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.

------------------------------------------------------------------------
r42 | 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.

------------------------------------------------------------------------
r41 | 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.

------------------------------------------------------------------------
r40 | 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 ***

------------------------------------------------------------------------
r39 | 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.

------------------------------------------------------------------------
r38 | 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.

------------------------------------------------------------------------
r37 | 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.

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

Fixed up forgotten ChangeLog entries.

------------------------------------------------------------------------
r35 | 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.

------------------------------------------------------------------------
r34 | 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.

------------------------------------------------------------------------
r33 | 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.

------------------------------------------------------------------------
r32 | 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.

------------------------------------------------------------------------
r31 | 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 ***

------------------------------------------------------------------------
r30 | 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.

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

Added custom INSTALL instructions.

------------------------------------------------------------------------
r28 | 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.

------------------------------------------------------------------------
r27 | 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.

------------------------------------------------------------------------
r26 | 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.

------------------------------------------------------------------------
r25 | 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.

------------------------------------------------------------------------
r24 | 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.

------------------------------------------------------------------------
r23 | 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.

------------------------------------------------------------------------
r22 | 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.

------------------------------------------------------------------------
r21 | 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).

------------------------------------------------------------------------
r20 | 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.

------------------------------------------------------------------------
r19 | 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.

------------------------------------------------------------------------
r18 | 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.

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

Fixed some typos.

------------------------------------------------------------------------
r16 | 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.

------------------------------------------------------------------------
r15 | 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

------------------------------------------------------------------------
r14 | 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.

------------------------------------------------------------------------
r13 | 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

------------------------------------------------------------------------
r12 | 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.

------------------------------------------------------------------------
r11 | 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.

------------------------------------------------------------------------
r10 | 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.

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

Final 1.00RC1 check in.

------------------------------------------------------------------------
r8 | 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.

------------------------------------------------------------------------
r7 | 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.

------------------------------------------------------------------------
r6 | 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

------------------------------------------------------------------------
r5 | 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.

------------------------------------------------------------------------
r4 | 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.

------------------------------------------------------------------------
r3 | 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.

------------------------------------------------------------------------
r2 | 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.

------------------------------------------------------------------------
r1 | 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.

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