forked from bayousoft/phplist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.presf
1604 lines (866 loc) · 29.6 KB
/
changelog.presf
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
#### ChangeLog before move to SourceForge
Changelog for PHPlist 2003-11-21 20:50
2003-11-20 18:21 michiel
added merging of attributes
2003-11-20 18:21 michiel
moved attributes into commonlib
2003-11-20 12:18 michiel
added userid and groups to session info
2003-11-18 13:31 michiel
updated frontend security access
2003-11-18 13:10 michiel
moved mozilla sidebar to plugin
2003-11-18 13:09 michiel
added display of foreign key (if one) to list of users
2003-11-18 13:08 michiel
updated CVS import
2003-11-18 09:47 michiel
updated some variables to use newer style superglobals
2003-11-13 12:50 michiel
updated integration with Webbler
2003-11-13 12:50 michiel
updated index for older PHP versions
2003-11-13 10:37 michiel
added add to group in import
2003-11-10 11:00 michiel
fixed bug 748, error functions used wrong value to send error
report to by email
2003-11-10 10:59 michiel
fixed bug 759, URLs had disappeared in text versions of emails
2003-11-05 16:28 michiel
added reminder to subscribe to announcements list so people are
informed of security and other issues
2003-11-05 11:52 michiel
added htaccess file for increased security
2003-11-05 01:35 michiel
new version 2.6.4
2003-11-04 22:21 michiel
new version 2.6.3
2003-11-04 21:42 michiel
renamed defaultconfig to an inc file
2003-11-04 21:33 michiel
updated all admin files to increase security from invalid remote
requests
2003-11-04 12:18 michiel
updated interface for list of subscribe pages
2003-10-29 16:36 michiel
new version 2.6.2
2003-10-29 16:35 michiel
added more verbosity if verbose is on in process queue
2003-10-29 16:34 michiel
fixed empty Errors-To header
2003-10-28 20:31 michiel
added security check on login page
2003-10-28 20:24 michiel
fixed bug number of emails and rss items reported in list of
members of a list was wrong
2003-10-28 20:23 michiel
fixed issue where RSS items that contain HTML are stripped for
sending as text
2003-10-28 19:32 michiel
fixed bug 736, adding member to a list did not remember
checkboxgroup values
2003-10-28 19:32 michiel
fixed bug 737, adding member to a list has option to choose HTML
2003-10-28 19:31 michiel
added extra security check on admin, IP address needs to stay the
same
2003-10-28 18:25 michiel
fixed bug 716, default subscribe page radio button is not checked
2003-10-28 18:22 michiel
fixed bug 714, configure page does not save when pressing return,
only when button is clicked
2003-10-28 18:20 michiel
added check on From and Subject field so they do not contain \r or
\n, when cut-n-paste has been used to populate the fields
2003-10-28 18:02 michiel
fixed bug 705, adding a new user passes email address on to
subscribe page
2003-10-28 18:01 michiel
fixed bug 707, import2 sets existing user to wrong values
2003-10-28 17:54 michiel
fixed bug 717, initialise does not create the correct entries in
the task table
2003-10-22 19:52 michiel
fixed Header of Outlook workaround showing up in the email body
2003-10-21 14:35 michiel
new version 2.6.1
2003-10-21 14:33 michiel
some small tweakes and fixes
2003-10-21 12:06 michiel
new version 2.6.0
2003-10-21 11:56 michiel
fixed error when bypassing Outlook bug
2003-10-21 11:51 michiel
cleaned up a lot of old images and other things
2003-10-20 01:15 michiel
some interface updates
2003-10-19 15:05 michiel
changed database error to display in a div, so it won't break the
page
2003-10-19 15:04 michiel
added updated version of french.inc
2003-10-18 16:55 michiel
more on making frontend really work with register globals off
2003-10-18 16:55 michiel
updated methods in process bounces to mark users as unconfirmed
when too many bounces received
2003-10-18 16:54 michiel
made sure that even if an administrator marks a hidden field as
required it is not (for obvious reasons)
2003-10-18 16:52 michiel
fixed issue where checkbox group value were not exported correctly
2003-10-16 01:02 michiel
updated frontend system to properly work with register globals off
2003-10-13 21:40 michiel
fixed issue in BOCS where some data was placed in the user array,
that should not be there
2003-10-13 14:00 michiel
updated formdata listing, improved interface
2003-10-12 14:22 michiel
added first stage of simple plugin system, to allow addition of
pages in PHPlist that are not generic, but can still be useful
2003-10-12 14:21 michiel
added new config variable to allow distiguishing between different
PHPlist installations in the reports by email
2003-10-12 14:20 michiel
removed style selection from frontend to stop it interfering with
frontend design
2003-10-09 18:17 michiel
update to settings of FCKeditor
2003-10-09 18:17 michiel
update to italian.inc
2003-10-09 01:32 michiel
fixed issue where attributes were wiped when using a subset of
attributes in a subscribe page and only that subscribe page was
used to update preferences
2003-10-09 01:31 michiel
fixed problem where admin was not able to unsubscribe a user from
all lists
2003-10-02 19:32 michiel
new version 2.5.8
2003-10-02 19:29 michiel
added feature request 616 prefill From field with configuration
values
2003-10-02 19:29 michiel
fixed bug 626, a sub admin cannot see any messages
2003-10-02 19:28 michiel
fixed bug 624 anyone can harvest user info
2003-10-02 19:26 michiel
fixed bug 623, sending a message when no users are found by
criteria sends it to everyone
2003-10-02 19:25 michiel
fixed bug 620, saving user and listmembership in one go
2003-10-01 22:58 michiel
fixed import to not overwrite html status of a user if it hasn't
been specified in the import file
2003-09-30 13:01 michiel
added functionality to duplicate an entire trunk
2003-09-30 10:55 michiel
some small fixes
2003-09-30 10:54 michiel
fixed remembering sort order in list of users when going to the
next page
2003-09-29 22:59 michiel
new version 2.5.7
2003-09-29 22:51 michiel
added functionality that list is hidden in unsubscribe page when
there is only one list and the config option to hide a single list
is set
2003-09-29 22:38 michiel
added configurable character encoding for outgoing messages
2003-09-26 22:27 michiel
added RFC 2369 headers to outgoing emails
2003-09-22 16:01 michiel
new version 2.5.6
2003-09-22 15:37 michiel
added checkboxgroup as selectable criteria when sending a message
2003-09-22 14:50 michiel
reactivated checkbox as a selectable criteria when sending messages
2003-09-22 13:26 michiel
merged send and preparesend to facilitate easier updating of code
2003-09-22 13:15 michiel
updated system to work around Outlook 2000 bug
2003-09-22 13:14 michiel
fixed bug where users were unsubscribed from all lists, even if a
subscribe page only listed a few
2003-09-18 12:32 michiel
new webbler version 2.5.1
2003-09-09 23:21 michiel
updated system to work with central library
2003-09-08 17:00 michiel
updated latinamerican translation
2003-09-08 14:43 michiel
added configurable mimetype for exports
2003-09-08 00:32 michiel
updated list of messages to be split into different types of
messages, normal, prepared and rss messages
2003-09-07 17:42 michiel
fixed issue that user did not save when not using attributes
2003-09-07 00:05 michiel
new version 2.5.5
2003-09-07 00:00 michiel
fixed problem with mails not bouncing to the correct address
2003-09-06 21:37 michiel
added view items to list with RSS feed
2003-09-06 21:34 michiel
added maximum items to send in RSS mailing, so avoid new users
getting the entire backlog of items
2003-09-06 01:07 michiel
fixed invalid return path in messages sent out
2003-09-06 00:34 michiel
added new layout to list of users
2003-09-05 23:28 michiel
added separator templates for RSS messages that will be used to
group rss items by list and give each group a header
2003-09-05 22:47 michiel
fixed remembering last time RSS was sent for user
2003-09-05 22:14 michiel
updated interface of list of members
2003-09-05 21:35 michiel
initial commit
2003-09-05 16:59 michiel
updated import to create a user with a new (invalid) email if a
clash is discovered on email when importing with a foreign key
2003-09-04 01:03 michiel
Updated import and export to use the same format and to follow the
database structure whenever it changes, which means that system
values are placed in the correct places without automatic creation
of attributes. Added 'Foreign Key' to a user, that will be used to
match users during import, before matching them on email. This will
facilitate proper synchronisation between external databases and
PHPlist, without the requirement to have an email for a user.
2003-09-02 20:39 michiel
added spanish translation of pagetitles
2003-09-02 15:16 michiel
new version 2.5.4
2003-09-02 15:13 michiel
fixed error in attributes
2003-09-01 23:56 michiel
updated method to replace a RSS message when a new one is created.
RSS messages are now replaced if they match both frequency and
admin, which means that each admin can have their own RSS messages.
However, this does mean that the superadmin needs to be careful
creating RSS templates that may clash with subadmins
2003-09-01 22:51 michiel
added filter to eventlog to allow subset of events
2003-09-01 22:06 michiel
added webbler listing class for nicer interface of listings
2003-09-01 14:42 michiel
new version 2.5.3
2003-09-01 14:37 michiel
added check on attributes so email is not added manually
2003-09-01 14:29 michiel
fixed attribute to add record for existing users when a new
attribute is added. this issue caused many 'user not found'
problems when attributes were added after users were imported
2003-08-31 00:54 michiel
reorganised the menu a little bit
2003-08-30 00:45 michiel
updated pages to allow a subadmin to change their own password
2003-08-29 23:49 michiel
added easier interface to change default subscribe page
2003-08-29 23:33 michiel
added distinction between boolean and other values in configure, so
1 and 0 can be config numbers as well
2003-08-29 23:20 michiel
added multiple admin options to subscribe pages
2003-08-29 23:20 michiel
added link to change default admin password in setup
2003-08-29 23:19 michiel
added default permissions settings to admins
2003-08-28 15:01 michiel
fixed table and port bugs in process bounces
2003-08-28 13:11 michiel
added more reporting and process locking to the RSS retrieval
process
2003-08-26 16:18 michiel
added background color to list membership in user page to make it
clearer what lists the user is a member of
2003-08-26 15:57 michiel
fixed issue where confirm of user not found displayed the wrong
info text
2003-08-26 14:45 michiel
fixed Sql query when changing password
2003-08-22 22:39 michiel
fixed rss cache to use database name, to avoid clashes of multi
hosted system
2003-08-22 21:33 michiel
new version 2.5.2
2003-08-22 21:08 michiel
fixed File Not Found issue when subscribe page 1 is the default
(which is quite likely) and a few small bugs and cosmetics
2003-08-15 13:46 michiel
new version 2.5.1
2003-08-15 12:38 michiel
added new public page, default preferences where the user can
request an email with their personal location in it, in order to be
able to update it. this will also be the page that users get when
they load the wrong URL, generally because the URL wrapped in the
email
2003-08-14 16:40 michiel
new version 2.5.0
2003-08-14 16:33 michiel
updated signature image to the latest
2003-08-14 16:33 michiel
added more default options when using phpmail class
2003-08-14 16:31 michiel
added default subscribe page to configuration to load when no
subscribe page is identified
2003-08-14 16:31 michiel
fixed the admin pages to work from command line again
2003-08-14 16:30 michiel
added check on password if someone subscribes with an existing
email, that has a password set
2003-08-14 16:29 michiel
fixed latest version check
2003-08-13 13:10 michiel
removed confirm on public page
2003-08-13 13:09 michiel
added phplistmailer class as extension of the popular phpmailer
class. this is still highly experimental
2003-08-13 13:08 michiel
updated ut and dl to fit new config file system
2003-08-12 18:13 michiel
fixed error when adding unknown user to members of a list
2003-08-12 18:12 michiel
fixed db connection error when no password is used
2003-08-12 12:56 michiel
new feature: added import from a different PHPlist database
2003-08-07 00:22 michiel
fixed import to work with new subscribe system
2003-08-06 15:18 michiel
made a first start to make the backend translatable, by splitting
help and information in the pages into different directories
identified by the language iso
2003-08-06 15:08 michiel
moved usetemplate.php to en
2003-08-06 15:08 michiel
moved subject.php to en
2003-08-06 15:08 michiel
moved sendformat.php to en
2003-08-06 15:08 michiel
moved preparemessage.php to en
2003-08-06 15:08 michiel
moved message.php to en
2003-08-06 15:08 michiel
moved index.php to en
2003-08-06 15:08 michiel
moved from.php to en
2003-08-06 15:07 michiel
moved format.php to en
2003-08-06 15:07 michiel
moved attachments.php to en
2003-08-06 13:07 michiel
added NEWS file with tips between versions, also a README.passwords
to explain the news password system for the user preferences page
2003-08-06 12:51 michiel
fixed small cosmetic stuff
2003-08-06 11:53 michiel
added filter memory to list of users, which means that if you go
back to the list, it remembers your previous selection. quite
useful for large numbers of users
2003-08-05 13:00 michiel
moved language files into their own directory, so upgrades can
retain them
2003-08-05 11:37 michiel
removed legacy files subscribe, confirm, subscribelib and
unsubscribe
2003-08-04 16:52 michiel
added method to require password for a user to view and edit their
personal details
2003-08-04 16:51 michiel
added FCKeditor to send as well
2003-07-31 23:44 michiel
new version 2.4.0
2003-07-31 23:26 michiel
integrated FCKeditor with preparesend
2003-07-31 21:43 michiel
updated preview of templates and message to use iframes, to avoid
conflicts in design and styles
2003-07-31 21:41 michiel
updated the powered by image to the latest design
2003-07-31 21:41 michiel
erased double spacing in from line when using a full email address
2003-07-18 15:34 michiel
fixed bug in RSS processqueue when nothing to send for a user
2003-07-18 15:20 michiel
updated processqueue to not send reports when nothing is sent, and
to count the number of unconfirmed users per message sent out, that
would have been sent, if the user had been confirmed
2003-07-18 15:05 michiel
updated viewing of rss items to be per administrator, and changed
page in tasks to be unique so it is not duplicated in the system
2003-07-18 13:32 michiel
added more logging of RSS events, and fixed bug when an RSS item
was not identified as duplicate when it has a very long title
2003-07-17 19:09 michiel
fixed system to work with Register Globals OFF
2003-07-11 10:09 michiel
new version 2.3.4
2003-07-11 09:52 michiel
fixed bug with subscription page where an include included the
wrong file
2003-07-10 13:49 michiel
added czech translation
2003-07-10 12:06 michiel
added more logging of RSS retrieval results
2003-07-09 12:04 michiel
new version 2.4.7
2003-07-08 14:35 michiel
New version 2.3.3
2003-07-04 10:02 michiel
fixed messages lsit when not login required and RSS update for when
sent to user
2003-07-02 15:37 michiel
new version 2.3.2
2003-07-02 10:09 michiel
new version 2.3.1
2003-07-01 14:19 michiel
new version 2.3.0
2003-07-01 14:18 michiel
fixes and cleanup
2003-07-01 11:51 michiel
added webbler userlib for more thorough integration
2003-06-17 14:46 michiel
quite a few small fixed continued to finish off IMAP import added
ability to specify config file as apache env var
2003-05-15 17:57 michiel
fixed issue that admins can send messages to lists they don't own
2003-05-15 11:58 michiel
testing
2003-04-15 14:17 michiel
new version 2.2.1
2003-04-15 13:42 michiel
fixed bug in unsubscribe
2003-04-15 13:17 michiel
added rough checking of templates at upload time. check for URLs
and existence of images
2003-04-12 14:36 michiel
bug in user.php referring to wrong table names
2003-04-11 16:34 michiel
new version 2.2.0
2003-04-11 15:39 michiel
added functionality to send RSS feeds to the lists
2003-04-09 17:07 michiel
added support for PDF, initially by converting the text message to
a PDF attachment
2003-04-09 13:32 michiel
added support for attachments
2003-03-27 20:37 michiel
more in imap import
2003-03-24 20:10 michiel
added import from IMAP
2003-03-24 16:54 michiel
new version 2.1.4
2003-03-24 10:49 michiel
load of small fixes and detection of admin logged in on frontend,
so it allows and admin to add users without sending the request for
confirmation
2003-03-21 11:59 michiel
small fixes, user confirmed state can now be updated and config
variables can be used in messages
2003-03-20 18:04 michiel
altered processqueue to only log things that are interesting
2003-03-20 17:30 michiel
changed user management code to allow easier updating of list
membership
2003-02-25 14:47 michiel
new version 2.1.3
2003-02-25 14:45 michiel
fixed bug that made the system use website instead of domain for
emails fixed bug when not using attributes, system didn't accept
emails fixed bug when selecting yes to display single list, it
didn't show the list anyway
2003-02-24 10:15 michiel
new version
2003-02-24 10:14 michiel
two bugs fixed: columns in message table and commented sendMail
2003-02-21 18:13 michiel
new version 2.1.1
2003-02-21 18:13 michiel
small bug in home
2003-02-21 16:22 michiel
new version: 2.1.0
2003-02-21 13:57 michiel
added statistics collection
2003-02-21 12:47 michiel
added page for bugreports and events in the system
2003-02-21 12:46 michiel
A lot of changes: added reconciliation of user data added locking
of processbouncing added actions on bounces, update user data made
public pages work better with different sets of pages and templates
2002-11-21 18:32 michiel
added languages file for reference
2002-11-21 18:30 michiel
added french
2002-11-21 18:30 michiel
turkish added
2002-11-21 18:30 michiel
added admin access to subscribe pages
2002-11-20 10:07 michiel
removed some old command line processing files and added two new
ones
2002-11-18 15:47 michiel
new version 1.9.3
2002-11-18 15:47 michiel
silly bug in new subscribe page system
2002-11-18 15:06 michiel
version 1.9.2
2002-11-18 15:05 michiel
actually added the files, duh
2002-11-18 14:53 michiel
version 1.9.1
2002-11-18 14:40 michiel
new version 1.9.0, addition: configurable subscribe pages in the
backend
2002-11-18 14:37 michiel
added portuguese portuguese
2002-11-18 14:36 michiel
finished off some stuff
2002-11-15 16:52 michiel
added method to create different subscribe pages on the frontend,
with their own messages and templates
2002-10-10 18:08 michiel
new version 1.8.0
2002-10-09 16:08 michiel
new design
2002-10-03 22:48 michiel
added bens new design
2002-10-01 13:42 michiel
changed listing of performances to be in schedule
2002-09-25 23:44 michiel
new version 1.7.1
2002-09-25 22:59 michiel
added ability to subselect lists in subscribe and improved parsing
HTML to plain text
2002-09-25 16:58 michiel
more on bounce processing
2002-09-23 15:16 michiel
new version 1.7.0, added: bounce processing
2002-09-20 00:46 michiel
config for bouncehandling