-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
992 lines (810 loc) · 41.9 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
2014-02-11 P. A. Bagyenda <[email protected]>
* Per-mssc allow-adaptations patch, thanks to Jacek Raczkiewicz (jacek at skycore.com)
2013-12-16 P. A. Bagyenda <[email protected]>
* Misc speed-ups and patches thanks to Jacek Raczkiewicz (jacek at skycore.com)
2012-04-10 P. A. Bagyenda <[email protected]>
* Added ability to receive carrier ID info via special HTTP header in SOAP request to mmsbox (a la OpenMarket)
2011-10-11 P. A. Bagyenda <[email protected]>
* Fixed mem leaks in mmsc uaprof module
* Fixed mem leak in get_content_type function
2011-10-03 P. A. Bagyenda <[email protected]>
* Fixed: compilation issue
2011-09-23 P. A. Bagyenda <[email protected]>
* Fixed handling of received MM4_delivery_report.RES in mmsc code (thanks to Franz Schwartau (franzi at eletromail.org)
2011-09-20 P. A. Bagyenda <[email protected]>
* Fix: MM4_Forward.RES should include original msg ID (thanks to Franz Schwartau (franz at eletromail.org)
2011-09-08 P. A. Bagyenda <[email protected]>
* Exposed more functions in lib (get_stripped_param_value)
* Minor changes to mms_msg module
2011-08-29 P. A. Bagyenda <[email protected]>
* Added mygw_free func utility for use in gwlist_destroy and such
2011-07-27 P. A. Bagyenda <[email protected]>
* Fixed UAProf timestamp bug
2011-05-30 P. A. Bagyenda <[email protected]>
* Fixed mm5 parameters usage in mmsc_cfg.c
2011-05-05 P. A. Bagyenda <[email protected]>
* Further fixes for RFC 2047
* Optimize notification size by default
2011-05-04 P. A. Bagyenda <[email protected]>
* Fixed parsing of encoded-string-value that contains RFC 2047 text (e.g. To, Cc, Bcc fields)
2011-03-28 P. A. Bagyenda <[email protected]>
* Updated doc to include mmsbox admin interface info
2011-03-24 P. A. Bagyenda <[email protected]>
* Rolled MM1 MM7 module into main MMSBox code
2011-01-28 P. A. Bagyenda <[email protected]>
* Fix bug in http mmsc module
2011-01-12 P. A. Bagyenda <[email protected]>
* Improved mmsbox mm1 module -- added gprs-off command for better customisation of gprs on/off sequence
2011-01-06 P. A. Bagyenda <[email protected]>
* More fixes for strip-prefixes -- now applies to sender address as well
2011-01-05 P. A. Bagyenda <[email protected]>
* Added strip-prefixes option for each mmsc connection (mmsbox)
* Fixed building of shared libs on mac os x
2011-01-04 P. A. Bagyenda <[email protected]>
* mm1 mmsbox plugin fix Thanks to Piotr Isajew (pki at ex.com.pl)
2011-01-03 P. A. Bagyenda <[email protected]>
* Don't forget to call dlr URL even for failed transmit (with no retry). Thanks to Piotr Isajew (pki at ex.com.pl)
2010-12-09 P. A. Bagyenda <[email protected]>
* Changes to mmsbox to allow it send multiple recipients per MM7 transaction
2010-11-30 P. A. Bagyenda <[email protected]>
* Minor fix in RFC 2047 text handling
2010-11-29 P. A. Bagyenda <[email protected]>
* Add better handling of character sets in mms fields (RFC 2047)
2010-11-26 P. A. Bagyenda <[email protected]>
* Minor fix for default log level (thanks to Piotr Isajew (pki at ex.com.pl)
2010-11-23 P. A. Bagyenda <[email protected]>
* Minor fix in handling of extra mm7 headers
2010-11-16 P. A. Bagyenda <[email protected]>
* Minor bug fix, patch from Vincent Chavanis <v.chavanis at telemaque.fr>
2010-11-05 P. A. Bagyenda <[email protected]>
* Better event callback info (MM7 headers, etc)
2010-11-04 P. A. Bagyenda <[email protected]>
* Minor compiler error fixes
2010-11-03 P. A. Bagyenda <[email protected]>
* Fixed bug in configure.ac
2010-10-27 P. A. Bagyenda <[email protected]>
* Added smtp sender (direct instead of via sendmail command)
2010-10-26 P. A. Bagyenda <[email protected]>
* Misc bug fixes
2010-10-25 P. A. Bagyenda <[email protected]>
* Added MM4 incoming handler for mmsbox
2010-10-22 P. A. Bagyenda <[email protected]>
* Make a lib for mmsbox, make it easier to link external apps to its engine
2010-10-19 P. A. Bagyenda <[email protected]>
* Added new func to mms_cfg -- make it easier to implement module-based configuration
* Extended mmsbox_cfg load functions to make it easier to configure using modules
* Added alarm callback, event logging.
2010-09-21 P. A. Bagyenda <[email protected]>
* Patch to allow compilation under FreeBSD 8.1 (thanks to Piotr Isajew <pki at ex.com.pl>)
2010-08-09 P. A. Bagyenda <[email protected]>
* mmsbox-mm1 change: sleep after each run, so that under high load, we are not
hanging up too soon on modem
2010-08-04 P. A. Bagyenda <[email protected]>
* Fixed mmsbox-mm1 hangs under load, thanks to Piotr Isajew <pki at ex.com.pl>
2010-07-02 P. A. Bagyenda <[email protected]>
* Fixed crash due to octstr_delete on immutable string in mm7 receiver
2010-05-26 P. A. Bagyenda <[email protected]>
* Misc. patches/cleanups thanks to SATOH Fumiyasu <fumiyas at osstech.jp>
2010-01-25 P. A. Bagyenda <[email protected]>
* SunOS locking fixes (thanks to Ian Donaldson (iand at ekit-inc.com)
2010-01-04 P. A. Bagyenda <[email protected]>
* Minor fix, throttling in MMSC VASP connections
2009-12-01 P. A. Bagyenda <[email protected]>
* Change queue location for MM1 notifications
2009-11-22 P. A. Bagyenda <[email protected]>
* Added au audio format transcoding (thanks to Thilani Abeysinghe <a.thilani at gmail.com>)
2009-10-14 P. A. Bagyenda <[email protected]>
* Added Billing info to mmssend (thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr>)
* Fix for automake 1.1 (thanks to Vincent CHAVANIS <v.chavanis at telemaque.fr>)
* MMSC resolver module now takes two extra arguments: src interface (whence message received)
and ID of sender on that interface (e.g. vaspid)
2009-10-13 P. A. Bagyenda <[email protected]>
* Minor bug in mms_cfg.c -- get_bool fails if using pgsql for configs
2009-09-08 P. A. Bagyenda <[email protected]>
* Minor fix for compilation on FreeBSD (thanks to Revence Kalibwani)
2009-08-13 P. A. Bagyenda <[email protected]>
* Minor improvements in mms dump
2009-08-12 P. A. Bagyenda <[email protected]>
* Added extra logging to mmsbox_mm1 code
2009-08-06 P. A. Bagyenda <[email protected]>
* Improved handling of email recipients in mmsbox
* Fixed crash with email recipient
2009-07-07 P. A. Bagyenda <[email protected]>
* Updated License for mmsbox mm1 module
2009-07-02 P. A. Bagyenda <[email protected]>
* Added mmsbox mm1 plugin
2009-06-22 P. A. Bagyenda <[email protected]>
* Minor fix: GET HTTP request shouldn't have body
2009-05-05 P. A. Bagyenda <[email protected]>
* added mmsbox-maximum-request-attempts config param
2009-05-05 P. A. Bagyenda <[email protected]>
* MMSC fix: don't send subject in notification if size optimisation turned on
* Added mm1-queue-run-interval config option, so that MM1 queue can be processed at different interval
* Fixed: When MM1 notification attempts exceed maximum, do not delete message, rather wait for expiry
* Added mm1-maximum-notify-attempts config option, so that number of MM1 notifications can be controlled
separately from other delivery attempts
2009-03-28 P. A. Bagyenda <[email protected]>
* Improved pgsql-queue module: re-connect to db if connections die, only allocate as many connections as needed
2009-03-05 P. A. Bagyenda <[email protected]>
* Added strip_type flag (-x) to mmsfromemail
2009-03-03 P. A. Bagyenda <[email protected]>
* Added -n flag to prevent stripping of host/domain part from sender address on email2mms interface
2009-03-01 P. A. Bagyenda <[email protected]>
* pgsql-queue module fix: Connection pool should return only valid (active) connections
2009-02-25 P. A. Bagyenda <[email protected]>
* Added ChargedParty MM7/SOAP param to mmsbox
* Fixed: Improper setting of log level
2009-02-24 P. A. Bagyenda <[email protected]>
* Pass MM7/SOAP LinkedID to service url in mmsbox
* Minor improvements in pgsql-queue error reporting
2009-02-16 P. A. Bagyenda <[email protected]>
* Improved pgsql queue module performance
* MM1 queue changes - expire message even if fetched at least once
* MMSC changes: Allow start of subset of services (MM1, MM7, Relay) on host instance using mmsc-services config variable
2009-02-11 P. A. Bagyenda <[email protected]>
* Fix: Improved pgsql queue processing -- prevent queue flooding
2009-02-09 P. A. Bagyenda <[email protected]>
* Fix crash when message format is invalid
2009-02-03 P. A. Bagyenda <[email protected]>
* Fix: url replacement in SMIL
* Fix: sendmms port setup bug in mmsbox
2009-01-28 P. A. Bagyenda <[email protected]>
* Minor fix: mmsbox sendmms default content type
2009-01-22 P. A. Bagyenda <[email protected]>
* Fix: PGSQL Queue module was not honouring send_time fully
2009-01-21 P. A. Bagyenda <[email protected]>
* Minor fix in mmsc: fetch URL
2009-01-17 P. A. Bagyenda <[email protected]>
* Improved mmsc logging
* mmsc tools other than mmsc no longer attempt to open admin port
2009-01-16 P. A. Bagyenda <[email protected]>
* Minor update to mmsc mm1 notifier: cleanup
2009-01-12 P. A. Bagyenda <[email protected]>
* Minor fixes: Output from admin interfaces always valid XML
* Minor fixes: admin module
2008-12-24 P. A. Bagyenda <[email protected]>
* Improved MM1 performance
2008-12-17 P. A. Bagyenda <[email protected]>
* MM1 notify: increase parallelism
2008-12-10 P. A. Bagyenda <[email protected]>
* Extra mbuni headers in mmsbox url service call
* mmsbox EAIF receiver bug fix thanks to Marcin Bockowski ([email protected])
* Fix for email2mms handling when mms2email VASP defined
2008-12-09 P. A. Bagyenda <[email protected]>
* MSISDN and IP request headers now list (MMSC)
2008-12-04 P. A. Bagyenda <[email protected]>
* Minor patches for better Solaris compatibility (Thanks to Benno Rice <[email protected]>)
2008-12-01 P. A. Bagyenda <[email protected]>
* Misc. fixes to number normalisation in mmsbox
2008-11-26 P. A. Bagyenda <[email protected]>
* Added validityperiod sendmms cgi param
* Minor changes to mmsbox CDR logging to improve clarity
* Bug fix denied/allowed mmsc flag in mmsbox
2008-11-21 P. A. Bagyenda <[email protected]>
* Minor improvements in DLR processing (mmsbox)
2008-11-20 P. A. Bagyenda <[email protected]>
* Improved DLR status messages in mmsbox
* Minor memory leak fixed in MM7/SOAP processing
2008-11-14 P. A. Bagyenda <[email protected]>
* PSQL Queue module changes: optionally move message storage to file to improve performance
2008-11-12 P. A. Bagyenda <[email protected]>
* Improved DLR delivery to external URL (retries) in mmsbox
2008-11-04 P. A. Bagyenda <[email protected]>
* Minor fix for base64 decoding in URI with data: schema
2008-10-16 P. A. Bagyenda <[email protected]>
* Minor fix for DLR relaying (mmsbox).
2008-10-02 P. A. Bagyenda <[email protected]>
* Added vasp-id param to mmsbox mmsc config (thanks to Christian Theil Have <[email protected]>)
2008-09-30 P. A. Bagyenda <[email protected]>
* Fix in mbuni management interface XML output
2008-09-29 P. A. Bagyenda <[email protected]>
* Improved mmsbox DLR routing for status Forwarded
2008-09-15 P. A. Bagyenda <[email protected]>
* Order of XML tags in MM7 packet changed (shouldn't matter, but...)
2008-09-12 P. A. Bagyenda <[email protected]>
* Improved reporting of DLR Message-ID even with relay
2008-09-12 P. A. Bagyenda <[email protected]>
* Added facility for appending special response header to each message (mime) part in MM7 response
* Added mmsbox cdr logging
* Improved DLR relay when mmsbox relay used -- msgid rewrite
2008-09-11 P. A. Bagyenda <[email protected]>
* MMSBox HTTP MMSC type added, for inter-mmsbox message relay
* MM5 support, basic infrastructure on the MMSC side.
* Added default-vasid config param to mmsbox 'mmsc' group
2008-09-08 P. A. Bagyenda <[email protected]>
* MMSC admin interface added (start/stop/status of each VASP connection)
* MMSC VASP can now have multiple short codes
2008-09-04 P. A. Bagyenda <[email protected]>
* Minor fix/addition for Content-ID handling
* Generalised event logger module (to facilitate alarms, etc)
2008-09-02 P. A. Bagyenda <[email protected]>
* Added admin interface to mmsbox (can now start/stop and see status of any mmsc connection)
2008-09-01 P. A. Bagyenda <[email protected]>
* Rolled mmsrelay + mmsproxy into one item (for easier online management)
2008-08-29 P. A. Bagyenda <[email protected]>
* Changes to doc for config from DLL
* Misc. code re-ordering for mmsbox
2008-08-28 P. A. Bagyenda <[email protected]>
* Added ability to load config from a module rather than from file
2008-08-20 P. A. Bagyenda <[email protected]>
* Added default mmsc to send-mms-user (Martin)
2008-08-19 P. A. Bagyenda <[email protected]>
* Fix for Content-ID header in mmsbox (thanks to Vincent Chavanis <[email protected]>)
* Typo fix thanks to Martin Atukunda ([email protected])
* Fix for 3gp2 mime type (thanks to Vincent Chavanis)
2008-08-14 P. A. Bagyenda <[email protected]>
* Mmsbox will now queue message to email (outgoing) if recipient looks like an email address
2008-08-08 P. A. Bagyenda <[email protected]>
* Fix to content adaptation: Better handling of supported image types
thanks to George Barros <[email protected]>
* Improved stability of mms binary message parser when input is bad
2008-08-06 P. A. Bagyenda <[email protected]>
* Additional fixes for bad message formats causing crash
* Fix for incorrect From and To headers in DLR and RR messages
2008-08-05 P. A. Bagyenda <[email protected]>
* Minor fix for crash in mmsproxy with bad message type
2008-07-18 P. A. Bagyenda <[email protected]>
* Improved scalability for mmsbox - multiple receive handlers for mmc incoming and sendmms interface
2008-07-15 P. A. Bagyenda <[email protected]>
* Added file type application/vnd.mbuni.url-list for basic multipart/mixed type
2008-07-10 P. A. Bagyenda <[email protected]>
* Fixed minimum size of pgsql connection pool
* Fix for shutdown procedure
* Copyright notice updates
2008-07-09 P. A. Bagyenda <[email protected]>
* Fix for FROM address in MM4_delivery_report.REQ packet
2008-07-07 P. A. Bagyenda <[email protected]>
* Move to compile against Kannel-CVS
2008-07-07 P. A. Bagyenda <[email protected]>
* Message-ID fix -- added '@'
2008-07-04 P. A. Bagyenda <[email protected]>
* Minor fixes for PANICs in mms_msg.c
2008-07-01 P. A. Bagyenda <[email protected]>
* Minor fix to MM4 interface -- address formatting fix
2008-06-27 P. A. Bagyenda <[email protected]>
* Minor fix to MM4 .RES handling: use proxy sendmail command if present
2008-06-26 P. A. Bagyenda <[email protected]>
* Added pgsql-queue into build process (configure.ac)
* Misc. Changes to pluggable mmsbox-mmsc interface
2008-06-24 P. A. Bagyenda <[email protected]>
* Improved queue information: Included source interface
* Extra identifying headers on MMS2Email interface
2008-06-18 P. A. Bagyenda <[email protected]>
* added qcelp file extension to mime type mapping
2008-05-30 P. A. Bagyenda <[email protected]>
* Changed minimum version of MM7 to 5.1.0
2008-05-30 P. A. Bagyenda <[email protected]>
* Added send-mail-prog config param on per-MM4 connection basis
* MM1 fix: If device does not provide a valid WAP Profile URL, allow MMS through anyway.
2008-05-13 P. A. Bagyenda <[email protected]>
* Minor fixups on MM4 interface message coding
2008-05-13 P. A. Bagyenda <[email protected]>
* Separate number normalisation for each MM4 connection.
2008-05-05 P. A. Bagyenda <[email protected]>
* Normalisation of numbers inside messages as well
* Added strip-prefixes config parameter
2008-04-18 P. A. Bagyenda <[email protected]>
* Various memory leak fixes (thanks to Monchanin Eric @ Skycore)
2008-04-11 P. A. Bagyenda <[email protected]>
* Added no-sender-address config to mmsc section: Allows you to
* suppress SenderAddress SOAP/XML tag
2008-03-26 P. A. Bagyenda <[email protected]>
* Minor fix: mmsbox mms-service handling of POST parameters where no % spec given
2008-02-17 P. A. Bagyenda <[email protected]>
* Better throughput limit handling in MMSBox (thanks to Vincent Chavanis <[email protected])
2007-12-21 P. A. Bagyenda <[email protected]>
* Patches to permit compiling on SunOS
2007-12-15 P. A. Bagyenda <[email protected]>
* Added allowed-sender-prefix/denied-sender-prefix for mmsc group of mmsbox config
* Added allowed-receiver-prefix/denied-receiver-prefix to mms-service group of mmsbox config
2007-11-27 P. A. Bagyenda <[email protected]>
* Bug fix in mime convertor module
2007-11-07 P. A. Bagyenda <[email protected]>
* Added reroute-add-sender-to-subject config param for MMSBox
2007-09-25 P. A. Bagyenda <[email protected]>
* Added flag to conditionally remove mm7: XML namespace prefix
2007-09-18 P. A. Bagyenda <[email protected]>
* Support for custom MM7 MMC types using a loadable module.
2007-09-17 P. A. Bagyenda <[email protected]>
* Added pluggable MMSBOX routing using loadable module or shell script (see mmsbox_resolve.h)
2007-09-14 P. A. Bagyenda <[email protected]>
* Added http-interface-name config parameter
2007-09-06 P. A. Bagyenda <[email protected]>
* Added 'extras' directory, containing miscellaneous Mbuni addons.
2007-08-27 P. A. Bagyenda <[email protected]>
* added 'reroute' and 'reroute-mmsc-id' config. params to VAS GW MMSC configs
2007-08-20 P. A. Bagyenda <[email protected]>
* Generalised MMS Queue handling interface to allow different storage/delivery mechanisms.
2007-08-09 P. A. Bagyenda <[email protected]>
* Added send-dlr-on-fetch config param to MMC settings
2007-08-08 P. A. Bagyenda <[email protected]>
* Added User-Agent and UAProf URL arguments to call to prov-notify script in MMC.
2007-08-06 P. A. Bagyenda <[email protected]>
* Fix for DLR reporting in mmsbox (thanks to Skycore team)
* UACapabilities support for MM7/SOAP v6.x (thanks again to Skycore Team)
2007-08-03 P. A. Bagyenda <[email protected]>
* added mms-direction CGI param to send-mms interface (see doc for additional info)
2007-07-27 P. A. Bagyenda <[email protected]>
* Misc. fixes for DLR reporting, VAS GW
2007-07-13 P. A. Bagyenda <[email protected]>
* Introduced ability to filter MT MMS on the VAS side using a generalized module.
* send-mms interface now allows you to push content by specifying a url using content-url CGI param.
* Various minor fixes.
2007-06-21 P. A. Bagyenda <[email protected]>
* Better configurability of MM7/SOAP namespace URI and MM7 version.
2007-06-12 P. A. Bagyenda <[email protected]>
* Improved DLR reporting over MM4 interface - set recipient as from address
2007-05-08 P. A. Bagyenda <[email protected]>
* Improved MIME to MMS conversion conversion
2007-05-05 P. A. Bagyenda <[email protected]>
* Minor improvements to DLR handling in mmsbox. (Thanks to Vincent Chavanis <[email protected]>)
2007-04-13 P. A. Bagyenda <[email protected]>
* Minor fixups on handling of MM4 Forward ACK messages.
2007-04-12 P. A. Bagyenda <[email protected]>
* Improved MM7/SOAP message composition: better handling of different schema versions
2007-04-10 P. A. Bagyenda <[email protected]>
* Added outgoing Digest/MD5 HTTP authentication support (thanks to Gert Horne <[email protected]> for funding)
2007-04-10 P. A. Bagyenda <[email protected]>
* MM7/SOAP XMLNS string now configurable via setting per-MMC (or per-VASP) interface version
2007-04-02 Vincent Chavanis <[email protected]>
* Added group-id field to VAS GW MMC config
2007-03-20 P. A. Bagyenda <[email protected]>
* Major corrections to MM4 functionality, bringing conformance to 3GPP TS 23.140 (Thanks to Deon van der Merwe <[email protected]> for funding)
2007-03-09 P. A. Bagyenda <[email protected]>
* Patch to fix panic in the event of missing/corrupt data file in queue (Thanks to Deon van der Merwe <[email protected]>)
2007-01-31 Vincent Chavanis <[email protected]>
* Patch to allow controlling content adaptation on mmsbox side from sendmms interface
2007-01-30 Paul A. Bagyenda <[email protected]>
* Fix for MM4 incoming, thanks to Vincent Chavanis <[email protected]> (and
Deon van der Merwe <[email protected]> for testing)
2007-01-24 Paul A. Bagyenda <[email protected]>
* Fix crash for missing error code definition (thanks to Vincent Chavanis <[email protected]>)
2006-12-28 Paul A. Bagyenda <[email protected]>
* Removing '@' from transaction ID (thanks to Mario Noboa
2006-11-29 Paul A. Bagyenda <[email protected]>
* MM7/SOAP when Content XML tag missing 'cid:', don't fail
2006-11-28 Paul A. Bagyenda <[email protected]>
* Minor fix for MM7 VAS GW error code (should be VASPErrorRsp)
2006-11-27 Paul A. Bagyenda <[email protected]>
* Kannel dependency now pre-1.4.2 CVS
2006-11-25 Paul A. Bagyenda <[email protected]>
* Minor changes to remove work-arounds for Kannel GWLIB bugs (now fixed
in CVS)
2006-11-18 Paul A. Bagyenda <[email protected]>
* Minor fix for quoting of content type parameters in MIME & HTTP messages
(Message-ID: <[email protected]>)
2006-11-11 Paul A. Bagyenda <[email protected]>
* Minor fix in MM7 module (replycharging attribute),
thanks to Michel Martin <[email protected]>
2006-11-07 Paul A. Bagyenda <[email protected]>
* Improved source organisation (Changelog populated, better version string)
2006-11-03 Paul A. Bagyenda <[email protected]>
* Adding version file
2006-10-30 Paul A. Bagyenda <[email protected]>
* mm7: removal of some-url dummy in SOAP header
2006-10-27 Paul A. Bagyenda <[email protected]>
* Minor clean-up: fold *_shell MMSC external modules into main code
2006-10-19 Paul A. Bagyenda <[email protected]>
* Quotes around content subtype. Logica MMC parsing badly. Sigh!
2006-10-19 Paul A. Bagyenda <[email protected]>
* updates to MM7/SOAP: Add mm7 namespace to all tags
2006-10-17 Paul A. Bagyenda <[email protected]>
* Remove quotes from text/xml content type (to please Logica MMC!)
2006-10-16 Paul A. Bagyenda <[email protected]>
* fix: mm7/soap error code 4004 erroneously reported as 4001
2006-10-12 Paul A. Bagyenda <[email protected]>
* Mbuni updated to Kannel 1.4.1 -- initial stab
2006-09-14 Paul A. Bagyenda <[email protected]>
* MM7: Minor fix - remove MessageID field from all response types
but SubmitRsp
2006-09-06 Paul A. Bagyenda <[email protected]>
* MM7/SOAP fix: correctly map MessageID field to Message-ID on MM1
side configure.ac: add -Wall -O4 flags for gcc (Linux/Mac)
2006-09-02 Paul A. Bagyenda <[email protected]>
* MMSC fix: Do not copy DLRs to VASP who receives copies of local
messages
2006-09-01 Paul A. Bagyenda <[email protected]>
* MM7/EAIF: Force the message-id message header to whatever sent by
MMSC
2006-08-28 Paul A. Bagyenda <[email protected]>
* Minor fix: MM7 DeliverRsp should not have message ID parameter
(thanks to Stefan Koenig <[email protected]>)
2006-08-11 Paul A. Bagyenda <[email protected]>
* Added ServiceCode parameter to both sendmms cgi vars, and also
to mms-service
2006-08-07 Paul A. Bagyenda <[email protected]>
* Slight bug fixes - syntax issues
2006-07-27 Paul A. Bagyenda <[email protected]>
* Added message-ID parameter to prov-notify-script
2006-07-17 Paul A. Bagyenda <[email protected]>
* configure.ac fix for freebsd
2006-07-17 Paul A. Bagyenda <[email protected]>
* Improved handling of retrieve-conf message received on send
interfaces
2006-07-17 Paul A. Bagyenda <[email protected]>
* Slight changes in default log file paths (to separate mmsbox
log from mmsc log)
2006-07-14 Paul A. Bagyenda <[email protected]>
* Add MIME-Version header to email messages outgoing - check for
short code in globalsender before checking if local recipient
2006-07-13 Paul A. Bagyenda <[email protected]>
* Minor fix for ? char in sendsms url - Minor fix for default
queue run interval (was 0.1, now 5 secs)
2006-06-20 Paul A. Bagyenda <[email protected]>
* Allow Send-MMS port to support HTTP POST from HTML-style forms,
including enctype multipart/form-data
2006-06-02 Paul A. Bagyenda <[email protected]>
* Add: default message expiration for mmsbox message
2006-05-30 Paul A. Bagyenda <[email protected]>
* Initial import - sample mmsbox config
2006-05-30 Paul A. Bagyenda <[email protected]>
* further improvements to HTTP POST data sent by MMSBox to a
service: Always add filename parameter to each variable.
2006-05-29 Paul A. Bagyenda <[email protected]>
* MMSbox: Improved sending of data to service - try to send all
parts to look like files
2006-05-29 Paul A. Bagyenda <[email protected]>
* Max send attempts does not expire message, only expiry time does
2006-05-29 Paul A. Bagyenda <[email protected]>
* fix: reduce length of trans-id and msgid
2006-05-23 Paul A. Bagyenda <[email protected]>
* fix: allow mmsbox incoming mmsc conn without auth
2006-05-22 Paul A. Bagyenda <[email protected]>
* Fixed: double-free in mmsglobalsender
2006-05-15 Paul A. Bagyenda <[email protected]>
* Bug fix, failure when x-wap-profile header missing
2006-05-15 Paul A. Bagyenda <[email protected]>
* Fix for send local MMS to VASP
2006-05-13 Paul A. Bagyenda <[email protected]>
* CVS repository change noted in documentation
2006-05-13 Paul A. Bagyenda <[email protected]>
* Rationalised MM7 config for MMSC - Moved functions out of mmlib
that do not belong there - Improved logging in mmsproxy -
detokenize module improvements (send full url when no token) -
Add default mms-to-email subject config - Misc. changes
2006-05-08 Paul A. Bagyenda <[email protected]>
* further improvements to detokenizer module usage - send request
IP only to module if token missing
2006-05-08 Paul A. Bagyenda <[email protected]>
* Further fixes to detokenizer module usage - Code movement (from
mmlib to more specific mmsc where it is used)
2006-05-08 Paul A. Bagyenda <[email protected]>
* improved detokenizer_shell module: Added default token as "x"
2006-05-08 Paul A. Bagyenda <[email protected]>
* improved detokenizer_shell module: Script now receives 2nd
argument as request-ip
2006-05-06 Paul A. Bagyenda <[email protected]>
* Minor fix, better detection of IPv6 addresses.
2006-05-06 Paul A. Bagyenda <[email protected]>
* Improved logging of NotifyResp messages om MM1 interface
2006-05-03 Paul A. Bagyenda <[email protected]>
* Added config param to restrict response from mms-service (VAS
GW) - Added param for headers that should be sent to MMC are
received from mms-service response (VAS GW) - Fixed bug where
omit-empty param for VAS GW was actually ignored
2006-05-02 Paul A. Bagyenda <[email protected]>
* Minor bug fix (double free) in mmsbox
2006-04-19 Paul A. Bagyenda <[email protected]>
* Minor type cast -- compiler warning on 64bit machines
2006-04-18 Paul A. Bagyenda <[email protected]>
* Minor improvements to logging of failed MM7 connections -
Reduced default queue run interval
2006-04-12 Paul A. Bagyenda <[email protected]>
* Misc patches - message-ID format, resolver module fallbacks -
thanks to Dziugas Baltrunas
2006-04-12 Paul A. Bagyenda <[email protected]>
* More mmsbox fixes to please Ericsson MMC - Added 'vasid'
send-mms URL parameter
2006-04-06 Paul A. Bagyenda <[email protected]>
* Minor addition for MM7/SOAP -- add start element MIME type
2006-03-28 Paul A. Bagyenda <[email protected]>
* Further cleanups for MM7/Soap and mmsbox - better error
reporting, better xml content
2006-03-27 Paul A. Bagyenda <[email protected]>
* minor fix to shell-based resolver
2006-03-24 Paul A. Bagyenda <[email protected]>
* Changes to mm7/soap module to please java packages (Resin --
SOAP-ENV header prefered) - Removal of outdated config params
2006-03-21 Paul A. Bagyenda <[email protected]>
* Minor fix to mmsbox - send_eaif missing X-Mms-Transaction-ID
header
2006-03-10 Paul A. Bagyenda <[email protected]>
* More graceful crash when config groups mbuni & core missing -
Documentation fixes
2006-03-03 Paul A. Bagyenda <[email protected]>
* improved quoting of args
2006-03-02 Paul A. Bagyenda <[email protected]>
* Added escaping of shell characters in parameters to sendmail
command - Cleanup documentation (colour schemes)
2006-02-28 Paul A. Bagyenda <[email protected]>
* Added missing DeliveryReport header for MM7/SOAP
2006-02-28 Paul A. Bagyenda <[email protected]>
* Email2MMS now uses relay-hosts config rather than relay
prefixes (nod to number portability)
2006-02-28 Paul A. Bagyenda <[email protected]>
* Fixed error in interpretation of DeliveryReport field of
MM7/SOAP - Further cleanups of uaprof module
2006-02-24 Paul A. Bagyenda <[email protected]>
* Fix: Immediate fetch and store of missing UAProf data on demand
2006-02-24 Paul A. Bagyenda <[email protected]>
* remove profile engine startup in mmsrelay and mmssend
2006-02-24 Paul A. Bagyenda <[email protected]>
* Added gw_assert() calls and better error checking in mms_msg
module
2006-02-21 Paul A. Bagyenda <[email protected]>
* Minor fix for uaprof handling in mmsproxy -- improved fallback
2006-02-21 Paul A. Bagyenda <[email protected]>
* Bug fix in mms_billing_shell.c - honour return value of script
2006-02-21 Paul A. Bagyenda <[email protected]>
* Minor fix to mmlib/mms_cfg.c -- added errno.h
2006-02-17 Paul A. Bagyenda <[email protected]>
* Moved all config file handling out of Kannel into a Mbuni module
2006-02-09 Paul A. Bagyenda <[email protected]>
* Typo fixes
2006-01-23 Paul A. Bagyenda <[email protected]>
* Crash fix in mmsbox related to send-mms http interface bug
2006-01-11 Paul A. Bagyenda <[email protected]>
* Misc. memory leak fixes (thanks to [email protected]
2006-01-07 Paul A. Bagyenda <[email protected]>
* mmlib fix for missing transaction-id
2005-12-13 Paul A. Bagyenda <[email protected]>
* Fix for User-Agent version number string.
2005-12-12 Paul A. Bagyenda <[email protected]>
* increase max length of storage-directory file name
2005-11-15 Paul A. Bagyenda <[email protected]>
* mms_retrieveconf crash fix: ignore source message type
2005-11-09 Paul A. Bagyenda <[email protected]>
* fix: configure --with-kannel-dir should work
2005-11-06 Paul A. Bagyenda <[email protected]>
* Allow host-alias field to contain '/' and other nasty characters
2005-11-04 Paul A. Bagyenda <[email protected]>
* Improved sender/recipient address format checking
2005-10-31 Paul A. Bagyenda <[email protected]>
* update INSTALL file
2005-10-27 Paul A. Bagyenda <[email protected]>
* adding mmlib/.cvsignore
2005-10-25 Paul A. Bagyenda <[email protected]>
* Updated documentation and patch for mms-to-email and local mms
vasp handlers
2005-10-25 Paul A. Bagyenda <[email protected]>
* Added mms-to-email and local mms handler VASP
2005-10-25 Paul A. Bagyenda <[email protected]>
* Adding .cvsignore files Small bug fix to mmsmobilesender (if
recipient does not support mms and no message set, do not send
it)
2005-10-23 Paul A. Bagyenda <[email protected]>
* license fixes
2005-10-21 Paul A. Bagyenda <[email protected]>
* Message-ID insertion bug fix
2005-10-21 Paul A. Bagyenda <[email protected]>
* add makefile.am
2005-10-21 Paul A. Bagyenda <[email protected]>
* Fixes for message id mis-spelling in encoder/decoder
2005-10-20 Paul A. Bagyenda <[email protected]>
* Updates to documentation for new build procedures
2005-10-20 Paul A. Bagyenda <[email protected]>
* CVS cleanup to allow better/easier builds on Debian and others
2005-10-20 Paul A. Bagyenda <[email protected]>
* Fix to ensure shutdown of mmsproxy on signal
2005-10-17 Paul A. Bagyenda <[email protected]>
* Update documentation to cover VAS GW changes.
2005-10-17 Paul A. Bagyenda <[email protected]>
* Adding license to misc files, changing comment format in
configure.ac.
2005-09-27 Paul A. Bagyenda <[email protected]>
* Added request ip to detokenizer interface
2005-09-27 Paul A. Bagyenda <[email protected]>
* Bug fix: Keep message ID constant even when message crosses
multiple interfaces (mm1, mm7, etc)
2005-09-23 Paul A. Bagyenda <[email protected]>
* Fixed usage of allow-ip/deny-ip in mmsproxy and mmsbox
2005-09-22 Paul A. Bagyenda <[email protected]>
* Improvements to mmsproxy (do not free NULL Octstr)
2005-09-21 Paul A. Bagyenda <[email protected]>
* adding mmsbox.h to cvs
2005-09-15 Paul A. Bagyenda <[email protected]>
* Fixes for http-post-parameters in mmsbox, better handling of
x-mbuni-to header
2005-09-14 Paul A. Bagyenda <[email protected]>
* Misc. MM7 and EAIF fixes for MMSBox functionality
2005-09-12 Paul A. Bagyenda <[email protected]>
* Misc bug fixes in mmsbox module
2005-09-09 Paul A. Bagyenda <[email protected]>
* MMSBox bug fixes
2005-09-07 Paul A. Bagyenda <[email protected]>
* First implementation of mmsbox functionality, making Mbuni
provide client-side VAS functionality, similar to that provided
by Kannel for SMS.
2005-09-02 Paul A. Bagyenda <[email protected]>
* MMSBox init code
* Adding SSL support to Mbuni
2005-09-01 Paul A. Bagyenda <[email protected]>
* Re-organisation of functions and files in preparation for adding
MMSBox functionality
2005-08-03 Paul A. Bagyenda <[email protected]>
* m-retrieve-conf message not deleted from mobile queue after
notification to receiver
2005-07-26 Paul A. Bagyenda <[email protected]>
* Corrected use of notify-unprovisioned flag
2005-07-26 Paul A. Bagyenda <[email protected]>
* updates to summary change log
2005-07-15 Paul A. Bagyenda <[email protected]>
* Added content-adpatation config param to turn on/off content
adaptation
2005-07-14 Paul A. Bagyenda <[email protected]>
* Fix: If phone supports content type */* then it accepts even
presentations -- thanks to Mathias Hofmann
2005-07-08 Paul A. Bagyenda <[email protected]>
* Kannel patch update: coding of content-id value fixed, fix to
detect charset values in CAPS. Email2MMS: Removed extra email
headers that caused problems for some phones.
2005-07-06 Paul A. Bagyenda <[email protected]>
* Attempted fix for string quouting problem!
2005-07-05 Paul A. Bagyenda <[email protected]>
* reverting change to wap/wsp_header.c for quote (")
2005-07-04 Paul A. Bagyenda <[email protected]>
* Fixed mis-counting of send attempts in mmsrelay Improved handling
of email addresses in queue module Removed WSP_QUOTE patch to
kannel's wap/wsp_headers.c -- it appears it is not needed.
2005-07-04 Paul A. Bagyenda <[email protected]>
* Added support for HTTP proxy host/port a la Kannel (used for all
HTTP outgoing transactions)
2005-07-04 Paul A. Bagyenda <[email protected]>
* Improved reporting via prov-notify script Removed
prov-notify-script-arg config param
2005-07-01 Paul A. Bagyenda <[email protected]>
* bug fix: insert content-type header in message if missing, try
and guess what it should be by examining message body
2005-07-01 Paul A. Bagyenda <[email protected]>
* mime conversion bug affecting content adaption fixed
2005-06-23 Martin Atukunda <[email protected]>
* correct typo including mms_mm7soap.c twice, should be
mms_mm7soap.h
2005-06-23 Martin Atukunda <[email protected]>
* add mms_mm7soap.h to files included by make dist
2005-06-20 Paul A. Bagyenda <[email protected]>
* Minor update to kannel patch
2005-06-15 Paul A. Bagyenda <[email protected]>
* misc. updates
2005-06-02 Paul A. Bagyenda <[email protected]>
* fixed crash in mm7soap proxy
2005-06-01 Paul A. Bagyenda <[email protected]>
* Removed dangerous use of tmpnam()
2005-05-27 Paul A. Bagyenda <[email protected]>
* Removed hard-coded reference to /tmp/ directory.
2005-05-26 Paul A. Bagyenda <[email protected]>
* Minor fix to EAIF module
2005-05-24 Paul A. Bagyenda <[email protected]>
* Improved handling of mal-formed binary messages
2005-05-20 Paul A. Bagyenda <[email protected]>
* check for null body when mime converting
2005-05-20 Paul A. Bagyenda <[email protected]>
* Minor code changes to enable warning-free compile with gcc 4.0
2005-05-11 Paul A. Bagyenda <[email protected]>
* fix for non-standard opendir() on reiserfs
2005-05-05 Paul A. Bagyenda <[email protected]>
* Minor fix to mmsproxy (max number of mmbox messages returned in
query)
2005-05-05 Paul A. Bagyenda <[email protected]>
* Minor fix to mmsproxy
2005-05-02 Paul A. Bagyenda <[email protected]>
* Update to mbuni-kannel-patch (OMA-OTA code).
2005-04-29 Paul A. Bagyenda <[email protected]>
* Minor bug fix to mm7soap handler -- no crash if http body is
empty.
2005-04-25 Paul A. Bagyenda <[email protected]>
* Fixes to documentation
2005-04-25 Paul A. Bagyenda <[email protected]>
* Minor changes to configure script (remove dependencies implied by
kannel dependency)
2005-04-22 Paul A. Bagyenda <[email protected]>
* Changes to config file: All queue-directory directives replaced
by single 'storage-directory' directive.
2005-04-21 Paul A. Bagyenda <[email protected]>
* Added vaspid to billing and cdr modules
2005-04-20 Paul A. Bagyenda <[email protected]>
* update to Makefile.in
2005-04-19 Søren Hansen <[email protected]>
* Added another couple of files missing from the dist
2005-04-19 Paul A. Bagyenda <[email protected]>
* update to mmlib/Makefile.in -- via automake
2005-04-19 Paul A. Bagyenda <[email protected]>
* Removing trailing slashes from queue dir name
2005-04-19 Paul A. Bagyenda <[email protected]>
* misc. fixes to view.conf message creation.
2005-04-19 Paul A. Bagyenda <[email protected]>
* Changes to queue directory structure (now uses a maildir-style
structure) Misc. fixes.
2005-04-19 Søren Hansen <[email protected]>
* Added mms_strings.def to EXTRA_DIST
2005-04-18 Paul A. Bagyenda <[email protected]>
* misc fixes to mmsproxy
2005-04-18 Paul A. Bagyenda <[email protected]>
* Misc. fixes to eaif implementation
2005-04-18 Paul A. Bagyenda <[email protected]>
* EAIF implementation, first stab.
2005-04-15 Paul A. Bagyenda <[email protected]>
* misc. code syntax fixes.
2005-04-15 Paul A. Bagyenda <[email protected]>
* Minor code fixes.
2005-04-14 Paul A. Bagyenda <[email protected]>
* Misc. documentation updates - for mmsrelay and mm7
2005-04-14 Paul A. Bagyenda <[email protected]>
* mmsglobalsender & mmsmobilsender folded into one -- mmsrelay.
2005-04-14 Paul A. Bagyenda <[email protected]>
* MM7/SOAP implementation now tested + misc bug fixes
2005-04-08 Paul A. Bagyenda <[email protected]>
* Minor fixes to mmbox code, more mm7
2005-04-07 Paul A. Bagyenda <[email protected]>
* Misc. bug fixes, beginnings of MM7 work.
2005-04-04 Paul A. Bagyenda <[email protected]>
* fixes to detokenizer, added detonizer func + adding of token to
url sent in notification fixed issue with dlsym when using fink's
dlopen removed token comparison in fetch (i.e. rationalised use
of fetch url parameters)
2005-04-01 Paul A. Bagyenda <[email protected]>
* minor bug fix.
2005-04-01 Paul A. Bagyenda <[email protected]>
* Minor bug fixes.
2005-04-01 Paul A. Bagyenda <[email protected]>
* Added documentation to CVS.
2005-04-01 Paul A. Bagyenda <[email protected]>
* Small fixes for IP address senders in mmsproxy.
2005-04-01 Paul A. Bagyenda <[email protected]>
* Minor updates to mmsmobilsender to allow for dumping Ind. PDU
2005-03-31 Paul A. Bagyenda <[email protected]>
* Time stamp updates on configure files, removing old mmbox stuff
from mmsmobilesender
2005-03-30 Paul A. Bagyenda <[email protected]>
* added missing autoconf files, updated others.
2005-03-30 Paul A. Bagyenda <[email protected]>
* Fixes for crashing mmsproxy when sender address not found.
2005-03-30 Paul A. Bagyenda <[email protected]>
* Misc. updates (autoconf)
2005-03-29 Paul A. Bagyenda <[email protected]>
* Slight changes to message decoder.
2005-03-28 Paul A. Bagyenda <[email protected]>
* Updated example conf.
2005-03-28 Paul A. Bagyenda <[email protected]>
* Putting configure stuff back.
2005-03-24 Søren Hansen <[email protected]>
* Fixed a few memory freeing issues which were probably only
significant on platforms with REALLY braindead malloc/free
implementations
2005-03-23 Paul A. Bagyenda <[email protected]>
* updated license in config script
2005-03-23 Paul A. Bagyenda <[email protected]>
* Change of License to GPL
2005-03-21 Paul A. Bagyenda <[email protected]>
* Added directory for misc patches.
2005-03-21 Paul A. Bagyenda <[email protected]>
* MMbox code, now (mostly) up to speed.
2005-03-19 Paul A. Bagyenda <[email protected]>
* Added mmbox handler module, fixes to message coder/decoder.
2005-03-19 Søren Hansen <[email protected]>
* Added some error checking
2005-03-16 Paul A. Bagyenda <[email protected]>
* Fixes to message decoding/encoding after introduction of mmbox
changes.
2005-03-16 Paul A. Bagyenda <[email protected]>
* Added Soren's changes for optimising size of notification.ind
2005-03-16 Paul A. Bagyenda <[email protected]>
* Initial changes for mmbox, addition of removed autoconf files...
2005-03-12 Søren Hansen <[email protected]>
* Added configuration parsing for allow-ip-type
2005-03-11 Søren Hansen <[email protected]>
* Sends Error-sending-address-unresolved back to unresolved
senders
* Adds detokenizing functionality
* Adds a few example billing, resolver and detokenizer libraries
2005-03-11 Søren Hansen <[email protected]>
* Cleaned up the CVS tree
2005-03-10 Paul A. Bagyenda <[email protected]>
* Preparing for MMbox changes
2005-03-10 Søren Hansen <[email protected]>
* A few references to billing-module should have been to
resolver-module. Fixed.
2005-03-10 Paul A. Bagyenda <[email protected]>
* Initial import
$Date: 2014/02/11 12:43:53 $