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 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
|
2010-05-04 Thomas Arendsen Hein <thomas@intevation.de>
* templates/imapd.annotation_definitions.template.in:
Added annotation for activesync configuration (z-push).
2010-04-22 Thomas Arendsen Hein <thomas@intevation.de>
* templates/local.cf.template.in: Disable further DNS blacklists.
2010-04-21 Gunnar Wrobel <wrobel@pardus.de>
* kolabd.spec.in: Require the json module in php and apache-php.
2010-02-27 Gunnar Wrobel <wrobel@pardus.de>
* kolabd.spec: Fix typo (kolab/issue4176 (Adding RSS feed to Horde
breaks portal screen))
2010-01-04 Sascha Wilde <wilde@intevation.de>
* templates/local.cf.template.in: Disable FH_DATE_PAST_20XX, which
is broken for 2010 and later...
2009-11-27 Sascha Wilde <wilde@intevation.de>
* templates/slapd.conf.template.in: loglevel none, see
kolab/issue3895 (Openldap: loglevel should be set to none in
slapd.conf)
2009-11-26 Sascha Wilde <wilde@intevation.de>
* templates/main.cf.template.in: Added `message_reject_characters'
directive, see kolab/issue3594 (Mail containing NUL byte not
delivered, Kolab Filter does not report lmtp error)
2009-11-25 Sascha Wilde <wilde@intevation.de>
* templates/resmgr.conf.template.in: kolab/issue973 (Rewritten
from shown inconveniently in kontact)
2009-11-23 Gunnar Wrobel <wrobel@pardus.de>
* templates/php.ini.template.in (magic_quotes_gpc):
kolab/issue919 (kolab server has problems with some characters in
passwords)
kolab/issue1880 (Poor handling of apostrophes in ldap and admin
webpages)
kolab/issue3654 (Special character issue in Kolab web
interface (e.g. vacation message))
kolab/issue3499 (creating/modifying users with special characters
in name confuses web admin)
2009-05-14 Thomas Arendsen Hein <thomas@intevation.de>
* templates/main.cf.template.in, templates/master.cf.template.in:
Use append_dot_mydomain = no and remote_header_rewrite_domain =
domain.invalid and disable masquerade_domains for post-cleanup.
Fixes kolab/issue3549 (append_dot_mydomain allows circumventing
kolabfilter-verify-from-header)
2009-05-13 Thomas Arendsen Hein <thomas@intevation.de>
* templates/clamd.conf.template.in:
Updated templates for clamav-0.95.1-20090409 for
kolab/issue3513 (Clamav - new upstream version 0.95.1)
2009-04-23 Gunnar Wrobel <p@rdus.de>
* templates/freebusy.conf.template.in: Configuration support for
LDAP attribute mapping.
* templates/resmgr.conf.template.in: Configuration support for
LDAP attribute mapping.
2009-04-20 Thomas Arendsen Hein <thomas@intevation.de>
* templates/slapd.conf.template.in: Make kolabAllowSMTPRecipient
readable for the nobody user, needed for kolab/issue1340 (RFC:
restrict users to sending mail only to internal recipients)
2009-04-07 Thomas Arendsen Hein <thomas@intevation.de>
* templates/amavisd.conf.template.in: Disable
$bad_header_quarantine_method since D_PASS is default policy.
2009-04-06 Thomas Arendsen Hein <thomas@intevation.de>
* templates/clamd.conf.template.in,
templates/freshclam.conf.template.in:
Updated templates for clamav-0.95-20090323 for
kolab/issue3513 (Clamav - new upstream version 0.95)
2009-03-17 Mathieu Parent <math.parent@gmail.com>
* dist_conf/debian: Prepare kolabd for additional webclient
configuration templates.
2009-03-27 Thomas Arendsen Hein <thomas@intevation.de>
* templates/ldapvirtual.cf.template.in: Fix kolab/issue3096
(Address book aliases shouldn't redirect outgoing mails)
2009-03-26 Gunnar Wrobel <p@rdus.de>
* kolab.globals.in: Prepare kolabd for additional webclient
configuration templates.
2009-03-17 Mathieu Parent <math.parent@gmail.com>
* dist_conf/debian: sync with dist_conf/kolab (resmgr_locksdir,
resmgr_localedir and LDAPD)
* dist_conf/kolabsrv.in: add debian flavour
2009-03-03 Thomas Arendsen Hein <thomas@intevation.de>
* templates/httpd.conf.template.in: "AllowOverride All" for /client to
fix kolab/issue3447 (Heavy information leak from webclient directories)
2009-03-02 Thomas Arendsen Hein <thomas@intevation.de>
* doc/README.amavisd.in: Adjusted foot notes for removed text.
2009-03-01 Richard Bos <richard@radoeka.nl>
* doc/README.amavisd.in: removed the reference to MYUSERS.patch
2009-02-25 Richard Bos <richard@radoeka.nl>
* dist_conf/kolabsrv.in: stop the services backwards compared with the
start sequence
2009-02-24 Thomas Arendsen Hein <thomas@intevation.de>
* doc/README.outlook: Updated for Kolab Server 2.2.1 (and corrected
typo and lost umlaut)
* dist_conf/suse: make syncrepl the default ldap server replication
mode
2009-02-22 Richard Bos <richard@radoeka.nl>
* Makefile.am: always distribute the template file
template/rc.config.template.in, see kolab/issue3408
* dist_conf/suse: change the directory value of
smarty_compiledir to ${localstatedir}/cache/kolab-webadmin
2009-02-21 Richard Bos <richard@radoeka.nl>
* dist_conf/kolabsrv.in: added argument checks, source in the file
/etc/kolab/profile.sh if it exists
* dist_conf/suse: assigned a value to kolab_quotawarning
2009-02-18 Thomas Arendsen Hein <thomas@intevation.de>
* kolab.globals.in: Add kolab_cafile to specify filename for
kolab_bootstrap to copy the generated CA certificate.
* Makefile.am, workaround.sh.in: Removed file, fixes kolab/issue1001
(/kolab/etc/kolab/workaround.sh expects manager password on command
line)
2009-02-15 Richard Bos <richard@radoeka.nl>
* dist_conf/suse: kolab_pkgs updated to reflect the currently installed
packages on openSUSE
2009-02-14 Richard Bos <richard@radoeka.nl>
* dist_conf/kolabsrv.in: corrected typo
2009-02-10 Mathieu Parent <math.parent@gmail.com>
* dist_conf/centos-clarkconnect, dist_conf/common, dist_conf/debian,
dist_conf/kolab, dist_conf/mandriva, dist_conf/suse,
templates/freebusy.conf.template.in, templates/resmgr.conf.template.in:
allow to configure resmgr and freebusy logging via dist_conf
2009-02-10 Thomas Arendsen Hein <thomas@intevation.de>
* kolab.globals.in: Add ldapserver_statedir, needed since
kolab_bootstrap.in got moved into perl-kolab.
2009-02-09 Thomas Arendsen Hein <thomas@intevation.de>
* kolab2.schema: Add postfix-message-size-limit as MAY to kolab object.
* kolab2.schema: Add user attribute kolabHomeServerOnly to create user
mailbox on the kolabHomeServer only.
2008-02-07 Mathieu Parent <math.parent@gmail.com>
* kolab.globals.in, dist_conf/centos-clarkconnect, dist_conf/common,
dist_conf/debian, dist_conf/kolab, dist_conf/mandriva, dist_conf/suse:
dist_conf configuration in kolab webclient templates (kolab/issue3387)
2009-01-30 Thomas Arendsen Hein <thomas@intevation.de>
* kolab2.schema, templates/main.cf.template.in: Renamed LDAP attribute
postfix-message_size_limit to postfix-message-size-limit.
2009-01-14 Gunnar Wrobel <p@rdus.de>
* templates/httpd.conf.template.in: Add a redirection for the
newer horde install location.
2009-01-07 Martin Konold <martin.konold@erfrakon.de>
* kolab2.schema, templates/main.cf.template.in: Made postfix message
size limit configurable via LDAP while remaining backwards compatible.
2008-01-06 Mathieu Parent <math.parent@gmail.com>
* dist_conf/debian: update to current debian dist_conf
2008-12-30 Mathieu Parent <math.parent@gmail.com>
* templates/freebusy.conf.template.in: freebusy.conf.template: ldap server
can be on another machine (kolab/issue3322)
2008-12-19 Gunnar Wrobel <p@rdus.de>
* templates/resmgr.conf.template.in: kolab/issue3331 (kolabfilter
uses incorrect delivery backend)
2008-12-12 Thomas Arendsen Hein <thomas@intevation.de>
* dist_conf/common, dist_conf/kolab, dist_conf/suse: Folded
@amavisd_pkg@, @emailserver_pkg@, @imap_pkg@, @webserver_pkg@,
@kolab_pkg@, @kolab_webadmin_pkg@, @kolab_filter_pkg@,
@kolab_freebusy_pkg@, @perl_kolabconf_pkg@, @perl_kolab_pkg@ and
@php_kolab_pkg@ into @kolab_pkgs@, and rename @pear_horde_pkg@ to
@pear_horde_pkgs@ for consistency. List is not yet updated for new
package names.
* dist_conf/kolab: Update @kolab_pkgs@ and @pear_horde_pkgs@.
Fixes kolab/issue3262 (web admin: versions page needs to be updated
for CVS HEAD)
2008-12-11 /kolab OpenPKG (non-privileged) <kolab@burlywood1>
* kolabd.spec.in, templates/slapd.conf.template.in: Removed
"with_horde" option: Always disable the horde schema (since prefs
are stored in files now), but compile php/apache-php with all
dependencies needed by horde. This will fix kolab/issue2440
(Installing binary packages of 2.2-beta3 fails without -H), too.
2008-11-21 Thomas Arendsen Hein <thomas@intevation.de>
* kolabd.spec.in: Adjust crontab entry for new location.
* kolabd.spec.in, rc.kolabd.in: Use OpenPKG mechanism to execute
kolabquotawarn, fixes kolab/issue936 (kolabquotawarn: system cron
used, and firing when server stopped)
2008-11-18 Mathieu Parent <math.parent@gmail.com>
* kolab.globals.in, dist_conf/{centos-clarkconnect,common,debian,kolab,
mandriva,suse}: kolab/issue2446 (Make the used syslog facility
configureable (kolabd, kolabconf)): configurable using dist_conf.
2008-11-17 Mathieu Parent <math.parent@gmail.com>
* templates/{transport.template.in,virtual.template.in}: postfix
lookup tables need to be updated on change.
* templates/{access.template.in,canonical.template.in,
relocated.template.in}, Makefile.am: added access, canonical and
relocated postfix maps (kolab/issue2550).
2008-11-12 Gunnar Wrobel <p@rdus.de>
* dist_conf/kolab: kolab/issue2351 (horde doesn't present
attachment stuff while compose a message)
2008-11-08 Gunnar Wrobel <p@rdus.de>
* templates/freebusy.conf.template.in (OWNERSHIP): Fixed allowing
special IMAP users for the newest Kolab_FreeBusy package.
(OWNERSHIP): Fixed free/busy server address for the newest
Kolab_FreeBusy package.
* templates/resmgr.conf.template.in (OWNERSHIP): Fixed allowing
special IMAP users for the newest Kolab_Filter package.
* templates/master.cf.template.in (OWNERSHIP): kolab_smtpdpolicy
has been moved to @bindir@.
* kolab.globals.in (kolab_quotawarning): Added kolab_quotawarning
to replace a hardcoded path in perl-kolab.
2008-11-06 Thomas Arendsen Hein <thomas@intevation.de>
* kolabd.spec.in: Removed kolabconf dependency.
2008-11-02 Richard Bos <richard@radoeka.nl>
* namespace/libexec/{adduser.in,deluser.in,listusers.in,newconfig.in,
services.in,showlog.in,showuser.in,start.in,stop.in}: add specific
reference to the shell to be used (#!@BASH@")
2008-10-19 Richard Bos <richard@radoeka.nl>
* kolab.globals.in: added syncrepl_cookie_file (kolab/issue3152)
2008-10-03 Gunnar Wrobel <p@rdus.de>
* kolab_upgrade.in: Moved script from kolabd package into
perl-kolab.
* kolabquotawarn.in: Moved script from kolabd package into
perl-kolab.
* kolabpasswd.in: Moved script from kolabd package into
perl-kolab.
* kolab_bootstrap.in: Moved script from kolabd package into
perl-kolab.
* kolabd.in: Moved script from kolabd package into
perl-kolab.
* kolabdcachetool.in: Moved script from kolabd package into
perl-kolab.
* kolabcheckperm.in: Moved script from kolabd package into
perl-kolab.
* kolabquotareport.in: Moved script from kolabd package into
perl-kolab.
* kolab_smtpdpolicy.in: Moved script from kolabd package into
perl-kolab.
2008-09-23 Gunnar Wrobel <p@rdus.de>
* templates/master.cf.template.in: Updated the configuration
template for the new Kolab_Filter version.
* templates/resmgr.conf.template.in: Updated the configuration
template for the new Kolab_Filter version.
2008-09-19 Gunnar Wrobel <p@rdus.de>
* templates/master.cf.template.in: Modified the filter calls for
the new Kolab_Filter version.
* templates/resmgr.conf.template.in: Updated the configuration
template for the new Kolab_Filter version.
* dist_conf/kolab: Adapted to the newer Kolab_Filter version.
2008-09-10 Richard Bos <richard@radoeka.nl>
* templates/slapd.conf.template.in: always include the horde.schema
kolab/issue3006
* horde.schema: updated to the latest version available in horde cvs
kolab/issue3006
* templates/slapd.conf.template.in: reshuffled the configuration a
bit, otherwise slapd won't start if directory_mode : syncrepl
is set in kolab.conf. See kolab/issue1755
2008-09-06 Richard Bos <richard@radoeka.nl>
* Makefile.am: Make kolab.globals readonly as it should never be
changed, after installing a package kolab/issue3031.
2008-08-27 Richard Bos <richard@radoeka.nl>
* templates/slapd.conf.template.in: added @@@if conditional aroud
the TLSCertificate variable assignments. See kolab/issue3005
* kolab_bootstrap.in: read the config file kolab.conf with a function
from Kolab::Conf
2008-08-26 Richard Bos <richard@radoeka.nl>
* kolab.conf: removed, see issue2994
* Makefile.am: updated to reflect change above
2008-08-20 Richard Bos <richard@radoeka.nl>
* kolab_bootstrap.in: added syncrepl support, see kolab/issue1755
2008-08-14 Richard Bos <richard@radoeka.nl>
* templates/slapd.conf.template.in: added syncrepl support,
see kolab/issue1755
2008-08-11 Richard Bos <richard@radoeka.nl>
* kolab_bootstrap.in: added syncrepl support, see kolab/issue1755
2008-08-04 Richard Bos <richard@radoeka.nl>
* templates/slapd.conf.template.in: removed obsolete variable
schemacheck, see kolab/issue29110
2008-08-04 Richard Bos <richard@radoeka.nl>
* templates/slapd.conf.template.in: changed the comment around
idletimeout, see kolab/issue2911
2008-07-19 Thomas Arendsen Hein <thomas@intevation.de>
* kolab_bootstrap.in: Quote s[l]urpd to prevent being expanded by the
shell.
2008-07-09 Thomas Arendsen Hein <thomas@intevation.de>
* templates/imapd.conf.template.in: kolab/issue2855 (Can create folder
while logging in as user without domain name): Remove autocreatequota
setting to prevent creating INBOX.
* kolab_bootstrap.in: Update checkPort statements to current Kolab
server: no ftpd, no strange pop3/imap ports, lmtp, postfix reinjection.
2008-07-04 Sascha Wilde <wilde@intevation.de>
* kolabd.spec.in: changed `with_horde' default to "yes".
2008-07-03 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/suse: provide correct value for spamassassin_confdir
2008-07-03 Thomas Arendsen Hein <thomas@intevation.de>
* templates/master.cf.template.in: virtual_maps -> virtual_alias_maps.
See kolab/issue1895 (switch from virtual_maps to virtual_alias_maps)
2008-06-26 Thomas Arendsen Hein <thomas@intevation.de>
* kolab_bootstrap.in: Use Net::Domain to determine fqdn more reliably.
* kolab_bootstrap.in: Make sure suggested domain name contains a dot.
2008-06-05 Thomas Arendsen Hein <thomas@intevation.de>
* templates/fbview.conf.template.in: Removed unused file.
* Makefile.am: Removed entry for fbview.conf.template.
2008-05-29 Thomas Arendsen Hein <thomas@intevation.de>
* kolabpasswd.in: fixed typo: passwod -> password
2008-04-30 Sascha Wilde <wilde@intevation.de>
* Makefile.am: Major cleanup: replaced lots of redundant rules by
two generalized ones. (TODO: actually one should do...)
2008-04-29 Sascha Wilde <wilde@intevation.de>
* dist_conf/kolab (spamassassin_confdir): New variable.
* dist_conf/common (do_subst): Added `spamassassin_confdir'.
* templates/local.cf.template.in: New file with some rules similar
to what was done in 2.1 by patching spamassassin.
* Makefile.am (kolabtemplate_FILES): Added new local.cf template.
2008-04-22 Thomas Arendsen Hein <thomas@intevation.de>
* templates/imapd.annotation_definitions.template.in:
Rename xfb-readable to pxfb-readable-for.
2008-04-17 Thomas Arendsen Hein <thomas@intevation.de>
* templates/slapd.conf.template.in: move comment away from value.
2008-04-04 Richard Bos <richard@radoeka.nl>
* templates/cyrus.conf.template.in: changed delprune from
period=1440 to at=0400, (issue2436)
2008-04-02 Thomas Arendsen Hein <thomas@intevation.de>
* templates/httpd.conf.template.in, templates/resmgr.conf.template.in:
Rename .xpfb to .pxfb.
Triggering .pfb generates partial extended fb, too.
2008-03-19 Richard Bos <richard@radoeka.nl>
* dist_conf/common, dist_conf/centos-clarkconnect,
dist_conf/debian, dist_conf/gentoo, dist_conf/kolab
dist_conf/mandriva, dist_conf/suse: added variable
smarty_compiledir=${phplibdir2}/${kolab_php_module_prefix}admin/templates_c
See issue 2538
2008-03-13 Sascha Wilde <wilde@intevation.de>
* templates/resmgr.conf.template.in: Use https for freebusy_url.
2008-03-07 Thomas Arendsen Hein <thomas@intevation.de>
* templates/httpd.conf.template.in: Enforce SSL for horde and fbview
and corrected Location entries for changed webserver_web_prefix and
kolab_wui.
2008-03-06 Richard Bos <richard@radoeka.nl>
* kolab/issue2507
* templates/session_vars.php.template.in: changed TARGET path from
a possible readonly location to @sysconfdir@/kolab
2008-03-05 Thomas Arendsen Hein <thomas@intevation.de>
* templates/header_checks.template.in, templates/main.cf.template.in,
Makefile.am: Fix kolab/issue2350 (Email from buggy Lotus notes client
not accepted by Cyrus) and filter some MUA headers to not allow
receiving mails which are already marked as read, flagged, etc.
* kolab.globals.in, templates/imapd.conf.template.in:
Fix kolab/issue2358 (mistmatch between cyrus-admins and cyrus-admin)
2008-03-03 Thomas Arendsen Hein <thomas@intevation.de>
* kolab.conf, kolab.globals.in: moved default entry for
syslog_facility to kolab.globals (see kolab/issue2446)
2008-02-23 Richard Bos <richard@radoeka.nl>
* kolab_bootstrap.in, templates/httpd.conf.template.in,
dist_conf/common, dist_conf/centos-clarkconnect,
dist_conf/debian, dist_conf/gentoo, dist_conf/kolab
dist_conf/mandriva, dist_conf/suse: changed the hardcoded
path to the web user interface (/admin) into a variable: kolab_wui.
2008-02-20 Richard Bos <richard@radoeka.nl>
* templates/httpd.conf.template.in: added missing webserver_web_prefix
2008-02-19 Thomas Arendsen Hein <thomas@intevation.de>
* dist_conf/centos-clarkconnect, dist_conf/debian, dist_conf/gentoo,
dist_conf/kolab, dist_conf/suse: Fixed locations of graveyard_uidcache
and graveyard_tscache autoconf variables. This only affects
kolabdcachetool, as the locations are hardcoded in perl-kolab.
* templates/httpd.conf.template.in: Reenable downloading of
freebusy lists after the change as of 2008-02-09.
2008-02-13 Richard Bos <richard@radoeka.nl>
* dist_conf/suse, dist_conf/common, dist_conf/kolab,
dist_conf/centos-clarkconnect: changed the rpm suffix _rpm to _pkg
so it better describes what it refers to, also for platforms that
use another package management system.
* Added the variable kolab_pkgs to add more packages if needed. This
variable is used in the kolab-webadmin package
2008-02-12 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/suse: corrected path to freshclam PidFile + other minor fixes
2008-02-11 Richard Bos <richard@radoeka.nl>
* dist_conf/common, dist_conf/suse: added autoconf variables for the rpms:
kolab-filter_rpm, kolab-freebusy_rpm, perl-kolab-conf_rpm,
php-pear-kolab_filter_rpm and php-pear-kolab_freebusy_rpm
2008-02-11 Sascha Wilde <wilde@intevation.de>
* templates/resmgr.conf.template.in: Added 'privileged_networks',
see kolab/issue2466.
2008-02-09 Richard Bos <richard@radoeka.nl>
* templates/httpd.conf.template.in: removed webdav related configuration
settings. See: https://www.intevation.de/roundup/kolab/issue1686
2008-02-07 Gunnar Wrobel <p@rdus.de>
* namespace/libexec/generatefb.in:
Removed the script again because calling the script on the command
line destroys ownership of the cache. The recommended way is to
call the script via the web.
* Makefile.am (namespace/libexec/generatefb):
Removed the generatefb tool again.
* templates/httpd.conf.template.in:
Allow internal users (also manager) to log in via the apache
authentication (only relevant for free/busy).
2008-02-06 Gunnar Wrobel <p@rdus.de>
* namespace/libexec/generatefb.in (CLI_PASS):
Fix php.ini location as suggested by Richard Bos.
* Makefile.am (namespace/libexec/generatefb):
Add the new namespace script.
* namespace/libexec/generatefb.in:
Add a bash script for calling the new generatefb.php script
2008-02-01 Richard Bos <richard@radoeka.nl>
* dist_conf/kolabsrv.in: changed the reference to the script itself
to an autotools variable (@KOLABRC@).
2008-01-31 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/kolabsrv.in: added getServiceName method to map distribution
specific rc script names.
* dist_conf/suse: updated logfile locations + other fixes (now support for
suse <= 10.1 is completely dropped)
2008-01-28 Richard Bos <richard@radoeka.nl>
* kolabquotawarn.in: the quotawarn.db can not be opened on an
openSUSE system, as a not-existing directory is used. Use the
correct autotools variable @kolab_statedir@ instead of
@localstatedir@ to obtain the correct behavior.
* namespace/libexec/showlog.in: added missing log files and
corrected 2 autotools variables @resmgr_logfile@ and
@freebusy_logfile@ that where removed some time ago.
2007-12-16 Richard Bos <richard@radoeka.nl>
* dist_conf/suse: the sasl2/smtp.conf location has changed, adapt to this.
2007-12-04 Richard Bos <richard@radoeka.nl>
* templates/convert_resmgr_conf2config.pl: added.
The script is to be used to convert the templates/resmgr.conf.template
file into config.php, which is than to be copied to
kolab-filter cvs module.
2007-12-03 Thomas Arendsen Hein <thomas@intevation.de>
* kolab_bootstrap.in, templates/resmgr.conf.template.in: Removed
resource password handling which is unused since server 2.1.
2007-11-30 Gunnar Wrobel <p@rdus.de>
* templates/cyrus.conf.template.in:
kolab/issue2225 (notifyd logging going into fsl.log)
* templates/ldapdistlist.cf.template.in:
kolab/issue2206 (Multiple deliveries to distribution lists)
2007-11-29 Gunnar Wrobel <p@rdus.de>
* templates/httpd.conf.template.in:
Reverted the fix for bug #1507. Read:
http://www.horde.org/horde/docs/?f=SECURITY.html
* templates/imapd.annotation_definitions.template.in:
Added /vendor/kolab/xfb-readable
2007-11-29 Thomas Arendsen Hein <thomas@intevation.de>
* templates/resmgr.conf.template.in: lmpt -> lmtp, smpt -> smtp
* templates/resmgr.conf.template.in: Fixed connection addresses
for IMAP server and LMTP.
2007-11-28 Gunnar Wrobel <p@rdus.de>
* templates/kolab.conf.template.in (calendar_id):
Rename "calendar_dn" to "calendar_id"
* kolab_bootstrap.in:
Use "calendar_id" instead of "calendar_pw"
* kolab.globals.in (calendar_id):
Added global calendar_id setting.
2007-11-27 Gunnar Wrobel <p@rdus.de>
* dist_conf/common:
* dist_conf/kolab:
resmgr_logfile is now resmgr_logdir.
resmgr_filterdir is now resmgr_tmpdir.
* templates/resmgr.conf.template.in:
Updated the template for the restructured kolab-filter package.
2007-11-23 Gunnar Wrobel <p@rdus.de>
* templates/freebusy.conf.template.in:
Add remote_servers configuration variable.
* dist_conf/kolab (freebusy_cachedir):
Fixed cachedir location.
2007-11-22 Gunnar Wrobel <p@rdus.de>
* dist_conf/kolab (freebusy_logdir):
* dist_conf/common:
freebusy_logfile is now freebusy_logdir.
* templates/freebusy.conf.template.in:
Updated the template for the restructured kolab-freebusy package.
2007-11-22 Thomas Arendsen Hein <thomas@intevation.de>
* templates/master.cf.template.in: Allow postfix smtp and smtps
to bind to a specific IP, too.
2007-11-21 Gunnar Wrobel <p@rdus.de>
* templates/httpd.conf.template.in:
kolab/issue2236 (Apache UID access broken)
2007-11-07 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/suse:
changed the location of the resmgr_confdir
2007-11-07 Gunnar Wrobel <p@rdus.de>
* kolabd.spec.in:
* Makefile.am (install-data-hook):
* templates/php.ini.template.in:
* dist_conf/common:
Added webserver_tmpdir
2007-10-22 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/suse:
changed the location of the smtpd.conf file (sasl_smtpconffile)
* dist_conf/kolabsrv.in:
replaced "apache" with "apache2". This file isn't used by the openpkg
installation so this change has no impact on it.
2007-10-17 Thomas Arendsen Hein <thomas@intevation.de>
* Makefile.am, kolab.globals.in, kolab2.schema, kolab_bootstrap.in,
kolabd.spec.in, dist_conf/centos-clarkconnect, dist_conf/common,
dist_conf/debian, dist_conf/gentoo, dist_conf/kolab,
dist_conf/mandriva, dist_conf/suse, namespace/libexec/showlog.in,
templates/rc.conf.template.in:
kolab/issue934 (Remove FTP FreeBusy Service (proftpd))
* templates/proftpd.conf.template.in: Removed.
* templates/httpd.conf.template.in: kolab/issue1686 (Remove WebDAV Support)
2007-10-03 Gunnar Wrobel <p@rdus.de>
* templates/httpd.conf.template.in:
kolab/issue1796 (httpd.conf : MISSING Include "/kolab/etc/apache/apache.d/*.conf")
https://intevation.de/roundup/kolab/issue1796
* Makefile.am:
Add kolabquotareport.
See kolab/issue1811 (Spurious files in CVS, kolabd directory)
https://intevation.de/roundup/kolab/issue1811
* templates/main.cf.template.in (virtual_alias_maps):
Switched from virtual_maps to virtual_alias_maps.
See kolab/issue1895 (switch from virtual_maps to virtual_alias_maps)
https://intevation.de/roundup/kolab/issue1895
* templates/imapd.annotation_definitions.template.in:
Added additional "/vendor/horde/share-params" annotation for
extended shares in Horde.
* templates/imapd.conf.template.in (sieve_extensions):
Define this parameter for additional sieve extensions "body" and
"include".
See kolab/issue2038 (additional sieve extensions)
https://intevation.de/roundup/kolab/issue2038
2007-08-05 Gunnar Wrobel <p@rdus.de>
* kolabd.spec.in:
Added "with_horde" support.
2007-08-02 Gunnar Wrobel <p@rdus.de>
* kolabd.spec.in:
Ensure the php error dir gets the correct ownership.
* Makefile.am (install-data-hook):
Create a directory for php errors.
* dist_conf/common (do_subst):
Add the webserver_logdir in the replacement ops.
* templates/httpd.conf.template.in:
The "graphics" directory is now called "themes"
* templates/php.ini.template.in (error_reporting):
Log php errors into a file rather than displaying them.
2007-08-01 Gunnar Wrobel <p@rdus.de>
* Makefile.am:
* kolabd/kolabconf.in:
* kolab.globals.in :
Moved kolabconf in its own package and modified the global
configuration file so that it provides all necessary configuration
for the kolabconf script.
2007-07-31 Gunnar Wrobel <p@rdus.de>
* kolab.globals.in (kolab_locals):
Instead of rewriting variables within the perl-kolab library these
are now provided within kolab.globals.
* kolabcheckperm.in (Kolab):
* kolab_upgrade.in (Kolab):
* kolabquotawarn.in (Kolab):
* kolabquotareport.in (Kolab):
* kolabconf.in (Kolab):
* kolabd.in (Kolab):
Fixed reloadConfig call to contain the path to the global
configuration file.
2007-07-27 Gunnar Wrobel <p@rdus.de>
* kolabquotareport.in:
* kolabquotawarn.in:
* kolabd.in:
* kolab_upgrade.in:
Added statedir variable to the LDAP startup call.
* Makefile.am (kolabquotareport):
Made kolabquotareport a rewritten file (kolabquotareport.in)
The file does not get installed though.
* kolab.globals.in:
* dist_conf/*:
Added the kolabconf_script variable.
* Makefile.am (kolab.globals):
Made kolab.globals a rewritten file (kolab.globals.in)
2007-07-26 Gunnar Wrobel <p@rdus.de>
* Makefile.am:
* dirservnotify.in:
* dirservupdate.in:
* kolab.globals:
* kolabd.in:
Removing "dirserv"-support from kolabd. The corresponding
perl-module has been left untouched since its first import in
kolab CVS and still uses the very first Kolab schema. It does not
work at the moment. If somebody thinks this should be revived,
please revert and fix the corresponding Kolab::DirServ module.
2007-07-26 Thomas Arendsen Hein <thomas@intevation.de>
* templates/master.cf.template.in: Use spaces instead of tabs
for discard to match the style of other lines.
2007-07-26 Gunnar Wrobel <p@rdus.de>
* templates/master.cf.template.in:
A Gentoo user notified me of missing services in the Gentoo
postfix configuration. I checked the Kolab-Server-2.2 postfix
configuration and "postfix upgrade-configuration" adds a missing
"discard" service. Added to the template.
2007-06-27 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/suse:
The emailserver_socket is stored in $(libexecdir) and not in $(libdir). This
fixes a x86_64 issue.
2007-06-22 Marcus Hwe <suse-tux@gmx.de>
* Makefile.am, dirservnotify, dirservupdate:
autoconfiscated dirservnotify and dirservupdate. "dirservnotify" was renamed
to "dirservnotify.in" and "dirservupdate" was renamed to "dirservupdate.in".
2007-06-21 Marcus Hwe <suse-tux@gmx.de>
* Makefile.am:
fixed kolab/issue1805 (Uncleaned files in kolabd source package)
Added missing Makefile dependencies (pointed out by Peter Eisentraut)
fixed kolab/issue1804 (Several files apparently missing in kolabd 2.1.0 package)
"dirservnotify", "dirservupdate" and "kolabdcachetool" are a part of a normal
kolabd installation (they will be installed to $(kolab_scriptsdir))
* kolabd.spec.in:
removed "rm -rf $RPM_BUILD_ROOT" from the %install section as this opens
a possible race condition (see http://lists.opensuse.org/opensuse-packaging/2007-02/msg00005.html
for more information)
* kolabdcachetool.in:
autoconfiscated version of kolabdcachetool (renamed kolabdcachetool to
kolabdcachetool.in)
2007-05-11 Gunnar Wrobel <p@rdus.de>
* templates/saslauthd.conf.template.in (ldap_bind_pw):
kolab/issue1126 (ldap_simple_bind() failed and Domain/Realm not available)
https://intevation.de/roundup/kolab/issue1126
Partial fix for this issue (should remove the "Domain/Realm not
available" message)
2007-05-07 Gunnar Wrobel <p@rdus.de>
* Makefile.am (ldapschema_FILES):
Added the necessary line to install the horde.schema file.
* horde.schema:
Added the horde.schema from horde cvs.
* templates/slapd.conf.template.in:
Added commented horde.schema. Users may uncomment this if they
wish to use horde.
2007-04-17 Thomas Arendsen Hein <thomas@intevation.de>
* templates/clamd.conf.template.in: Add ScanPDF option (clamav 0.90.2)
2007-04-12 Gunnar Wrobel <p@rdus.de>
* templates/cyrus.conf.template.in (OWNERSHIP):
Exchange ctl_deliver with cyr_expire as mentioned in
http://cyrusimap.web.cmu.edu/imapd/changes.html (Changes to the
Cyrus IMAP Server since 2.1.x). Reported by Alain Spineux.
2007-03-30 Gunnar Wrobel <p@rdus.de>
* namespace/kolab.in (openpkg_tools_apipath):
Fixed --help call. See
issue1680 (https://intevation.de/roundup/kolab/issue1680).
Should fix
issue1609 (https://intevation.de/roundup/kolab/issue1609)
2007-03-22 Marcus Hwe <suse-tux@gmx.de>
* templates/main.cf.template.in:
No warnings when running postmap (expected format: key whitespace value)
2007-03-22 Gunnar Wrobel <p@rdus.de>
* templates/resmgr.conf.template.in:
Prevent error messages like "No configuration variable
corresponding to `kolabfilter-verify-from-header' exists" within
the kolabconf log. Resolves:
kolab/issue1638 (https://intevation.de/roundup/kolab/issue1638)
2007-02-11 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/suse, dist_conf/kolab/, dist_conf/common,
dist_conf/gentoo: Added new variable TAR
* kolab_bootstrap.in: Added a condition to the slave setup so that
it won't try to edit the "@sysconfdir@/rc.conf" file if kolabd was built
with "--without-openpkg"
2007-01-08 Richard Bos <richard@radoeka.nl>
* templates/resmgr.conf.template.in: fix the path to the freebusy
directory
2007-01-08 Richard Bos <richard@radoeka.nl>
* dist_conf/suse, dist_conf/kolab, dist_conf/common,
dist_conf/gentoo, templates/virtual.template.in,
templates/transport.template.in: changed emailserver_transport_usr
to emailserver_tables_usr.
2006-12-15 Gunnar Wrobel <wrobel@pardus.de>
* templates/amavisd.conf.template.in:
Added all domain names into the local domains known to amavis so
that all spam messages will get their tags. Resolves:
kolab/issue1531.
2006-12-14 Gunnar Wrobel <wrobel@pardus.de>
* dist_conf/gentoo:
Updated to the newest configuration settings for Gentoo.
2006-11-14 Richard Bos <richard@radoeka.nl>
* dist_conf/suse, dist_conf/kolab, dist_conf/common,
dist_conf/gentoo, templates/virtual.template.in,
templates/transport.template.in: Added a new variable
emailserver_transport_usr
2006-11-01 Gunnar Wrobel <wrobel@pardus.de>
* templates/freebusy.conf.template.in:
Commit
http://kolab.org/cgi-bin/viewcvs-kolab.cgi/server/kolab-resource-handlers/kolab-resource-handlers/freebusy/freebusy.php.in.diff?r1=1.3&r2=1.4
leads to resmgr/misc.php not being imported before
freebusy.conf. Consequently RM_LOG_DEBUG remains undefined an
results in an error. Either the order of the include statements in
kolab-resource-handlers/freebusy/freebusy.php.in is being changed
or the template uses integer values for the log_level. Chose the
second option for now.
In addition $params['cache_dir'] was set to @freebusy_cachedir@ in
order to get the correct path under all distributions.
2006-10-02 Marcus Hwe <suse-tux@gmx.de>
* templates/slapd.conf.template.in: fixed issue1426 - thanks
Gunnar!
2006-09-27 Bernhard Reiter <bernhard@intevation.de>
* DB_CONFIG.slapd.template.in: Fixing set_lk_detect setting,
also adding the meaning from the documentation. Thanks
to Gunnar Wrobel for spotting.
Resolves: kolab/issue1428 (Last commit on DB_CONFIG.slapd.template.in
breaks the LDAP db)
2006-09-26 Bernhard Reiter <bernhard@intevation.de>
* templates/main.cf.template.in: activated limit on
local delivery recipients again, with hint to remove it if issue825
is fixed.
2006-09-25 Bernhard Reiter <bernhard@intevation.de>
* templates/main.cf.template.in: Moved recipient_delimiter = +
up because it also influences canonical, virtual and more.
Changed to directly use kolabmailboxfilter from local_transport
without local(8). This fixes kolab/issue824 and seems better
because local(8) will take aliases and .forward files into account.
This change was made in rev. 1.16 main.cf.template and got
lost during autoconfiscation. Added example for an alternative
fix of issue824 keeping local(8).
2006-08-28 Bernhard Reiter <bernhard@intevation.de>
* templates/master.cf.template.in: added envelope_recipient
to masquerade_classes. According to Postfix' documention it was
missing to allow for delivery to local machines, which we do
not want to do in a standard Kolab Server setup.
Removed the masquerade_exceptions = root line, as we can get
the information where an email to root@machine came from also
from the connection itself and it is good to be closer to the default.
2006-06-26 Thomas Arendsen Hein <thomas@intevation.de>
* templates/master.cf.template.in: Updated postfix master.cf.template
to match master.cf from OpenPKG. Fixes the missing relay service (new
in Postfix 2.2), everything else is cleanup or commented out by
default.
2006-04-13 Marcus Hwe <suse-tux@gmx.de>
* templates/master.cf.template.in: replaced @bindir@/php with @PHP@
* dist_conf/suse: changed the location for the ldapserver_argsfile,
ldapserver_pidfile and ldapserverslurpd_pidfile
2006-04-04 Richard Bos <richard@radoeka.nl>
* templates/httpd.conf.template.in: Without DOCUMENT_ROOT the rewrite
engine uses a real /freebusy directory on the filesystem before
%{DOCUMENT_ROOT}/freebusy. This may result in unexpected behaviour.
2006-04-03 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/common, dist_conf/kolab, dist_conf/suse,
templates/freebusy.conf.template.in: introduction of freebusy_usr
and freebusy_grp.
2006-03-26 Richard Bos <richard@radoeka.nl>
* templates/php.ini.template.in: use the variable phpini_dir instead
of webserver_confdir.
2006-03-26 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/{common,suse,kolab}, templates/main.cf.template.in:
Introduced new variable @aliases_file@
2006-03-26 Richard Bos <richard@radoeka.nl>
* dist_conf/suse, dist_conf/kolab provide the correct values for
the resmgr_scriptsdir variable.
2006-03-20 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/common, dist_conf/kolab, dist_conf/suse,
templates/master.cf.template.in: introduce a new variable phpini_dir
for the directory that holds the php.ini file to be used.
2006-03-16 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/suse: run as user kolab instead of nobody.
2006-03-11 Richard Bos <richard@radoeka.nl>
* dist_conf/suse, change te ldap replication log location. This
seems to solve the issue that changes in the webinterface are not
propagated to the backend, as administrated in issue 1068:
https://intevation.de/roundup/kolab/issue1068.
In the old location the directory was not writable by the ldap
daemon, in the new location /var/run/slapd/ it is.
2006-03-02 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/common, dist_conf/kolab, dist_conf/suse,
kolab_bootstrap.in, kolab_sslcert.sh.in: introduced a new
variable pki_grp for public key infrastructure (pki) group support.
2006-02-07 Thomas Arendsen Hein <thomas@intevation.de>
* dist_conf/kolab: Use amavisd.log instead of amavis.log as log file
to fix logrotate in OpenPKG installation (Issue1015).
2006-02-06 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* Makefile.am: create the kolab_statedir directory, during make.
2006-02-05 Richard Bos <richard@radoeka.nl>
* Makefile.am: patch from Raphael Langerhorst, see issue:
https://intevation.de/roundup/kolab/issue1105.
Remove "+" in chmod command.
2006-02-05 Richard Bos <richard@radoeka.nl>
* dist_conf/common, dist_conf/kolab, dist_conf/suse'
templates/session_vars.php.template.in: introduce a new build
variable: kolab_php_module_prefix. This variable makes it possible
to store all kolab php modules in its own module. E.g on suse it
will be /usr/share/php/kolab. This prevents scattering of sources.
2006-02-04 Richard Bos <richard@radoeka.nl>
* templates/ldapdistlist.cf.template.in,
templates/master.cf.template.in,
templates/smtpd.conf.template.in,
templates/transport.template.in,
templates/virtual.template.in: changed the owner and group from
root to respectively: @emailserver_usr@ and @emailserver_grp@.
This means that the ownership and group changed to respectively:
kolab-n and kolab-r!
See https://intevation.de/roundup/kolab/issue1083
2006-02-01 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/common,
dist_conf/kolab,
dist_conf/suse,
templates/resmgr.conf.template.in: added resmgr_conffile_usr and
resmgr_conffile_grp variables.
* templates/amavisd.conf.template.in: commented out the variable
MYHOME and assigned it the value @amavisd_home@ from the dist_conf
file. The LOGFILE variable has been assigned the variable:
@amavisd_logfile@, see tracker:
https://intevation.de/roundup/kolab/issue1088
2006-01-31 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/common,
dist_conf/kolab,
dist_conf/suse,
templates/kolab_smtpdpolicy.conf.template.in: added
kolab_smtpdpolicy_conffile_usr and
kolab_smtpdpolicy_conffile_grp variables.
2006-01-23 Richard Bos <richard@radoeka.nl>
* kolabquotawarn.in: removed \n in error string, seems redundant.
2006-01-18 Richard Bos <richard@radoeka.nl>
* dist_conf/suser: add /etc/php.ini to the backup list.
2006-01-18 Richard Bos <richard@radoeka.nl>
* dist_conf/common,
* dist_conf/kolab,
* dist_conf/suser,
* templates/main.cf.template.in,
* templates/master.cf.template.in: introduced new variables for postfix
emailserver_mail_owner, emailserver_setgid_grp,
emailserver_default_privs and emailserver_master_usr
Remove variable emailserver_mail_usr, it is not used anymore
2006-01-17 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/{common,kolab,suse}: introduced *_rpm variables and
ldapserver_rgrp variable.
* kolab_bootstrap.in: use @ldapserver_rgrp@ variable
2006-01-16 Richard Bos <richard@radoeka.nl>
* kolab_bootstrap.in: use @kolab_rgrp@ iso @kolab_rusr@ in chgrp
command.
* revert the previous update; use @ldapserver_usr@ instead of
@kolab_musr@, as it did not work as expected.
2006-01-16 Richard Bos <richard@radoeka.nl>
* kolab_bootstrap.in: use @ldapserver_usr@ instead of @kolab_musr@ to
alter the ownership of the files $pubreskey $privreskey on the
master server.
* templates/session_vars.php.template.in: use @webserver_musr@ instead
of @kolab_musr@
2006-01-15 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/common,
dist_conf/kolab,
dist_conf/suse: introduced RPM variable
2006-01-15 Richard Bos <richard@radoeka.nl>
* Makefile.am,
dist_conf/common,
dist_conf/debian,
dist_conf/kolab,
dist_conf/suse,
templates/amavisd.conf.template.in: split the variable amavisd_confdir
into amavisd_conffile and amavisd_templatedir.
2006-01-15 Richard Bos <richard@radoeka.nl>
* dist_conf/common,
dist_conf/debian,
dist_conf/kolab,
dist_conf/suse,
templates/saslauthd.conf.template.in,
templates/smtpd.conf.template.in: use more fine grained variables
for sasl configuration files. Changed emailserver_sasl_confdir to
sasl_smtpdconffile and sasl_confdir to sasl_authdconffile.
2006-01-14 Richard Bos <richard@radoeka.nl>
* dist_conf/kolab: removed restricted_kolab_usr and restricted_kolab_grp
use the real value 'kolab-r' instead
* kolab_sslcert.sh.in: replace restricted_kolab_grp with kolab_rgrp
2006-01-14 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* configure.ac: replaced --enable-dist with --with-dist
Added dist_conf file check. If dist_conf file specified with
--with-dist is not present fail configure.
* kolabd.spec.in: replaced --enable-dist with --with-dist
2006-01-09 Richard Bos <richard@radoeka.nl>
* Makefile.am: install templates/rc.conf.template only on openpkg
installations.
* dist_conf/suse: changed owners and groups according the owners
and groups as defined by suse.
2006-01-07 Richard Bos <richard@radoeka.nl>
* dist_conf/suse: changed clamav_confdir to just ${sysconfdir}
2006-01-06 Richard Bos <richard@radoeka.nl>
* kolab_bootstrap.in: replaced openldap in openpkg rc calls with @LDAPD@
* dist_conf/common: added @LDAPD@
* dist_conf/kolab, dist_conf/suse: added definition for LDAPD
* dist_conf/kolabsrv.in: use @LDAPD@ to start the ldap deamon
2006-01-06 Richard Bos <richard@radoeka.nl>
* Makefile.am: added support to install kolabsrv for non openpkg
based distributions. kolabsrv is a replacement for the openpkg script
* dist_conf/kolabsrv.in: replaced /bin/bash with @BASH@ and used
@kolab_rcdir@ for the rc directory
* dist_conf/suse: Updated KOLABRC to use the kolabsrv script
2006-01-05 Richard Bos <richard@radoeka.nl>
* kolab_bootstap.in: unexpanded tabs, to improve readability
* dist_conf/kolabsrv.in: added
2006-01-04 Richard Bos <richard@radoeka.nl>
See issue1048
* configure.ac: Added AC_SUBST(WITHOPENPKG)
* dist_conf/common: Added CHKCONFIG, WITHOPENPKG and backupfiles
* dist_conf/suse: Added assignment for backupfiles
* kolab_bootstrap.in: Added one time backup support for configuration
files that are provided by the distributor
Removed a redundant @ldapserver_dir@ statement
Changed removal of *.pem files and the @ldapserver_dir@/* files
Check the existance of files and directories, before moving
Change @sysconfdir@/rc.conf for openpkg based distributions
2006-01-03 Richard Bos <richard@radoeka.nl>
* Makefile.am: distribute only the files to be distributed
from the dist_conf directory.
The kolabd.spec.in is already distributed without being
specified in the EXTRA_DIST line.
Add a remark that the perl-kolab, kolab-webadmin and
kolab-resource-handlers Makefile.ams must be updated too when
kolabd's Makefile.am is updated for dist_conf sources.
Added a distclean-local rule to remove the directory autom4te.cache
2006-01-02 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* Makefile.am: changed kolabrc_FILE into kolabrc_DATA to fix
bug issue1068; rc.kolabd need to be executable
Thanks Marcus for providing the fix.
2006-01-01 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos, see issue1049
* dist_conf/debian: added (provided by Benoit Mortier)
* dist_conf/suse, dist_conf/kolab, dist_conf/common: added backupdir
* kolab_bootstrap.in: replaced $sysconfdir/kolab/backup with @backupdir@
Added webserver_web_prefix to the url that is to be used to reach
the admin page
2005-12-30 Richard Bos <richard@radoeka.nl>
* configure.ac: cosmetic change. Change --enable-openpkg
into --with-openpkg
2005-12-30 Richard Bos <richard@radoeka.nl>
* Makefile.am: add webserver_web_prefix so the involved files
are installed in the right directory.
* dist_conf/suse: adjusted freebusy_cachedir to reflect the
addition of webserver_web_prefix
2005-12-30 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos, see issue1049
* templates/resmgr.conf.template.in,
templates/fbview.conf.template.in: added
@webserver_web_prefix@ (we did what Mandriva already had done!)
* dist_conf/{kolab,suse,common}: added @webserver_web_prefix@
2005-12-30 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos, see issue1047
* dist_conf/{kolab,suse}: added KOLABRC variable
* kolab_bootstrap.in: replaced @bindir@/openpkg with @KOLABRC@
* namespace/kolab.in: replaced @bindir@/openpkg with @KOLABRC@
2005-12-30 Martin Konold <martin.konold@erfrakon.de>
* templates/ldapdistlist.cf.template.in: improved comment
removed redundant ", as reported in issue1050
2005-12-27 Martin Konold <martin.konold@erfrakon.de>
Patch from Richard Bos
* kolab_ca.sh.in: Changed $PREFIX/bin to @bindir@
added code to eat all command line arguments in case the file
${CATOP}/private/$CAKEY already exist to prevent a crash
see issue1045
* kolab_bootstrap.in: changed @sysconfdir@/rc to @bindir@/openpkg,
see issue1046
2005-12-23 Richard Bos <richard@radoeka.nl>
* dist_conf/(kolab,suse,gentoo,mandriva}: removed the unused
variables postfix_usr, postfix_grp, emailserver_imapdir,
emailserver_imapspooldir and emailserver_sievedir
* dist_conf/suse: added the right values for: emailserver_socket
emailserver_localstatedir and emailserver_logfile
2005-12-23 Richard Bos <richard@radoeka.nl>
* dist_conf/suse: removed the not needed references to the openpkg
variables, like: @l_ngrp@, @l_musr@, etc as they are not used in
the suse environment
Corrected emailserver_sasl_conffile for suse.
Changed most of the users and groups to root, this is a known user
and it takes care that kolab_bootstrap at least finishes.
2005-12-22 Richard Bos <richard@radoeka.nl>
* dist_conf/kolab: changed phppeardir from ${phplibdir}/pear to
${phplibdir2}/pear
* templates/httpd.conf.template.in,
templates/php.ini.template.in: changed @phplibdir2@/pear to
@phppeardir@
2005-12-22 Richard Bos <richard@radoeka.nl>
* Makefile.am: make kolabpasswd executable for non OPENPKG distributions
as well
2005-12-22 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* dist_conf/suse: changed perllib from site_perl to vendor_perl
changed pkgdocdir from ${datadir}/doc/packages to
${datadir}/doc/packages/kolab
2005-12-19 Richard Bos <richard@radoeka.nl>
* configure.ac: added no-dist-gzip to AM_INIT_AUTOMAKE
* ../Makefile: reflected change in configure.ac, to create only bzipped
tarbals. Changed 'make dist' into 'make distcheck'
2005-12-19 Richard Bos <richard@radoeka.nl>
* dist_conf/common, dist_conf/kolab, dist_conf/suse: added phppeardir
and changed BASH to BASHELL (it appeared after a little experimenting
that the variable BASH does not get updated in configure, as it is
already set by bash itself....)
2005-12-18 Marcus Hwe <suse-tux@gmx.de>
Patch committed by Richard Bos
* Makefile.am: removed redundant prefix dist_
Removed commented out lines
2005-12-17 Richard Bos <richard@radoeka.nl>
* dist_conf/common: added @ftpserver_pidfile@
2005-12-17 Richard Bos <richard@radoeka.nl> and Marcus Hwe <suse-tux@gmx.de>
* configure.ac: added --enable/--disable-openpkg configure options,
by default openpkg is enabled. When disabled, the files kolab,
namespace/kolab and rc.kolabd are not distributed as they are
openpkg specific.
* Makefile.am: added support for --enable/--disable-openpkg option
2005-12-17 Richard Bos <richard@radoeka.nl>
* dist_conf/common: replaced resmgr_filter with resmgr_filterdir and
freebusy_cachefile with freebusy_cachedir
* dist_conf/kolab: reflect the changes made in dist_conf/common
* dist_conf/suse: added
2005-12-14 Richard Bos <richard@radoeka.nl>
* NEWS: updated with the latest news from: release-notes.txt
* Makefile.am: removed EXTRA_DIST += INSTALL as the INSTALL
file is distributed by default.
Changed kolabdocdir to $(pkgdocdir)/@PACKAGE@ as that makes it the
same for all modules.
2005-12-13 Richard Bos <richard@radoeka.nl>
* adduser.in, deluser.in, listusers.in, newconfig.in,
services.in, showlog.in, showuser.in, start.in and stop.in:
Added PATH variable, removed the full path from used commands as
they are now defined by the PATH variable
Changed --showhelp to --help
Changed 'cat .. | grep .. | sed ..' into just sed -n 's/../../p'
2005-12-12 Richard Bos <richard@radoeka.nl>
* showuser.in: moved to new prefix stuff
2005-12-11 Richard Bos <richard@radoeka.nl>
* Makefile.am: fixed a typo: templtes should be templates
- kolabdocdir was not using the dist_conf file. It is now, and the
documentation directory can be defined with: pkgdocdir
- kolabrcdir was not using the dist_conf file. It is now, and the
rc directory can be defined with: kolab_rcdir
- Added ChangeLog, NEWS, COPYING and AUTHORS to the document files
to be distributed.
- INSTALL will be included in the tarbal
- Changed the document path to $(pkgdocdir)/kolabd (that is
../share/kolab/doc, to .../share/doc/kolabd. To prevent classes
with files named the same (e.g. ChangeLog) from other modules.
* dist-conf/kolab: added pkgdocdir to reflect the change in Makefile.am
- Added perllib
* kolab_bootstrap.in: use the '[x]' trick to prevent grep to show
in the process list...
* kolabquotawarn.in: removed unnecessary prefix assignment
* doc/README.amavisd.in: replace @l_prefix@/var by the autotools prefix
variable @localstatedir@
* doc/README.webgui.in: replace @l_prefix@/etc by the autotools prefix
variable @sysconfdir@
* namespace/libexec/showlog.in: removed commented out prefix
assignment. It is really not needed anymore
* kolab_bootstrap.in: removed redundant kolab_prefix assigment
replaced $kolab_prefix/bin by @bindir@
* rc.kolabd.in: @prefix@/lib/openpkg/bash replaced by @BASH@
* NEWS: added
* AUTHORS: added
* bootstrap: removed touching of the files: NEWS, ChangeLog and
AUTHORS, as they are now in CVS
2005-12-09 Bernhard Herzog <bh@intevation.de>
* templates/slapd.conf.template.in (require): For some reason, the
new OpenLDAP version from OpenPKG 2.5 doesn't accept the value
"none" for "require". according to the manpage it's the default
anyway, so we comment it out.
(suffix): With the new OpenLDAP version, suffix has to be defined
before checkpoint, so rearrange it a bit.
* templates/amavisd.conf.template.in ($myhostname): The new
amavisd version from OpenPKG 2.5 actually checks whether the value
is a FQDN. This is not the case for the default value taken from
uname on all systems, so explictly set it.
2005-12-04 Marcus Huwe <suse-tux@gmx.de>
* Makefile.am: changed kolab_upgrade.in to kolab_upgrade in
dist_kolab_SCRIPTS
2005-11-27 Richard Bos <richard@radoeka.nl>
* dist_conf/common: added imap_confperm, kolab_gid and kolab_statedir
needed by a future patch to perl-kolab
Removed webserver_phpdir as it has been replaced by phplibdir2
* dist_conf/kolab: removed kolabd_usr, it is not used anywhere
Removed webserver_phpdir as it has been replaced by phplibdir2
* templates/httpd.conf.template.in changed webserver_phpdir in
phplibdir2
* templates/php.ini.template.in changed webserver_phpdir in
phplibdir2
* templates/session_vars.php.template.in changed webserver_phpdir
in phplibdir2
* Makefile.am: added kolab_upgrade
2005-11-27 Marcus Hwe <suse-tux@gmx.de>
* dist_conf/common: altered bash_exec, perl_exec to respectively:
BASH and PERL.
Added: PHP, freebusy_cachefile and resmgr_filter in preparation for
the autoconfiscation patch to the kolab-resource-handlers module
* dist_conf/kolab: reflected changes made in dist_conf/common
* kolab.in: reflected changes made in dist_conf/common
* kolab_bootstrap.in: reflected changes made in dist_conf/common
* kolab_ca.sh.in: reflected changes made in dist_conf/common
* kolab_smtpdpolicy.in: reflected changes made in dist_conf/common
* kolab_upgrade.in: reflected changes made in dist_conf/common
* kolabcheckperm.in: reflected changes made in dist_conf/common
* kolabconf.in: reflected changes made in dist_conf/common
* kolabd.in: reflected changes made in dist_conf/common
* kolabpasswd.in: reflected changes made in dist_conf/common
* kolabquotawarn.in: reflected changes made in dist_conf/common
* namespace/kolab.in: reflected changes made in dist_conf/common
2005-11-22 Richard Bos <richard@radoeka.nl>
* dist_conf/common: Added phplibdir2 to the sed command
* dist_conf/kolab: use the variable kolabstatedir in the
assignments of kolab_logdir, kolab_pidfile and kolab_mailboxuiddb
Added phplibdir2 definition
Removed the variable definition of webadmindir as it is not used
anyhwere and the correct variable for it is kolab_statedir.
2005-11-12 Richard Bos <richard@radoeka.nl>
* Removed --enable-ldapconfdir and --enable-amavisdconfdir
as these are defined in a dist_conf distribution file
* Cleaned up dist_conf/common: put things in alphabetic order =>
removed duplicated lines and combined variables that are used
for the same purpose:
amavisd_confdir for amavisdconfdir and
ldapserver_confdir for ldapconfdir
* renamed postfix_logfile to emailserver_logfile to make it
consistent with the rest of the variables
* Added ldapserver_statedir and used this variable in the definition of:
ldapserver_dir, ldapserver_replogfile, ldapserver_argsfile
ldapserver_logfile and ldapserver_rundir
* Altered @ldapserver_confdir@ to @ldapserver_statedir@, in
kolab_bootstrap.in solving issue979
* Reflected the changes above in other files
* Make 'make distcheck' work by adding $srcdir to the distribution
line in configure.ac
2004-07-12 Martin Konold <martin.konold@erfrakon.de>
* Added multiple sanity checks (running services etc.)
2004-03-18 Steffen Hansen <steffen@klaralvdalens-datakonsult.se>
* Added template files for amavids and clamav
2004-02-16 Stephan Buys <s.buys@codefusion.co.za>
* OpenPKG 2.0 Prep
* Fix saslauthd login problems
* Fix imapd virtual domain settings
* Fix deprecated postfix settings
|