forked from web-cyradm/web-cyradm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3160 lines (1724 loc) · 61.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2004-04-04 17:59 luc
* doc/web-cyradm-redhat.txt:
Updated documentation
2004-04-04 17:57 luc
* doc/html/: HTML.manifest, docbook.css:
Adding new files to documentation
2004-04-04 17:56 luc
* doc/html/: installing-anti-spam.html, spam-and-virus-intro.html,
t1.html, stylesheet-images/caution.gif,
stylesheet-images/home.gif, stylesheet-images/important.gif,
stylesheet-images/next.gif, stylesheet-images/note.gif,
stylesheet-images/prev.gif, stylesheet-images/tip.gif,
stylesheet-images/toc-blank.gif, stylesheet-images/toc-minus.gif,
stylesheet-images/toc-plus.gif, stylesheet-images/up.gif,
stylesheet-images/warning.gif:
Adding new documentation files
2004-04-04 17:54 luc
* doc/html/: cyrus-config.html, faq.html, index.html, install.html,
moreinfo.html, mysql-config.html, pam-config.html,
postfix-config.html, tech.html, test.html,
web-cyradm-config.html:
Updated documentation
2004-04-04 17:50 luc
* doc/Postfix-Cyrus-Web-cyradm-HOWTO.txt:
Updated documentation
2004-04-01 01:14 luc
* locale/it/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Corrected italian translation (Roberto Capancioni)
2004-03-30 20:11 luc
* scripts/upgrade-0.5.3-to-0.5.4_mysql.sql:
corrected some index and key problems
2004-03-22 00:21 luc
* editadminuser.php:
Fixing bug #8156 Missing line in .po files
2004-03-22 00:06 luc
* validate.inc.php:
Makeing web-cyradm compatible with PEAR::DB 1.6.1
2004-03-21 22:07 luc
* session.php, timeout.php:
Fixed i18n bug in timeout
2004-03-21 21:28 luc
* footer.inc.php:
Updated copyright notice
2004-03-21 20:17 luc
* adminuser.php:
Fixed bug #6894: error in paging link for administrator
2004-03-21 20:02 luc
* change_password.php:
Report successful change of the password
2004-03-21 19:40 luc
* auth.inc.php, validate.inc.php:
cosmetical changes
2004-03-16 00:24 luc
* lib/nls.php:
Added credits for Anders Norrbring
2004-03-16 00:20 luc
* config/conf.php.dist:
Add list of reserved Emailadreses
2004-03-16 00:18 luc
* validate.inc.php:
Make reserved Emails available for all needed cases
2004-03-15 23:54 luc
* validate.inc.php:
Wuergaround: Deny reserved email adresses
2004-03-15 23:53 luc
* index.php:
If DEFAULTLANG not found in config, try to get a alias for it
2004-03-15 22:41 luc
* locale/sv/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated swedish translation (Anders Norrbring)
2004-03-15 22:22 luc
* login.php:
Added entry »select language« to select box if no know language can
be set
2004-03-11 20:11 luc
* lib/nls.php:
Corrected error in nb_NO
2004-03-11 19:56 luc
* lib/nls.php, locale/en/LC_MESSAGES/web-cyradm.mo,
locale/en/LC_MESSAGES/web-cyradm.po:
Merge from HEAD
2004-03-11 19:45 luc
* lib/nls.php, locale/en/LC_MESSAGES/web-cyradm.mo,
locale/en/LC_MESSAGES/web-cyradm.po:
Added english translation (Michael Muenz)
2004-01-14 23:16 luc
* deleteadminuser.php:
Consmetical changes
2004-01-14 23:11 luc
* change_password.php:
Changed comment
2004-01-14 23:01 luc
* deletealias.php, deleteemail.php, editemail.php, newemail.php:
Cosmetical changes
2004-01-14 22:07 luc
* deleteaccount.php:
Log entries for the acount will now also be deleted
2004-01-14 21:40 luc
* logout.php:
correct the huge fonts to standart size
2004-01-14 21:39 luc
* test.php:
Does not work, will be implemented again later
2004-01-14 21:22 luc
* auth.inc.php, failed.php:
Error message on failed login appears again
2004-01-14 21:04 luc
* login.php:
Corrected JavaScript Bug which prevented Language selection when
fields are filled in
2003-11-30 21:33 luc
* config/conf.php.dist:
Changed Version to rc3
2003-11-30 21:32 luc
* config/conf.php.dist:
Changed version to rc3
2003-11-30 16:30 luc
* locale/teamnames:
Merge from 0.5.4
2003-11-30 16:29 luc
* locale/teamnames:
Currected alias for norwegian
2003-11-30 15:48 luc
* locale/teamnames:
Merge from 0.5.4 branch
2003-11-30 15:47 luc
* locale/teamnames:
Added Norwegian
2003-11-30 15:43 luc
* lib/nls.php:
Merge from HEAD
2003-11-30 14:23 luc
* locale/no/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
merge from HEAD
2003-11-30 14:22 luc
* locale/teamnames:
Added teamnames for KDE-like translation stats
2003-11-30 13:13 luc
* search.php:
Merge from 0.5.4 branch
2003-11-30 12:59 luc
* locale/teamnames:
Added for processing KDE-like translation stats
2003-11-30 12:58 luc
* locale/no/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Added Norwegian Translation (Dan Sveen Olsen)
2003-11-30 12:57 luc
* lib/nls.php:
Added Norwegian translation
2003-11-17 08:50 karesz
* forwardaccount.php: Fix for not being able to remove forwards
from a mailbox.
2003-10-24 13:55 luc
* search.php:
Added missing action fields from browseaccounts.php
2003-10-20 23:42 luc
* locale/fr/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Minor bugs in french translation (Raphaël Jeudi)
2003-10-19 19:58 luc
* scripts/upgrade-0.5.3-to-0.5.4_pgsql.sql:
Merge from HEAD
2003-10-19 19:57 luc
* scripts/upgrade-0.5.3-to-0.5.4_pgsql.sql:
Added PostgreSQL upgrade script (Philippe Amelant)
2003-10-19 19:17 luc
* locale/fr/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated french translation (Raphaël Jeudi)
2003-10-19 19:08 luc
* locale/sl/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Adding slowenian translation
2003-10-19 19:06 luc
* aliases.php, lib/nls.php: [no log message]
2003-10-19 19:05 luc
* locale/es/LC_MESSAGES/web-cyradm.mo,
locale/es/LC_MESSAGES/web-cyradm.po, aliases.php, lib/nls.php:
Merge from 0.5.4 branch
2003-10-19 19:04 luc
* locale/es/LC_MESSAGES/: web-cyradm.po, web-cyradm.mo:
Updated spanish translation
2003-10-19 19:02 luc
* locale/sl/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Added slowenian translation (Gregor Odlazek)
2003-10-19 19:00 luc
* locale/ru/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
merge from 0.5.4 branch
2003-10-19 19:00 luc
* locale/ru/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated russian translation (Andrey Kolbasenko)
2003-10-04 16:41 luc
* locale/es/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Merge from 0.5.4 branch
2003-10-04 16:40 luc
* locale/es/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated spanish translation (Rafael Santamaria)
2003-09-14 16:22 luc
* newdomain.php, scripts/create_mysql.sql:
Merge from 0.5.4 branch
2003-09-14 16:11 luc
* scripts/create_mysql.sql:
Alias not UNIQUE anymore
2003-09-14 15:42 luc
* newdomain.php:
Deleted debug print
2003-09-14 15:40 luc
* scripts/create_mysql.sql:
Should work better now
2003-09-14 15:35 luc
* scripts/create_mysql.sql:
hmmm....
2003-09-14 15:32 luc
* scripts/create_mysql.sql:
Added freenames
2003-09-14 15:30 luc
* scripts/create_mysql.sql:
corrected typo
2003-09-14 15:29 luc
* scripts/create_mysql.sql:
Added freenames to create
2003-09-05 01:27 luc
* lib/nls.php:
Merge from 0.5.4 branch
2003-09-05 01:25 luc
* lib/nls.php:
Changes translator credits
2003-09-04 19:37 luc
* locale/de/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Merge from 0.5.4 branch
2003-09-04 19:36 luc
* locale/de/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated german translation
2003-09-04 19:16 luc
* locale/cs/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Merge from 0.5.4 branch
2003-09-04 19:16 luc
* locale/cs/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated czech translation
2003-09-04 19:15 luc
* locale/pt/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
merge from 0.5.4 branch
2003-09-04 19:14 luc
* locale/pt/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated portuguese translation
2003-09-04 19:12 luc
* locale/pl/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated polish translation
2003-09-04 19:11 luc
* locale/: tr/LC_MESSAGES/web-cyradm.mo,
tr/LC_MESSAGES/web-cyradm.po, pl/LC_MESSAGES/web-cyradm.mo,
pl/LC_MESSAGES/web-cyradm.po:
Merge from 0.5.4 branch
2003-09-04 19:10 luc
* locale/tr/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated turkish translation
2003-08-22 20:48 luc
* locale/hu/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Merge from 0.5.4
2003-08-22 20:45 luc
* locale/: zh_CN/LC_MESSAGES/web-cyradm.mo,
zh_CN/LC_MESSAGES/web-cyradm.po, nl/LC_MESSAGES/web-cyradm.mo,
nl/LC_MESSAGES/web-cyradm.po:
Merge from 0.5.4
2003-08-22 20:43 luc
* locale/: hu/LC_MESSAGES/web-cyradm.mo,
hu/LC_MESSAGES/web-cyradm.po, nl/LC_MESSAGES/web-cyradm.mo,
nl/LC_MESSAGES/web-cyradm.po, zh_CN/LC_MESSAGES/web-cyradm.mo,
zh_CN/LC_MESSAGES/web-cyradm.po:
Updated locales
2003-08-14 20:57 luc
* validate.inc.php, newaccount.php:
Merge from 0.5.4 branch
2003-08-14 20:56 luc
* newaccount.php, validate.inc.php:
New quotahandling, Superusers can override MaxQuota. Domainadmins
are properly restricted now
2003-08-14 04:23 luc
* locale/sv/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Merge from 0.5.4
2003-08-14 04:22 luc
* locale/sv/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Updated swedish translation (Fredrik Rambris)
2003-08-11 01:17 luc
* index.php:
Merge from 0.5.4
2003-08-11 01:16 luc
* index.php:
Added search to functions allowed without valid domain selection
2003-08-10 18:59 luc
* scripts/create_mysql.sql:
Merges from 0.5.4
2003-08-10 18:58 luc
* scripts/create_mysql.sql:
Changed username to 255 Chars
2003-08-10 17:53 luc
* footer.inc.php, menu.inc.php, config/conf.php.dist:
Merges from 0.5.4
2003-08-10 17:50 luc
* locale/templates/web-cyradm.pot:
Merge from 0.5.4
2003-08-10 17:47 luc
* locale/: ro/LC_MESSAGES/web-cyradm.mo,
ro/LC_MESSAGES/web-cyradm.po, ru/LC_MESSAGES/web-cyradm.mo,
ru/LC_MESSAGES/web-cyradm.po, sv/LC_MESSAGES/web-cyradm.mo,
sv/LC_MESSAGES/web-cyradm.po, tr/LC_MESSAGES/web-cyradm.mo,
tr/LC_MESSAGES/web-cyradm.po, zh_CN/LC_MESSAGES/web-cyradm.mo,
zh_CN/LC_MESSAGES/web-cyradm.po:
Merge from 0.5.4
2003-08-10 17:43 luc
* locale/: es/LC_MESSAGES/web-cyradm.mo,
es/LC_MESSAGES/web-cyradm.po, fr/LC_MESSAGES/web-cyradm.mo,
fr/LC_MESSAGES/web-cyradm.po, hu/LC_MESSAGES/web-cyradm.mo,
hu/LC_MESSAGES/web-cyradm.po, it/LC_MESSAGES/web-cyradm.mo,
it/LC_MESSAGES/web-cyradm.po, nl/LC_MESSAGES/web-cyradm.mo,
nl/LC_MESSAGES/web-cyradm.po, pl/LC_MESSAGES/web-cyradm.mo,
pl/LC_MESSAGES/web-cyradm.po:
Merge from 0.5.4
2003-08-10 17:41 luc
* locale/cs/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Merge from 0.5.4 branch
2003-08-10 17:40 luc
* locale/: pt/LC_MESSAGES/web-cyradm.mo,
pt/LC_MESSAGES/web-cyradm.po, da/LC_MESSAGES/web-cyradm.mo,
da/LC_MESSAGES/web-cyradm.po, de/LC_MESSAGES/web-cyradm.mo,
de/LC_MESSAGES/web-cyradm.po:
Merge from 0.5.4
2003-08-10 17:37 luc
* menu.inc.php, locale/cs/LC_MESSAGES/web-cyradm.mo,
locale/cs/LC_MESSAGES/web-cyradm.po,
locale/da/LC_MESSAGES/web-cyradm.mo,
locale/da/LC_MESSAGES/web-cyradm.po,
locale/de/LC_MESSAGES/web-cyradm.mo,
locale/de/LC_MESSAGES/web-cyradm.po,
locale/es/LC_MESSAGES/web-cyradm.mo,
locale/es/LC_MESSAGES/web-cyradm.po,
locale/fr/LC_MESSAGES/web-cyradm.mo,
locale/fr/LC_MESSAGES/web-cyradm.po,
locale/hu/LC_MESSAGES/web-cyradm.mo,
locale/hu/LC_MESSAGES/web-cyradm.po,
locale/it/LC_MESSAGES/web-cyradm.mo,
locale/it/LC_MESSAGES/web-cyradm.po,
locale/nl/LC_MESSAGES/web-cyradm.mo,
locale/nl/LC_MESSAGES/web-cyradm.po,
locale/pl/LC_MESSAGES/web-cyradm.mo,
locale/pl/LC_MESSAGES/web-cyradm.po,
locale/pt/LC_MESSAGES/web-cyradm.mo,
locale/pt/LC_MESSAGES/web-cyradm.po,
locale/ro/LC_MESSAGES/web-cyradm.mo,
locale/ro/LC_MESSAGES/web-cyradm.po,
locale/ru/LC_MESSAGES/web-cyradm.mo,
locale/ru/LC_MESSAGES/web-cyradm.po,
locale/sv/LC_MESSAGES/web-cyradm.mo,
locale/sv/LC_MESSAGES/web-cyradm.po,
locale/templates/web-cyradm.pot,
locale/tr/LC_MESSAGES/web-cyradm.mo,
locale/tr/LC_MESSAGES/web-cyradm.po,
locale/zh_CN/LC_MESSAGES/web-cyradm.mo,
locale/zh_CN/LC_MESSAGES/web-cyradm.po:
Merged all translation with the new POT
2003-08-10 17:36 luc
* scripts/pot2po:
Merge from 0.5.4 branch
2003-08-10 17:36 luc
* scripts/pot2po:
Adding script to existing translations with a new POT and creates
the corrensponding MO
2003-08-10 15:16 luc
* footer.inc.php, config/conf.php.dist:
Displaying version of web-cyradm in the footer
2003-08-09 19:00 luc
* lib/sieve-php.lib:
Merges from 0.5.4 branch
2003-08-09 18:58 luc
* lib/crypto.php:
Merge from 0.5.4 branch
2003-08-09 18:56 luc
* config/conf.php.dist:
Removed Id Tag
2003-08-09 18:52 luc
* lib/crypto.php:
removed Id Tag
2003-08-09 18:51 luc
* config/conf.php.dist:
Removed Id Tag
2003-08-09 18:50 luc
* index.php:
Merge from 0.5.4 branch
2003-08-09 18:49 luc
* lib/sieve-php.lib:
Remove Id tag
2003-08-09 18:44 luc
* adminuser.php, deleteadminuser.php, editadminuser.php, index.php,
newadminuser.php, validate.inc.php:
Merges from 0.5.4 branch
2003-08-09 18:41 luc
* adminuser.php, deleteadminuser.php, editadminuser.php, index.php,
newadminuser.php, validate.inc.php:
changed sensitive pages to POST instead if GET, various small
bugfixes
2003-08-09 18:15 luc
* lib/crypto.php:
Merge from 0.5.4 branch
2003-08-09 18:14 luc
* lib/crypto.php:
Better random salt in crypt() makes the job better
2003-08-08 18:57 luc
* validate.inc.php:
Merge from 0.5.4 branch
2003-08-08 18:56 luc
* validate.inc.php:
Added resp_domain to allowed _getvars
2003-08-08 06:56 luc
* validate.inc.php:
Merge from 0.5.4 branch
2003-08-08 06:55 luc
* validate.inc.php:
Added newdomain to _getvars
2003-08-07 22:55 luc
* adminuser.php, aliases.php, auth.inc.php, browse.php,
browseaccounts.php, catchall.php, change_password.php,
delete_catchall.php, deleteaccount.php, deleteadminuser.php,
deletealias.php, deletedomain.php, deleteemail.php,
editaccount.php, editadminuser.php, editalias.php,
editdomain.php, editemail.php, failed.php, footer.inc.php,
forwardaccount.php, forwardalias.php, header.inc.php, index.php,
login.php, logout.php, menu.inc.php, newaccount.php,
newadminuser.php, newalias.php, newdomain.php, newemail.php,
search.php, session.php, setquota.php, timeout.php, vacation.php,
validate.inc.php, welcome.php, config/conf.php.dist,
lib/crypto.php, lib/sieve-php.lib, scripts/create_pgsql.sql:
Merges from 0.5.4 branch
2003-08-07 22:51 luc
* editadminuser.php:
Enhanced adminuser administration
2003-08-05 21:50 luc
* newalias.php:
re-added security feature
2003-08-05 21:46 luc
* newalias.php:
Minor changes (Martynas Bieliauskas)
2003-08-05 21:24 luc
* lib/sieve-php.lib:
Now works with short_open_tag = off (Lorenzo Luconi Trombacchi)
2003-08-05 21:19 luc
* scripts/create_pgsql.sql:
Solved the PostgreSQL-only problem on transport
2003-08-05 21:03 luc
* adminuser.php, aliases.php, auth.inc.php, browse.php,
browseaccounts.php, catchall.php, change_password.php,
delete_catchall.php, deleteaccount.php, deleteadminuser.php,
deletealias.php, deletedomain.php, deleteemail.php,
editaccount.php, editadminuser.php, editalias.php,
editdomain.php, editemail.php, failed.php, footer.inc.php,
forwardaccount.php, forwardalias.php, header.inc.php, index.php,
login.php, logout.php, menu.inc.php, newaccount.php,
newadminuser.php, newalias.php, newdomain.php, newemail.php,
search.php, session.php, setquota.php, timeout.php, vacation.php,
validate.inc.php, welcome.php:
Added new security feature, only referer WC_BASE/index.php is
allowed to call subsequent pages
2003-07-17 01:34 luc
* scripts/create_pgsql.sql:
Merge from 0.5.4 branch
2003-07-17 01:00 luc
* scripts/create_pgsql.sql:
Updated PostgreSQL Script (Andrew Koros)
2003-07-16 01:45 luc
* README, catchall.php, index.php, validate.inc.php,
lib/crypto.php:
Merges from 0.5.4 branch
2003-07-16 01:42 luc
* catchall.php, delete_catchall.php, index.php, validate.inc.php:
Added functionality to delete the catchall functionality from a
account
2003-07-16 01:41 luc
* delete_catchall.php:
Adding delete_catchall
2003-07-15 17:48 luc
* config/conf.php.dist, lib/crypto.php: [no log message]
2003-07-15 17:48 luc
* change_password.php, index.php, newaccount.php, newdomain.php:
Merges from 0.5.4 branch
2003-07-15 17:45 luc
* change_password.php, newaccount.php:
Check if password and confirmed password matches works again
2003-07-15 17:09 luc
* newdomain.php:
Fixed bug: freeaddress was alsways empty
2003-07-15 14:49 luc
* index.php:
Index.php now takes care about choosen domain again
2003-07-15 14:24 luc
* locale/cs/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Merge czech language from HEAD
2003-07-15 14:23 luc
* locale/cs/LC_MESSAGES/: web-cyradm.mo, web-cyradm.po:
Added czech language
2003-07-15 14:21 luc
* locale/cs/LC_MESSAGES/web-cyradm.po:
remove
2003-07-15 14:20 luc
* locale/cs/LC_MESSAGES/web-cyradm.po:
Added cs language
2003-07-15 14:19 luc
* locale/cs/LC_MESSAGES/web-cyradm.mo:
remove temporary
2003-07-15 14:19 luc
* locale/cs/LC_MESSAGES/web-cyradm.po:
Remove temporary
2003-07-15 14:16 luc
* browseaccounts.php, change_password.php, editaccount.php,
forwardaccount.php, index.php, newaccount.php, validate.inc.php,
lib/crypto.php, lib/nls.php:
Merges from 0.5.4 branch
2003-07-15 14:06 luc
* index.php, validate.inc.php:
Fixed typo which caused not register POSTVARS correctly
2003-07-15 14:03 luc
* lib/nls.php, locale/cs/LC_MESSAGES/web-cyradm.mo,
locale/cs/LC_MESSAGES/web-cyradm.po:
Added czech language (Robert Kania)
2003-07-15 01:06 luc
* change_password.php, editaccount.php, index.php, newaccount.php,
validate.inc.php:
Switched password related forms from GET to POST to improve security
2003-07-15 01:05 luc
* browseaccounts.php:
restricting query to not return forwards as email adresses
2003-07-14 22:32 luc
* forwardaccount.php:
Fixed forwardaccount (Martynas Bieliauskas)
2003-07-10 20:37 luc
* validate.inc.php:
Merge from 0.5.4 branch
2003-07-10 20:34 luc
* validate.inc.php:
Security related: Improved input validation
2003-07-08 19:58 luc
* validate.inc.php, config/conf.php.dist:
Merges from 0.5.4 branch
2003-07-08 19:56 luc
* validate.inc.php:
Fixed bug for vacation_text not in allowed get_vars
2003-07-05 15:36 luc
* config/conf.php.dist:
fixed typo
2003-07-05 15:23 luc
* change_password.php, editadminuser.php, newaccount.php,
newadminuser.php, config/conf.php.dist, lib/crypto.php:
Merges from 0.5.4 branch
2003-07-05 15:22 luc
* change_password.php, editadminuser.php, newaccount.php,
newadminuser.php, config/conf.php.dist: