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 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
|
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.10.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>ingo</name>
<channel>pear.horde.org</channel>
<summary>An email filter rules manager</summary>
<description>Ingo is an email-filter management application. It is fully internationalized, integrated with Horde and the IMP Webmail client, and supports both server-side (Sieve, Procmail, Maildrop) and client-side (IMAP) message filtering.</description>
<lead>
<name>Jan Schneider</name>
<user>jan</user>
<email>jan@horde.org</email>
<active>yes</active>
</lead>
<lead>
<name>Michael Slusarz</name>
<user>slusarz</user>
<email>slusarz@horde.org</email>
<active>yes</active>
</lead>
<lead>
<name>Chuck Hagenbuch</name>
<user>chuck</user>
<email>chuck@horde.org</email>
<active>no</active>
</lead>
<date>2017-09-19</date>
<time>14:40:01</time>
<version>
<release>3.2.16</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Officially support PHP 7.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
<file baseinstalldir="/" md5sum="0cab0a347c1f0567cc21607e9fb75fb5" name="bin/ingo-admin-upgrade" role="script">
<tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
</file>
<file baseinstalldir="/" md5sum="8299e8f5e813affb6e52a101c8f58cf9" name="bin/ingo-convert-prefs-to-sql" role="script">
<tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
</file>
<file baseinstalldir="/" md5sum="03742e71895fc5aaedd8aba7088eea0f" name="bin/ingo-convert-sql-shares-to-sqlng" role="script">
<tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
</file>
<file baseinstalldir="/" md5sum="ab6bca245c84afb82779c3850d1aab2c" name="bin/ingo-postfix-policyd" role="script">
<tasks:replace from="/usr/bin/env php" to="php_bin" type="pear-config" />
</file>
<file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="config/.htaccess" role="horde" />
<file baseinstalldir="/" md5sum="a3111a8dca6b20d0a57b75ad95ef5fe3" name="config/backends.php" role="horde" />
<file baseinstalldir="/" md5sum="89573ecf4d767a57e64b3421a95bb144" name="config/conf.xml" role="horde" />
<file baseinstalldir="/" md5sum="e84ead46a3a387e21f13bac7f679db94" name="config/fields.php" role="horde" />
<file baseinstalldir="/" md5sum="cdb7268b25a3992fb897e3528241f75c" name="config/hooks.php.dist" role="horde" />
<file baseinstalldir="/" md5sum="c45f630df0d7e37adde6bab1f1846c50" name="config/prefs.php" role="horde" />
<file baseinstalldir="/" md5sum="da961a309903c792a1ad99dd83cc5e27" name="docs/CHANGES" role="doc" />
<file baseinstalldir="/" md5sum="7ef54585eb73bdd90b370d73ce2cf119" name="docs/CREDITS" role="doc" />
<file baseinstalldir="/" md5sum="9851ec02b4e366c9547b062efadf8513" name="docs/INSTALL" role="doc" />
<file baseinstalldir="/" md5sum="b96d1837498a18acfca405b38560d9b6" name="docs/RELEASE_NOTES" role="doc" />
<file baseinstalldir="/" md5sum="9e1eb19ece554fecc18ed1a7fbebca46" name="docs/TODO" role="doc" />
<file baseinstalldir="/" md5sum="731d42cecea66c1230b3df5d28e7a860" name="docs/UPGRADING" role="doc" />
<file baseinstalldir="/" md5sum="ff44f894fd1936cbd0cc597093239699" name="js/blacklist.js" role="horde" />
<file baseinstalldir="/" md5sum="a83d6c4c49c47cab3907e05adaf557e5" name="js/filters.js" role="horde" />
<file baseinstalldir="/" md5sum="821b29da89b8ca978572140016ccb3a0" name="js/new_folder.js" role="horde" />
<file baseinstalldir="/" md5sum="7fc29a2942fe42650d1d76b56b71da2a" name="js/rule.js" role="horde" />
<file baseinstalldir="/" md5sum="0dc8985c5bd31beead9facae1adcefea" name="js/smartmobile.js" role="horde" />
<file baseinstalldir="/" md5sum="10814c3704f6552f6f28dc86908a05fd" name="js/whitelist.js" role="horde" />
<file baseinstalldir="/" md5sum="5228e1c7f363a9ec4fd89896271b9cef" name="lib/Ajax/Application/Filters.php" role="horde" />
<file baseinstalldir="/" md5sum="69d85ef978b804d1e497a0c6f8b2e4db" name="lib/Ajax/Application/Smartmobile.php" role="horde" />
<file baseinstalldir="/" md5sum="cf079acf5d0b65ac31a84680829bf48e" name="lib/Ajax/Application.php" role="horde" />
<file baseinstalldir="/" md5sum="e09f63fa95f16fb807b63bec589d8571" name="lib/Basic/Base.php" role="horde" />
<file baseinstalldir="/" md5sum="152e1a414ac4325bd285b92c6391f794" name="lib/Basic/Blacklist.php" role="horde" />
<file baseinstalldir="/" md5sum="3b13efe035176ee0bed505789087f1e2" name="lib/Basic/Filters.php" role="horde" />
<file baseinstalldir="/" md5sum="a364713142e8f2bcb845fca6d9eb38af" name="lib/Basic/Forward.php" role="horde" />
<file baseinstalldir="/" md5sum="cee97a4367c4f525448120bce222828b" name="lib/Basic/Rule.php" role="horde" />
<file baseinstalldir="/" md5sum="c6fc17856f9a88ecac9b80da6d0aebab" name="lib/Basic/Script.php" role="horde" />
<file baseinstalldir="/" md5sum="493c131fb03d856a895eccbf22645c6d" name="lib/Basic/Spam.php" role="horde" />
<file baseinstalldir="/" md5sum="a27f021482437fdadc8d044bc2131c2e" name="lib/Basic/Vacation.php" role="horde" />
<file baseinstalldir="/" md5sum="4c5a02b8c3b85059bd47c98e1d88ad86" name="lib/Basic/Whitelist.php" role="horde" />
<file baseinstalldir="/" md5sum="f42713c1dbabef3eb6bfcc10f2d0c597" name="lib/Block/Overview.php" role="horde" />
<file baseinstalldir="/" md5sum="43d6a5877dcab3e3150d572dd8e4977c" name="lib/Exception/Pear.php" role="horde" />
<file baseinstalldir="/" md5sum="01f4b6a2f64495c5725136c51ee287c3" name="lib/Factory/Script.php" role="horde" />
<file baseinstalldir="/" md5sum="5fadbfbfaa0b3007eaa0d57f775cb8c4" name="lib/Factory/Shares.php" role="horde" />
<file baseinstalldir="/" md5sum="b69775cff0e07bb7ec8b056dd201b7ec" name="lib/Factory/Storage.php" role="horde" />
<file baseinstalldir="/" md5sum="2219615cb4bb560383088bcd63d976ad" name="lib/Factory/Transport.php" role="horde" />
<file baseinstalldir="/" md5sum="c792a6babcae8d9b4925547d16567a91" name="lib/Form/Type/Longemail.php" role="horde" />
<file baseinstalldir="/" md5sum="b4bdf8ac0ec12f369da0928ab0cf6055" name="lib/Form/Base.php" role="horde" />
<file baseinstalldir="/" md5sum="8a68c5e068c42dde99c4853daab377df" name="lib/Form/Forward.php" role="horde" />
<file baseinstalldir="/" md5sum="07f5a916832e9d9bd56f5c618fba6ffd" name="lib/Form/Spam.php" role="horde" />
<file baseinstalldir="/" md5sum="e33dfec3499da4ded0a18081f1bd5ee7" name="lib/Form/Vacation.php" role="horde" />
<file baseinstalldir="/" md5sum="d2f6e6bb18b88f13a1df2b95dc0e6242" name="lib/LoginTasks/SystemTask/Upgrade.php" role="horde" />
<file baseinstalldir="/" md5sum="34b16e6c817feb038ebf9c1cac3c7876" name="lib/Script/Imap/Api.php" role="horde" />
<file baseinstalldir="/" md5sum="da50c684d1907386cc826a69d4c86ce8" name="lib/Script/Imap/Live.php" role="horde" />
<file baseinstalldir="/" md5sum="0f66ecd8a46817238edf834dee918534" name="lib/Script/Imap/Mock.php" role="horde" />
<file baseinstalldir="/" md5sum="6c3ab63bedf3cf17d33fc2a65505304a" name="lib/Script/Ispconfig/Vacation.php" role="horde" />
<file baseinstalldir="/" md5sum="651989d12389d7d195e91f13298f91a6" name="lib/Script/Maildrop/Comment.php" role="horde" />
<file baseinstalldir="/" md5sum="979e18f23a996ba7e4eb6c2795c6e426" name="lib/Script/Maildrop/Recipe.php" role="horde" />
<file baseinstalldir="/" md5sum="9efd7aff978ad4724f1f596dc81634a4" name="lib/Script/Maildrop/Variable.php" role="horde" />
<file baseinstalldir="/" md5sum="e57bcb210c3da37fcfe487f00462707b" name="lib/Script/Procmail/Comment.php" role="horde" />
<file baseinstalldir="/" md5sum="521b47c9dc362908689026e9757d18d5" name="lib/Script/Procmail/Default.php" role="horde" />
<file baseinstalldir="/" md5sum="88bfc59ed4c483ed27a009a083c60ced" name="lib/Script/Procmail/Recipe.php" role="horde" />
<file baseinstalldir="/" md5sum="5b5fa0566a835b36707e775829947de1" name="lib/Script/Procmail/Variable.php" role="horde" />
<file baseinstalldir="/" md5sum="f301b046ba7017f662f4d50dd9c474b5" name="lib/Script/Sieve/Action/Addflag.php" role="horde" />
<file baseinstalldir="/" md5sum="3eaa2a43193e39f6b31b2129cd83a729" name="lib/Script/Sieve/Action/Discard.php" role="horde" />
<file baseinstalldir="/" md5sum="8153a5317135708a0110723b3ee18a63" name="lib/Script/Sieve/Action/Fileinto.php" role="horde" />
<file baseinstalldir="/" md5sum="e0ca3971bb96fd6ebf7f5e46f7170bfc" name="lib/Script/Sieve/Action/Flag.php" role="horde" />
<file baseinstalldir="/" md5sum="2ac525f9857239d374c3b7c3e58da93c" name="lib/Script/Sieve/Action/Keep.php" role="horde" />
<file baseinstalldir="/" md5sum="6624591ba854bd42a70bb3990a857b07" name="lib/Script/Sieve/Action/Notify.php" role="horde" />
<file baseinstalldir="/" md5sum="b7a33ae132bd795cb0cbfe7123de9e92" name="lib/Script/Sieve/Action/Redirect.php" role="horde" />
<file baseinstalldir="/" md5sum="c28fc5f388fb90786e6ff5443175081e" name="lib/Script/Sieve/Action/Reject.php" role="horde" />
<file baseinstalldir="/" md5sum="805e71c6eda0c59a7978401e32a7d6c5" name="lib/Script/Sieve/Action/Removeflag.php" role="horde" />
<file baseinstalldir="/" md5sum="0db4b1aafed377124f6621fd70cc3ca4" name="lib/Script/Sieve/Action/Stop.php" role="horde" />
<file baseinstalldir="/" md5sum="2d7e4c70df3864a5ae80a79a2b186e9e" name="lib/Script/Sieve/Action/Vacation.php" role="horde" />
<file baseinstalldir="/" md5sum="5fc24d73f1602730549ac4f0672de9b3" name="lib/Script/Sieve/Test/Address.php" role="horde" />
<file baseinstalldir="/" md5sum="cfd6cc9ed57a62fc31f6f7248f0fe159" name="lib/Script/Sieve/Test/Allof.php" role="horde" />
<file baseinstalldir="/" md5sum="f665f2de9dbf62e7af28320eb3fc8761" name="lib/Script/Sieve/Test/Anyof.php" role="horde" />
<file baseinstalldir="/" md5sum="1d2128b1e1dccbf36ec99b6003e707ec" name="lib/Script/Sieve/Test/Body.php" role="horde" />
<file baseinstalldir="/" md5sum="b982374e87c8294297b296f7bce1cca0" name="lib/Script/Sieve/Test/Exists.php" role="horde" />
<file baseinstalldir="/" md5sum="5fba4b8a37e54d1da86a34bae0d166f4" name="lib/Script/Sieve/Test/False.php" role="horde" />
<file baseinstalldir="/" md5sum="d08d63eee640d061cd5e1134cba530af" name="lib/Script/Sieve/Test/Header.php" role="horde" />
<file baseinstalldir="/" md5sum="6e6f235b70de721db6eef0bddd53a830" name="lib/Script/Sieve/Test/Not.php" role="horde" />
<file baseinstalldir="/" md5sum="4dee96e4a5642e0d9fc5913d5c05c9fa" name="lib/Script/Sieve/Test/Relational.php" role="horde" />
<file baseinstalldir="/" md5sum="c3e7dc6c64a52b035c2a911ce172be63" name="lib/Script/Sieve/Test/Size.php" role="horde" />
<file baseinstalldir="/" md5sum="e6a2af86a402ca1acecba09f7e37163b" name="lib/Script/Sieve/Test/True.php" role="horde" />
<file baseinstalldir="/" md5sum="4249f87dd45d634636dbafcb312d5738" name="lib/Script/Sieve/Action.php" role="horde" />
<file baseinstalldir="/" md5sum="b2bac9dffe7d628e13228c52e3fe5e8f" name="lib/Script/Sieve/Comment.php" role="horde" />
<file baseinstalldir="/" md5sum="528ed1222559bc135a664e7f260ecffe" name="lib/Script/Sieve/Else.php" role="horde" />
<file baseinstalldir="/" md5sum="3f5485266719a15384509765fca2c44f" name="lib/Script/Sieve/Elsif.php" role="horde" />
<file baseinstalldir="/" md5sum="f36df903fd93b92f6ac4aa332c9a90b8" name="lib/Script/Sieve/If.php" role="horde" />
<file baseinstalldir="/" md5sum="a7b880fee2e39dfa8b0a1562ebbd3bb7" name="lib/Script/Sieve/Require.php" role="horde" />
<file baseinstalldir="/" md5sum="c0bbd58778b290772a87a35085d61eeb" name="lib/Script/Sieve/Test.php" role="horde" />
<file baseinstalldir="/" md5sum="b33c648da0cc6b72a0cf86e1fb05b4c9" name="lib/Script/Base.php" role="horde" />
<file baseinstalldir="/" md5sum="5d08e3cda949e069ec15ca0fb4e3784a" name="lib/Script/Customsql.php" role="horde" />
<file baseinstalldir="/" md5sum="c94b3d9e1d0ac1b274138a9664595626" name="lib/Script/Imap.php" role="horde" />
<file baseinstalldir="/" md5sum="781fc66231d22dd7ff0bdf675293385f" name="lib/Script/Ispconfig.php" role="horde" />
<file baseinstalldir="/" md5sum="072d05682f9237c87af7c5b08d0740e9" name="lib/Script/Item.php" role="horde" />
<file baseinstalldir="/" md5sum="98160d54fa8c7d83886c00fe5388461c" name="lib/Script/Maildrop.php" role="horde" />
<file baseinstalldir="/" md5sum="6784c0bc58c870948f2e1bacdf471246" name="lib/Script/Procmail.php" role="horde" />
<file baseinstalldir="/" md5sum="c855d77cdd10b29b9f5879abc3e46e1c" name="lib/Script/Sieve.php" role="horde" />
<file baseinstalldir="/" md5sum="61696bf938dfd9631df787d34759c5b2" name="lib/Script/String.php" role="horde" />
<file baseinstalldir="/" md5sum="fb4b75eaee9a62e56f23271190c69c6d" name="lib/Script/Util.php" role="horde" />
<file baseinstalldir="/" md5sum="02b7580643bc2eaa8cb47dfe0473df5d" name="lib/Storage/Filters/Sql.php" role="horde" />
<file baseinstalldir="/" md5sum="7664e7c51c5dec0d560538148617b458" name="lib/Storage/Blacklist.php" role="horde" />
<file baseinstalldir="/" md5sum="40b5f2aeeaba7762fe5a32ebf051be68" name="lib/Storage/Filters.php" role="horde" />
<file baseinstalldir="/" md5sum="972eb2c8ffe3c2eb00456f9dc15becc1" name="lib/Storage/Forward.php" role="horde" />
<file baseinstalldir="/" md5sum="c576aacb59174143e69a19daf423ba4a" name="lib/Storage/Mock.php" role="horde" />
<file baseinstalldir="/" md5sum="89dfddd0d702564222d112968c0febdc" name="lib/Storage/Prefs.php" role="horde" />
<file baseinstalldir="/" md5sum="36d8b98e8ea81af4ca4812702b455978" name="lib/Storage/Rule.php" role="horde" />
<file baseinstalldir="/" md5sum="ed9121759aa3f12b41f337d686723d95" name="lib/Storage/Spam.php" role="horde" />
<file baseinstalldir="/" md5sum="9ee2a5e060ef0c3fb25933047db8b4eb" name="lib/Storage/Sql.php" role="horde" />
<file baseinstalldir="/" md5sum="cf887cec8d2fbaed8ca6ccaea4cb62a4" name="lib/Storage/Vacation.php" role="horde" />
<file baseinstalldir="/" md5sum="f22e08f7ce143c1c261d8bae199890ee" name="lib/Storage/VacationTest.php" role="horde" />
<file baseinstalldir="/" md5sum="92988ac93c526b504ac7c471792c583e" name="lib/Storage/Whitelist.php" role="horde" />
<file baseinstalldir="/" md5sum="f692c70a4f038dfdd5b6374b1ec87a89" name="lib/Transport/Base.php" role="horde" />
<file baseinstalldir="/" md5sum="ea50d5ded6f5101ed2d8f6604d796859" name="lib/Transport/Ispconfig.php" role="horde" />
<file baseinstalldir="/" md5sum="a641c037deb5cbaca8df82aef93f9ca0" name="lib/Transport/Ldap.php" role="horde" />
<file baseinstalldir="/" md5sum="ab1e41e7aee35905da87701ce4a9ef54" name="lib/Transport/Null.php" role="horde" />
<file baseinstalldir="/" md5sum="9836845ef25bcd57caa43d1d703bc820" name="lib/Transport/Sivtest.php" role="horde" />
<file baseinstalldir="/" md5sum="d7d2c7ce39c1712ca3a701d0cb19576a" name="lib/Transport/Sql.php" role="horde" />
<file baseinstalldir="/" md5sum="211e8a552fbac8a7fc343a523118c82f" name="lib/Transport/Timsieved.php" role="horde" />
<file baseinstalldir="/" md5sum="2b7c55891d0d38edf189574194e78d3e" name="lib/Transport/Vfs.php" role="horde" />
<file baseinstalldir="/" md5sum="ee995acd64b8f5a561e9d64e04325027" name="lib/Ui/VarRenderer/Ingo.php" role="horde" />
<file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="lib/.htaccess" role="horde" />
<file baseinstalldir="/" md5sum="162f821208ef8baee7273219cdd7fc6b" name="lib/Api.php" role="horde" />
<file baseinstalldir="/" md5sum="81428c9e9a6fb57959d1debc7dc38d8e" name="lib/Application.php" role="horde" />
<file baseinstalldir="/" md5sum="395919e7bc5f8698ecc9e34cff34530e" name="lib/Exception.php" role="horde" />
<file baseinstalldir="/" md5sum="8c8e362621d5895defcea87fce6faef4" name="lib/Flist.php" role="horde" />
<file baseinstalldir="/" md5sum="7ec42f80819badca821b87baa8aab865" name="lib/Ingo.php" role="horde" />
<file baseinstalldir="/" md5sum="8fbed4dbb8ed30179c5b038ebe924661" name="lib/Perms.php" role="horde" />
<file baseinstalldir="/" md5sum="ac22ceba39d19b4d45b1b4bbaa6139f9" name="lib/Session.php" role="horde" />
<file baseinstalldir="/" md5sum="6ca15f7590867b86d481f4588fb66549" name="lib/Smartmobile.php" role="horde" />
<file baseinstalldir="/" md5sum="05fe7a86b7b0ff1e7d0c809cea0656b1" name="lib/Storage.php" role="horde" />
<file baseinstalldir="/" md5sum="1167bac87a8b8c5c52d53e0e42c91277" name="lib/Test.php" role="horde" />
<file baseinstalldir="/" md5sum="d72f4408d5852dc4e315e55b0ff54933" name="locale/ca/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="d32d3a2f8b4cfb671519a5c49e0228ca" name="locale/ca/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="c515095ca681f6d3d4cc1748265d3a57" name="locale/ca/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="6c810c7d295c3745eeef666edf90a24e" name="locale/cs/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="7a5127fa2a0564d16de1d1e68b58317f" name="locale/cs/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="f8a774b52ee8dc0d5657fc5d124d86a7" name="locale/da/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="043bd6470d161b3dffe992f3f99349f9" name="locale/da/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="d8bb478e23040095301755f0c4a6bc94" name="locale/de/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="a0b2d864db852ac502a444aa427cb0f9" name="locale/de/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="61b8d016a51a61f9a8defe36ae0039e1" name="locale/de/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="48cae61becad1071077bf94b2a4b0fac" name="locale/el/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="85df4a45bfa9c2f8248f6074817cec71" name="locale/el/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="8ee8b3dd14d486a9c3c587610755cf72" name="locale/en/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="d46867382c41154a114dce666ed7bd05" name="locale/es/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="8dfbffb3e8bb612f32e2b6c266176459" name="locale/es/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="95879fd4f0ce0c5aeb74a7f9a38ac984" name="locale/es/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="f8e2626b8fe5ba819b6b55c0da3c563b" name="locale/et/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="bdf8336506504da2994731ed1cd4e180" name="locale/et/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="7f6e50174dd78503d75b6abc9e3b8313" name="locale/eu/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="d0d0b3240ecded2aec68e1cb9b1973bc" name="locale/eu/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="61f61e908f0ed5905ddac6b2a3783076" name="locale/eu/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="afa7c46e8532863085cf84f277ff01ec" name="locale/fi/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="de86a1f5b855ad74efb24ed41e3cfe90" name="locale/fi/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="b7211cecec54a3ff24f93f3856817251" name="locale/fi/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="92c1e3fd3401252b6d2e445955655620" name="locale/fr/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="d6215c8c3b3fd9b57c29873a22c20e89" name="locale/fr/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="8102373eec26f8fc0949013bcb340185" name="locale/fr/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="4abe04a32e2c15147b36ce5c5a273a6e" name="locale/gl/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="480bf1185c1e681acc8071f7bc052e02" name="locale/gl/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="d3d4ed9e940db1e875618e3dffe6fcc3" name="locale/hr/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="c1ed542bd29e59204987f2e0e4716a7a" name="locale/hr/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="1296b8a8feb607cd0fd4e8e5d56ac8e1" name="locale/hr/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="4a752ce1f75eaaae53afafedd6969aed" name="locale/hu/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="9ea6bc2a4d992138fcc49a7ba107e16d" name="locale/hu/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="07833f7dd4235b2774e809f002ac6af7" name="locale/it/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="87610b72eda1ddbed22004c26966ed86" name="locale/it/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="f533c6e13747128b83ed25c3e1308103" name="locale/ja/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="adbff4d8773b65dcd8db1f713712da97" name="locale/ja/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="148cd243217f21d101734b5849c5fea6" name="locale/ko/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="c2cb95c77e313cd38f44e02934efcece" name="locale/ko/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="13bd5ffccf03532fdc6886c4f5b71a7b" name="locale/lt/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="662be3dd96678bb9a260508a87fa4586" name="locale/lt/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="e7a825648cc23e1f99f491f4eb87d19b" name="locale/lv/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="bd91b2cd693c63d877032c68790b0974" name="locale/lv/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="8c5ccd8ecd644181e5d7769b62b707e8" name="locale/lv/help.xml" role="horde" />
<file baseinstalldir="/" md5sum="4441b52be692a291afb9b87e0bb41964" name="locale/nb/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="a1c0f4df61ea7152db836e3f4918b75a" name="locale/nb/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="9cbdd30e50822158ca8b39df367203fe" name="locale/nl/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="8a835d05f900da7fa92771c055b83f28" name="locale/nl/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="f4b7f0160c4fb3c6d5ddbfe82f55eedc" name="locale/pl/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="fe78301ef70c5e63f6d8861484c11698" name="locale/pl/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="c73ef1762cc6a8300efd2e1e41acc045" name="locale/pt/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="2834b8394384b910ad6101190612daf3" name="locale/pt/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="27052808d0cae0419f0db0bdea81f750" name="locale/pt_BR/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="1e3d6bb7d6c620079c10a1f253911e0d" name="locale/pt_BR/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="259b818c0848b8167ef401c81dd0393b" name="locale/ro/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="0681a6cf804e36744121611c4badcd62" name="locale/ro/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="016d01145d14ab5cedb2b994ae89a65a" name="locale/ru/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="ade89bd3376e9c1d508a8f6d3907c498" name="locale/ru/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="17a77a38d7c4704af6a6afe852dcbbdc" name="locale/sk/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="5c43f56b014f49dff1adf3051b894029" name="locale/sk/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="b1fbda78209b7e8379f487e729df722b" name="locale/sl/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="0501ef64b2ba6f2a7ab7cc599a80a200" name="locale/sl/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="62a45a8fea4e6ccbed76df62a117b169" name="locale/sv/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="cea55d13a1324fd7772e28d9a95dc610" name="locale/sv/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="1e27f2e6b5dcf95d27e78d992d51496a" name="locale/tr/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="d2874f06600080b8e62a930cc456b178" name="locale/tr/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="ebcaf23f179f4bcb0dc2b7d1fffaefa3" name="locale/uk/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="8a4ce1dab8e00a73aa9392e9e04a11f1" name="locale/uk/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="c4797647dc5cbc783b1863b2052606f7" name="locale/zh_CN/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="c7c22035db3c10811c250af645b8e560" name="locale/zh_CN/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="99cc614097961db47bb9be62528d3dd3" name="locale/zh_TW/LC_MESSAGES/ingo.mo" role="horde" />
<file baseinstalldir="/" md5sum="50cbb8daddf9c67fe40ab5ad6f813363" name="locale/zh_TW/LC_MESSAGES/ingo.po" role="horde" />
<file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="locale/.htaccess" role="horde" />
<file baseinstalldir="/" md5sum="4179e8c7c5d773eae2c0bcfdc7e4ad8f" name="locale/ingo.pot" role="horde" />
<file baseinstalldir="/" md5sum="6678e20ca7066b0cbc37a4f276d8fa1d" name="migration/1_ingo_base_tables.php" role="horde" />
<file baseinstalldir="/" md5sum="fec02fb5140a908d7373dbabdf4ab7d9" name="migration/2_ingo_upgrade_autoincrement.php" role="horde" />
<file baseinstalldir="/" md5sum="e41f60732567f67a20c500632431d6f6" name="migration/3_ingo_upgrade_sqlng.php" role="horde" />
<file baseinstalldir="/" md5sum="8563a0ac99799c6df131c086a19c0f16" name="migration/4_ingo_upgrade_sqlhierarchical.php" role="horde" />
<file baseinstalldir="/" md5sum="6cb7d21f5d27f627debc709f4c35b1cb" name="migration/5_ingo_upgrade_sqlnghierarchical.php" role="horde" />
<file baseinstalldir="/" md5sum="de303504e2146a9aeaa34938ae098456" name="migration/6_ingo_upgrade_parents.php" role="horde" />
<file baseinstalldir="/" md5sum="7e29533bce565da45e774440d5044a82" name="migration/7_ingo_fix_rule_order.php" role="horde" />
<file baseinstalldir="/" md5sum="6375cccf208ce563af52a2331cf19b5f" name="templates/basic/blacklist/blacklist.html.php" role="horde" />
<file baseinstalldir="/" md5sum="1bb1b1613627f41483621eb2efde985d" name="templates/basic/filters/filters.html.php" role="horde" />
<file baseinstalldir="/" md5sum="2d29de90d603ca85381f257534a530d9" name="templates/basic/menu/menu.html.php" role="horde" />
<file baseinstalldir="/" md5sum="c35b4a1555dbe082dbc04fc0518a2469" name="templates/basic/rule/rule.html.php" role="horde" />
<file baseinstalldir="/" md5sum="0a0e45b317e2ff7b12f52fc96d3b1fa5" name="templates/basic/script/script.html.php" role="horde" />
<file baseinstalldir="/" md5sum="ad5fdafa7830bf5ec97eadbcf31420e3" name="templates/basic/script/_script.html.php" role="horde" />
<file baseinstalldir="/" md5sum="1e0a49f3a758b3084dd034bb8449bd67" name="templates/basic/whitelist/whitelist.html.php" role="horde" />
<file baseinstalldir="/" md5sum="0f62db664d1c6234ecbb8122a4633b8a" name="templates/flist/input.html.php" role="horde" />
<file baseinstalldir="/" md5sum="a5cf7dc4b3a838d6980cd6e6e657c302" name="templates/flist/select.html.php" role="horde" />
<file baseinstalldir="/" md5sum="96748aa43db2d302496cc4cafef31692" name="templates/smartmobile/rule.html.php" role="horde" />
<file baseinstalldir="/" md5sum="206534bcf337158ad295f836e1b5fdc1" name="templates/smartmobile/rules.html.php" role="horde" />
<file baseinstalldir="/" md5sum="f5a271e285ee67261f914f7982fdfa5a" name="templates/.htaccess" role="horde" />
<file baseinstalldir="/" md5sum="2726d9ec587268a474d1e5fba0f2d4ce" name="test/Ingo/fixtures/from_spammer" role="test" />
<file baseinstalldir="/" md5sum="1e1c514877a41a6dcbfe1fcad7081b7e" name="test/Ingo/fixtures/not_from_spammer" role="test" />
<file baseinstalldir="/" md5sum="947844a1977fa59d56eee47726785ad8" name="test/Ingo/Unit/MaildropTest.php" role="test" />
<file baseinstalldir="/" md5sum="5d88356fde9c777433b4785bb43ce30b" name="test/Ingo/Unit/ProcmailTest.php" role="test" />
<file baseinstalldir="/" md5sum="cc08e41d17733e3d1aff74a62f955be5" name="test/Ingo/Unit/ScriptTest.php" role="test" />
<file baseinstalldir="/" md5sum="d706c48631969c481e68f4fc0dba594a" name="test/Ingo/Unit/SieveTest.php" role="test" />
<file baseinstalldir="/" md5sum="a7ca0b8c9eddbbc823c90921719265b4" name="test/Ingo/Unit/TestBase.php" role="test" />
<file baseinstalldir="/" md5sum="8bc9518b9c0576806c82d9413489d099" name="test/Ingo/AllTests.php" role="test" />
<file baseinstalldir="/" md5sum="499308b4d8062d052ba6d60f45ee6884" name="test/Ingo/Autoload.php" role="test" />
<file baseinstalldir="/" md5sum="0a5018f0726d4673850fece3ad4d72c0" name="test/Ingo/bootstrap.php" role="test" />
<file baseinstalldir="/" md5sum="090ce475b8a9773a240e954334988c75" name="test/Ingo/phpunit.xml" role="test" />
<file baseinstalldir="/" md5sum="23d30680c9f0fd0ba836b7d1f7eff05e" name="themes/default/block/screen.css" role="horde" />
<file baseinstalldir="/" md5sum="2079e1df6d809e1c35ffb35f2fa7b106" name="themes/default/graphics/blacklist.png" role="horde" />
<file baseinstalldir="/" md5sum="13db71b29e0039b1cd1800f2caec1ff9" name="themes/default/graphics/copy.png" role="horde" />
<file baseinstalldir="/" md5sum="b3c6e36247e8266c8f4f2030828b2785" name="themes/default/graphics/disable.png" role="horde" />
<file baseinstalldir="/" md5sum="f192e6130c37458e858bbade8d0afa4c" name="themes/default/graphics/enable.png" role="horde" />
<file baseinstalldir="/" md5sum="169d4483cfb9bc108e2bf40217920af2" name="themes/default/graphics/favicon.ico" role="horde" />
<file baseinstalldir="/" md5sum="bcda07a36aa61415400882df4ddc5d87" name="themes/default/graphics/forward.png" role="horde" />
<file baseinstalldir="/" md5sum="b27465037bdf9cb931d6650ff84ba246" name="themes/default/graphics/ingo.png" role="horde" />
<file baseinstalldir="/" md5sum="198a1e42fd85699792fda01bd593ef79" name="themes/default/graphics/script.png" role="horde" />
<file baseinstalldir="/" md5sum="636a663d9b67b3c8038907045ebb1379" name="themes/default/graphics/spam.png" role="horde" />
<file baseinstalldir="/" md5sum="943339b47fb5ff34f5808edcbd83007d" name="themes/default/graphics/vacation.png" role="horde" />
<file baseinstalldir="/" md5sum="e4bdf32f5b334771fd70223284a4ac17" name="themes/default/graphics/whitelist.png" role="horde" />
<file baseinstalldir="/" md5sum="b601e1e78a3977128ee91a822c271218" name="themes/default/smartmobile/screen.css" role="horde" />
<file baseinstalldir="/" md5sum="90000cdd5de4f3f5e4fd7bd309ccb7f6" name="themes/default/screen.css" role="horde" />
<file baseinstalldir="/" md5sum="96acbaff6f31e5b829d1b6bf131fd51f" name="basic.php" role="horde" />
<file baseinstalldir="/" md5sum="e69ba339fe2d17521a27b58610ad4c9d" name="index.php" role="horde" />
<file baseinstalldir="/" md5sum="b42c8f2036a60403c54ab739f18b9a01" name="LICENSE" role="doc" />
<file baseinstalldir="/" md5sum="3b010bee873bddcbaa3006eca389c48d" name="README" role="doc" />
<file baseinstalldir="/" md5sum="cbe26f05cb563bbd158bb04b151a4c34" name="smartmobile.php" role="horde" />
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.3.0</min>
<max>8.0.0alpha1</max>
<exclude>8.0.0alpha1</exclude>
</php>
<pearinstaller>
<min>1.7.0</min>
</pearinstaller>
<package>
<name>horde</name>
<channel>pear.horde.org</channel>
<min>5.0.0</min>
<max>6.0.0alpha1</max>
<exclude>6.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Auth</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Autoloader</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Core</name>
<channel>pear.horde.org</channel>
<min>2.12.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Exception</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Group</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Form</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Imap_Client</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Mime</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Perms</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Share</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_Util</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Horde_View</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<extension>
<name>gettext</name>
</extension>
</required>
<optional>
<package>
<name>Horde_Vfs</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
<package>
<name>Net_Sieve</name>
<channel>pear.php.net</channel>
<min>1.3.1</min>
</package>
<package>
<name>Net_Socket</name>
<channel>pear.php.net</channel>
</package>
</optional>
</dependencies>
<usesrole>
<role>horde</role>
<package>Role</package>
<channel>pear.horde.org</channel>
</usesrole>
<phprelease>
<filelist>
<install as="ingo-admin-upgrade" name="bin/ingo-admin-upgrade" />
<install as="ingo-convert-prefs-to-sql" name="bin/ingo-convert-prefs-to-sql" />
<install as="ingo-convert-sql-shares-to-sqlng" name="bin/ingo-convert-sql-shares-to-sqlng" />
<install as="ingo-postfix-policyd" name="bin/ingo-postfix-policyd" />
<install as="ingo/config/.htaccess" name="config/.htaccess" />
<install as="ingo/config/backends.php" name="config/backends.php" />
<install as="ingo/config/conf.xml" name="config/conf.xml" />
<install as="ingo/config/fields.php" name="config/fields.php" />
<install as="ingo/config/hooks.php.dist" name="config/hooks.php.dist" />
<install as="ingo/config/prefs.php" name="config/prefs.php" />
<install as="CHANGES" name="docs/CHANGES" />
<install as="CREDITS" name="docs/CREDITS" />
<install as="INSTALL" name="docs/INSTALL" />
<install as="RELEASE_NOTES" name="docs/RELEASE_NOTES" />
<install as="TODO" name="docs/TODO" />
<install as="UPGRADING" name="docs/UPGRADING" />
<install as="ingo/js/blacklist.js" name="js/blacklist.js" />
<install as="ingo/js/filters.js" name="js/filters.js" />
<install as="ingo/js/new_folder.js" name="js/new_folder.js" />
<install as="ingo/js/rule.js" name="js/rule.js" />
<install as="ingo/js/smartmobile.js" name="js/smartmobile.js" />
<install as="ingo/js/whitelist.js" name="js/whitelist.js" />
<install as="ingo/lib/.htaccess" name="lib/.htaccess" />
<install as="ingo/lib/Api.php" name="lib/Api.php" />
<install as="ingo/lib/Application.php" name="lib/Application.php" />
<install as="ingo/lib/Exception.php" name="lib/Exception.php" />
<install as="ingo/lib/Flist.php" name="lib/Flist.php" />
<install as="ingo/lib/Ingo.php" name="lib/Ingo.php" />
<install as="ingo/lib/Perms.php" name="lib/Perms.php" />
<install as="ingo/lib/Session.php" name="lib/Session.php" />
<install as="ingo/lib/Smartmobile.php" name="lib/Smartmobile.php" />
<install as="ingo/lib/Storage.php" name="lib/Storage.php" />
<install as="ingo/lib/Test.php" name="lib/Test.php" />
<install as="ingo/lib/Ajax/Application.php" name="lib/Ajax/Application.php" />
<install as="ingo/lib/Ajax/Application/Filters.php" name="lib/Ajax/Application/Filters.php" />
<install as="ingo/lib/Ajax/Application/Smartmobile.php" name="lib/Ajax/Application/Smartmobile.php" />
<install as="ingo/lib/Basic/Base.php" name="lib/Basic/Base.php" />
<install as="ingo/lib/Basic/Blacklist.php" name="lib/Basic/Blacklist.php" />
<install as="ingo/lib/Basic/Filters.php" name="lib/Basic/Filters.php" />
<install as="ingo/lib/Basic/Forward.php" name="lib/Basic/Forward.php" />
<install as="ingo/lib/Basic/Rule.php" name="lib/Basic/Rule.php" />
<install as="ingo/lib/Basic/Script.php" name="lib/Basic/Script.php" />
<install as="ingo/lib/Basic/Spam.php" name="lib/Basic/Spam.php" />
<install as="ingo/lib/Basic/Vacation.php" name="lib/Basic/Vacation.php" />
<install as="ingo/lib/Basic/Whitelist.php" name="lib/Basic/Whitelist.php" />
<install as="ingo/lib/Block/Overview.php" name="lib/Block/Overview.php" />
<install as="ingo/lib/Exception/Pear.php" name="lib/Exception/Pear.php" />
<install as="ingo/lib/Factory/Script.php" name="lib/Factory/Script.php" />
<install as="ingo/lib/Factory/Shares.php" name="lib/Factory/Shares.php" />
<install as="ingo/lib/Factory/Storage.php" name="lib/Factory/Storage.php" />
<install as="ingo/lib/Factory/Transport.php" name="lib/Factory/Transport.php" />
<install as="ingo/lib/Form/Base.php" name="lib/Form/Base.php" />
<install as="ingo/lib/Form/Forward.php" name="lib/Form/Forward.php" />
<install as="ingo/lib/Form/Spam.php" name="lib/Form/Spam.php" />
<install as="ingo/lib/Form/Vacation.php" name="lib/Form/Vacation.php" />
<install as="ingo/lib/Form/Type/Longemail.php" name="lib/Form/Type/Longemail.php" />
<install as="ingo/lib/LoginTasks/SystemTask/Upgrade.php" name="lib/LoginTasks/SystemTask/Upgrade.php" />
<install as="ingo/lib/Script/Base.php" name="lib/Script/Base.php" />
<install as="ingo/lib/Script/Customsql.php" name="lib/Script/Customsql.php" />
<install as="ingo/lib/Script/Imap.php" name="lib/Script/Imap.php" />
<install as="ingo/lib/Script/Ispconfig.php" name="lib/Script/Ispconfig.php" />
<install as="ingo/lib/Script/Item.php" name="lib/Script/Item.php" />
<install as="ingo/lib/Script/Maildrop.php" name="lib/Script/Maildrop.php" />
<install as="ingo/lib/Script/Procmail.php" name="lib/Script/Procmail.php" />
<install as="ingo/lib/Script/Sieve.php" name="lib/Script/Sieve.php" />
<install as="ingo/lib/Script/String.php" name="lib/Script/String.php" />
<install as="ingo/lib/Script/Util.php" name="lib/Script/Util.php" />
<install as="ingo/lib/Script/Imap/Api.php" name="lib/Script/Imap/Api.php" />
<install as="ingo/lib/Script/Imap/Live.php" name="lib/Script/Imap/Live.php" />
<install as="ingo/lib/Script/Imap/Mock.php" name="lib/Script/Imap/Mock.php" />
<install as="ingo/lib/Script/Ispconfig/Vacation.php" name="lib/Script/Ispconfig/Vacation.php" />
<install as="ingo/lib/Script/Maildrop/Comment.php" name="lib/Script/Maildrop/Comment.php" />
<install as="ingo/lib/Script/Maildrop/Recipe.php" name="lib/Script/Maildrop/Recipe.php" />
<install as="ingo/lib/Script/Maildrop/Variable.php" name="lib/Script/Maildrop/Variable.php" />
<install as="ingo/lib/Script/Procmail/Comment.php" name="lib/Script/Procmail/Comment.php" />
<install as="ingo/lib/Script/Procmail/Default.php" name="lib/Script/Procmail/Default.php" />
<install as="ingo/lib/Script/Procmail/Recipe.php" name="lib/Script/Procmail/Recipe.php" />
<install as="ingo/lib/Script/Procmail/Variable.php" name="lib/Script/Procmail/Variable.php" />
<install as="ingo/lib/Script/Sieve/Action.php" name="lib/Script/Sieve/Action.php" />
<install as="ingo/lib/Script/Sieve/Comment.php" name="lib/Script/Sieve/Comment.php" />
<install as="ingo/lib/Script/Sieve/Else.php" name="lib/Script/Sieve/Else.php" />
<install as="ingo/lib/Script/Sieve/Elsif.php" name="lib/Script/Sieve/Elsif.php" />
<install as="ingo/lib/Script/Sieve/If.php" name="lib/Script/Sieve/If.php" />
<install as="ingo/lib/Script/Sieve/Require.php" name="lib/Script/Sieve/Require.php" />
<install as="ingo/lib/Script/Sieve/Test.php" name="lib/Script/Sieve/Test.php" />
<install as="ingo/lib/Script/Sieve/Action/Addflag.php" name="lib/Script/Sieve/Action/Addflag.php" />
<install as="ingo/lib/Script/Sieve/Action/Discard.php" name="lib/Script/Sieve/Action/Discard.php" />
<install as="ingo/lib/Script/Sieve/Action/Fileinto.php" name="lib/Script/Sieve/Action/Fileinto.php" />
<install as="ingo/lib/Script/Sieve/Action/Flag.php" name="lib/Script/Sieve/Action/Flag.php" />
<install as="ingo/lib/Script/Sieve/Action/Keep.php" name="lib/Script/Sieve/Action/Keep.php" />
<install as="ingo/lib/Script/Sieve/Action/Notify.php" name="lib/Script/Sieve/Action/Notify.php" />
<install as="ingo/lib/Script/Sieve/Action/Redirect.php" name="lib/Script/Sieve/Action/Redirect.php" />
<install as="ingo/lib/Script/Sieve/Action/Reject.php" name="lib/Script/Sieve/Action/Reject.php" />
<install as="ingo/lib/Script/Sieve/Action/Removeflag.php" name="lib/Script/Sieve/Action/Removeflag.php" />
<install as="ingo/lib/Script/Sieve/Action/Stop.php" name="lib/Script/Sieve/Action/Stop.php" />
<install as="ingo/lib/Script/Sieve/Action/Vacation.php" name="lib/Script/Sieve/Action/Vacation.php" />
<install as="ingo/lib/Script/Sieve/Test/Address.php" name="lib/Script/Sieve/Test/Address.php" />
<install as="ingo/lib/Script/Sieve/Test/Allof.php" name="lib/Script/Sieve/Test/Allof.php" />
<install as="ingo/lib/Script/Sieve/Test/Anyof.php" name="lib/Script/Sieve/Test/Anyof.php" />
<install as="ingo/lib/Script/Sieve/Test/Body.php" name="lib/Script/Sieve/Test/Body.php" />
<install as="ingo/lib/Script/Sieve/Test/Exists.php" name="lib/Script/Sieve/Test/Exists.php" />
<install as="ingo/lib/Script/Sieve/Test/False.php" name="lib/Script/Sieve/Test/False.php" />
<install as="ingo/lib/Script/Sieve/Test/Header.php" name="lib/Script/Sieve/Test/Header.php" />
<install as="ingo/lib/Script/Sieve/Test/Not.php" name="lib/Script/Sieve/Test/Not.php" />
<install as="ingo/lib/Script/Sieve/Test/Relational.php" name="lib/Script/Sieve/Test/Relational.php" />
<install as="ingo/lib/Script/Sieve/Test/Size.php" name="lib/Script/Sieve/Test/Size.php" />
<install as="ingo/lib/Script/Sieve/Test/True.php" name="lib/Script/Sieve/Test/True.php" />
<install as="ingo/lib/Storage/Blacklist.php" name="lib/Storage/Blacklist.php" />
<install as="ingo/lib/Storage/Filters.php" name="lib/Storage/Filters.php" />
<install as="ingo/lib/Storage/Forward.php" name="lib/Storage/Forward.php" />
<install as="ingo/lib/Storage/Mock.php" name="lib/Storage/Mock.php" />
<install as="ingo/lib/Storage/Prefs.php" name="lib/Storage/Prefs.php" />
<install as="ingo/lib/Storage/Rule.php" name="lib/Storage/Rule.php" />
<install as="ingo/lib/Storage/Spam.php" name="lib/Storage/Spam.php" />
<install as="ingo/lib/Storage/Sql.php" name="lib/Storage/Sql.php" />
<install as="ingo/lib/Storage/Vacation.php" name="lib/Storage/Vacation.php" />
<install as="ingo/lib/Storage/VacationTest.php" name="lib/Storage/VacationTest.php" />
<install as="ingo/lib/Storage/Whitelist.php" name="lib/Storage/Whitelist.php" />
<install as="ingo/lib/Storage/Filters/Sql.php" name="lib/Storage/Filters/Sql.php" />
<install as="ingo/lib/Transport/Base.php" name="lib/Transport/Base.php" />
<install as="ingo/lib/Transport/Ispconfig.php" name="lib/Transport/Ispconfig.php" />
<install as="ingo/lib/Transport/Ldap.php" name="lib/Transport/Ldap.php" />
<install as="ingo/lib/Transport/Null.php" name="lib/Transport/Null.php" />
<install as="ingo/lib/Transport/Sivtest.php" name="lib/Transport/Sivtest.php" />
<install as="ingo/lib/Transport/Sql.php" name="lib/Transport/Sql.php" />
<install as="ingo/lib/Transport/Timsieved.php" name="lib/Transport/Timsieved.php" />
<install as="ingo/lib/Transport/Vfs.php" name="lib/Transport/Vfs.php" />
<install as="ingo/lib/Ui/VarRenderer/Ingo.php" name="lib/Ui/VarRenderer/Ingo.php" />
<install as="ingo/locale/.htaccess" name="locale/.htaccess" />
<install as="ingo/locale/ingo.pot" name="locale/ingo.pot" />
<install as="ingo/locale/ca/help.xml" name="locale/ca/help.xml" />
<install as="ingo/locale/ca/LC_MESSAGES/ingo.mo" name="locale/ca/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/ca/LC_MESSAGES/ingo.po" name="locale/ca/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/cs/LC_MESSAGES/ingo.mo" name="locale/cs/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/cs/LC_MESSAGES/ingo.po" name="locale/cs/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/da/LC_MESSAGES/ingo.mo" name="locale/da/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/da/LC_MESSAGES/ingo.po" name="locale/da/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/de/help.xml" name="locale/de/help.xml" />
<install as="ingo/locale/de/LC_MESSAGES/ingo.mo" name="locale/de/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/de/LC_MESSAGES/ingo.po" name="locale/de/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/el/LC_MESSAGES/ingo.mo" name="locale/el/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/el/LC_MESSAGES/ingo.po" name="locale/el/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/en/help.xml" name="locale/en/help.xml" />
<install as="ingo/locale/es/help.xml" name="locale/es/help.xml" />
<install as="ingo/locale/es/LC_MESSAGES/ingo.mo" name="locale/es/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/es/LC_MESSAGES/ingo.po" name="locale/es/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/et/LC_MESSAGES/ingo.mo" name="locale/et/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/et/LC_MESSAGES/ingo.po" name="locale/et/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/eu/help.xml" name="locale/eu/help.xml" />
<install as="ingo/locale/eu/LC_MESSAGES/ingo.mo" name="locale/eu/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/eu/LC_MESSAGES/ingo.po" name="locale/eu/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/fi/help.xml" name="locale/fi/help.xml" />
<install as="ingo/locale/fi/LC_MESSAGES/ingo.mo" name="locale/fi/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/fi/LC_MESSAGES/ingo.po" name="locale/fi/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/fr/help.xml" name="locale/fr/help.xml" />
<install as="ingo/locale/fr/LC_MESSAGES/ingo.mo" name="locale/fr/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/fr/LC_MESSAGES/ingo.po" name="locale/fr/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/gl/LC_MESSAGES/ingo.mo" name="locale/gl/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/gl/LC_MESSAGES/ingo.po" name="locale/gl/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/hr/help.xml" name="locale/hr/help.xml" />
<install as="ingo/locale/hr/LC_MESSAGES/ingo.mo" name="locale/hr/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/hr/LC_MESSAGES/ingo.po" name="locale/hr/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/hu/LC_MESSAGES/ingo.mo" name="locale/hu/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/hu/LC_MESSAGES/ingo.po" name="locale/hu/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/it/LC_MESSAGES/ingo.mo" name="locale/it/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/it/LC_MESSAGES/ingo.po" name="locale/it/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/ja/LC_MESSAGES/ingo.mo" name="locale/ja/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/ja/LC_MESSAGES/ingo.po" name="locale/ja/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/ko/LC_MESSAGES/ingo.mo" name="locale/ko/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/ko/LC_MESSAGES/ingo.po" name="locale/ko/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/lt/LC_MESSAGES/ingo.mo" name="locale/lt/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/lt/LC_MESSAGES/ingo.po" name="locale/lt/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/lv/help.xml" name="locale/lv/help.xml" />
<install as="ingo/locale/lv/LC_MESSAGES/ingo.mo" name="locale/lv/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/lv/LC_MESSAGES/ingo.po" name="locale/lv/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/nb/LC_MESSAGES/ingo.mo" name="locale/nb/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/nb/LC_MESSAGES/ingo.po" name="locale/nb/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/nl/LC_MESSAGES/ingo.mo" name="locale/nl/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/nl/LC_MESSAGES/ingo.po" name="locale/nl/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/pl/LC_MESSAGES/ingo.mo" name="locale/pl/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/pl/LC_MESSAGES/ingo.po" name="locale/pl/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/pt/LC_MESSAGES/ingo.mo" name="locale/pt/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/pt/LC_MESSAGES/ingo.po" name="locale/pt/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/pt_BR/LC_MESSAGES/ingo.mo" name="locale/pt_BR/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/pt_BR/LC_MESSAGES/ingo.po" name="locale/pt_BR/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/ro/LC_MESSAGES/ingo.mo" name="locale/ro/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/ro/LC_MESSAGES/ingo.po" name="locale/ro/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/ru/LC_MESSAGES/ingo.mo" name="locale/ru/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/ru/LC_MESSAGES/ingo.po" name="locale/ru/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/sk/LC_MESSAGES/ingo.mo" name="locale/sk/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/sk/LC_MESSAGES/ingo.po" name="locale/sk/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/sl/LC_MESSAGES/ingo.mo" name="locale/sl/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/sl/LC_MESSAGES/ingo.po" name="locale/sl/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/sv/LC_MESSAGES/ingo.mo" name="locale/sv/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/sv/LC_MESSAGES/ingo.po" name="locale/sv/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/tr/LC_MESSAGES/ingo.mo" name="locale/tr/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/tr/LC_MESSAGES/ingo.po" name="locale/tr/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/uk/LC_MESSAGES/ingo.mo" name="locale/uk/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/uk/LC_MESSAGES/ingo.po" name="locale/uk/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/zh_CN/LC_MESSAGES/ingo.mo" name="locale/zh_CN/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/zh_CN/LC_MESSAGES/ingo.po" name="locale/zh_CN/LC_MESSAGES/ingo.po" />
<install as="ingo/locale/zh_TW/LC_MESSAGES/ingo.mo" name="locale/zh_TW/LC_MESSAGES/ingo.mo" />
<install as="ingo/locale/zh_TW/LC_MESSAGES/ingo.po" name="locale/zh_TW/LC_MESSAGES/ingo.po" />
<install as="ingo/migration/1_ingo_base_tables.php" name="migration/1_ingo_base_tables.php" />
<install as="ingo/migration/2_ingo_upgrade_autoincrement.php" name="migration/2_ingo_upgrade_autoincrement.php" />
<install as="ingo/migration/3_ingo_upgrade_sqlng.php" name="migration/3_ingo_upgrade_sqlng.php" />
<install as="ingo/migration/4_ingo_upgrade_sqlhierarchical.php" name="migration/4_ingo_upgrade_sqlhierarchical.php" />
<install as="ingo/migration/5_ingo_upgrade_sqlnghierarchical.php" name="migration/5_ingo_upgrade_sqlnghierarchical.php" />
<install as="ingo/migration/6_ingo_upgrade_parents.php" name="migration/6_ingo_upgrade_parents.php" />
<install as="ingo/migration/7_ingo_fix_rule_order.php" name="migration/7_ingo_fix_rule_order.php" />
<install as="ingo/templates/.htaccess" name="templates/.htaccess" />
<install as="ingo/templates/basic/blacklist/blacklist.html.php" name="templates/basic/blacklist/blacklist.html.php" />
<install as="ingo/templates/basic/filters/filters.html.php" name="templates/basic/filters/filters.html.php" />
<install as="ingo/templates/basic/menu/menu.html.php" name="templates/basic/menu/menu.html.php" />
<install as="ingo/templates/basic/rule/rule.html.php" name="templates/basic/rule/rule.html.php" />
<install as="ingo/templates/basic/script/script.html.php" name="templates/basic/script/script.html.php" />
<install as="ingo/templates/basic/script/_script.html.php" name="templates/basic/script/_script.html.php" />
<install as="ingo/templates/basic/whitelist/whitelist.html.php" name="templates/basic/whitelist/whitelist.html.php" />
<install as="ingo/templates/flist/input.html.php" name="templates/flist/input.html.php" />
<install as="ingo/templates/flist/select.html.php" name="templates/flist/select.html.php" />
<install as="ingo/templates/smartmobile/rule.html.php" name="templates/smartmobile/rule.html.php" />
<install as="ingo/templates/smartmobile/rules.html.php" name="templates/smartmobile/rules.html.php" />
<install as="Ingo/AllTests.php" name="test/Ingo/AllTests.php" />
<install as="Ingo/Autoload.php" name="test/Ingo/Autoload.php" />
<install as="Ingo/bootstrap.php" name="test/Ingo/bootstrap.php" />
<install as="Ingo/phpunit.xml" name="test/Ingo/phpunit.xml" />
<install as="Ingo/fixtures/from_spammer" name="test/Ingo/fixtures/from_spammer" />
<install as="Ingo/fixtures/not_from_spammer" name="test/Ingo/fixtures/not_from_spammer" />
<install as="Ingo/Unit/MaildropTest.php" name="test/Ingo/Unit/MaildropTest.php" />
<install as="Ingo/Unit/ProcmailTest.php" name="test/Ingo/Unit/ProcmailTest.php" />
<install as="Ingo/Unit/ScriptTest.php" name="test/Ingo/Unit/ScriptTest.php" />
<install as="Ingo/Unit/SieveTest.php" name="test/Ingo/Unit/SieveTest.php" />
<install as="Ingo/Unit/TestBase.php" name="test/Ingo/Unit/TestBase.php" />
<install as="ingo/themes/default/screen.css" name="themes/default/screen.css" />
<install as="ingo/themes/default/block/screen.css" name="themes/default/block/screen.css" />
<install as="ingo/themes/default/graphics/blacklist.png" name="themes/default/graphics/blacklist.png" />
<install as="ingo/themes/default/graphics/copy.png" name="themes/default/graphics/copy.png" />
<install as="ingo/themes/default/graphics/disable.png" name="themes/default/graphics/disable.png" />
<install as="ingo/themes/default/graphics/enable.png" name="themes/default/graphics/enable.png" />
<install as="ingo/themes/default/graphics/favicon.ico" name="themes/default/graphics/favicon.ico" />
<install as="ingo/themes/default/graphics/forward.png" name="themes/default/graphics/forward.png" />
<install as="ingo/themes/default/graphics/ingo.png" name="themes/default/graphics/ingo.png" />
<install as="ingo/themes/default/graphics/script.png" name="themes/default/graphics/script.png" />
<install as="ingo/themes/default/graphics/spam.png" name="themes/default/graphics/spam.png" />
<install as="ingo/themes/default/graphics/vacation.png" name="themes/default/graphics/vacation.png" />
<install as="ingo/themes/default/graphics/whitelist.png" name="themes/default/graphics/whitelist.png" />
<install as="ingo/basic.php" name="basic.php" />
<install as="ingo/index.php" name="index.php" />
<install as="LICENSE" name="LICENSE" />
<install as="README" name="README" />
<install as="ingo/smartmobile.php" name="smartmobile.php" />
<install as="ingo/themes/default/smartmobile/screen.css" name="themes/default/smartmobile/screen.css" />
</filelist>
</phprelease>
<changelog>
<release>
<version>
<release>2.0.0alpha1</release>
<api>2.0.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2011-03-09</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* First alpha release for Horde 4.
</notes>
</release>
<release>
<version>
<release>2.0.0beta1</release>
<api>2.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2011-03-16</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* Fix creating new rules with PostgreSQL (Bug #9638).
</notes>
</release>
<release>
<version>
<release>2.0.0RC1</release>
<api>2.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2011-03-23</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* First release candidate for Horde 4.
* [jan] Fix instantiation of VFS transport driver (Bug #9605).
* [jan] Fix moving rules with the SQL driver (Bug #9672).
</notes>
</release>
<release>
<version>
<release>2.0.0RC2</release>
<api>2.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2011-03-29</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* Second release candidate for Horde 4.
* [jan] Fix updating forward rules in SQL driver (Bug #9699).
</notes>
</release>
<release>
<version>
<release>2.0.0</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-04-06</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* First stable release for Horde 4.
* [jan] Fix application-specific permission checks (Bug #9786).
* [jan] Correctly escape vacation subjects with quote characters in Maildrop driver (Bug #9156).
* [jan] Catch all PEAR errors in Sieve driver.
* [jan] Allow script drivers to provide additional scripts to upload (Bug #8110).
* [jan] Change default Sieve port to 4190 (Request #9791).
* [jan] Fix reading default forward rule from preferences.
* [jan] Fix removing flags with Sieve driver (Vilius Sumskas <vilius@lnk.lt>, Bug #9785).
* [mjr] Datatree share to SQL upgrade script refactored for Horde 4.
* [jan] Move all executable scripts to bin/ and prefix with ingo-.
</notes>
</release>
<release>
<version>
<release>2.0.1</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-04-20</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix folder selection (Bug #9907).
* [mms] Fix IMAP filtering using envelope data (Bug #9859).
</notes>
</release>
<release>
<version>
<release>2.0.2</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-06-14</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Fix moving rules to an explicit position (Bug #10172).
* [mms] Fix storage backend conversion script.
</notes>
</release>
<release>
<version>
<release>2.0.3</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-07-05</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Add -N parameter to mailbot calls by default (Request #10147).
* [jan] Fix notice when using numeric comparisons for spam headers (Bug #10222).
* [jan] Respect excluded mail addresses in Maildrop vacation driver (Request #10077).
* [jan] Fix access to debug handler in Timsieved driver.
* [jan] Fix deleting single conditions from a rule (Bug #10253).
</notes>
</release>
<release>
<version>
<release>2.0.4</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-08-02</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix creating new mailboxes (Bug #10282).
</notes>
</release>
<release>
<version>
<release>2.0.5</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-08-30</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Fix disabling of actions by locking preferences (Bug #10455).
* [jan] Sort blacklist and whitelist for display instead of for storage.
</notes>
</release>
<release>
<version>
<release>2.0.6</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-10-18</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix displaying From address in notification when filtering with IMAP driver.
* [jan] Catch if files don't exist while deleting with VFS transport (michael-dev@fami-braun.de, Bug #10494).
* [mms] Additional fixes when creating new mailboxes (Bug #10282).
</notes>
</release>
<release>
<version>
<release>2.0.7</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2011-12-13</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Japanese translation (Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>).
* [jan] Set Return-Path: in Maildrop vacation driver (rsalmon@mbpgroup.com, Bug #10568).
</notes>
</release>
<release>
<version>
<release>2.0.8</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-05-29</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Swedish translation (Per Olof Ljungmark <peo@bsdlabs.com>).
* [mms] Fix IMAP filtering on combination fields (Bug #11197).
* [jan] Fix showing blacklist option to mark message as deleted (Bug #11186).
* [jan] Update Italian translation (Massimo Malabotta <mmalabotta@units.it>).
* [jan] Fix folder names in Procmail rules if using Maildir (Bug #10113).
* [jan] Update Hungarian translation (Zoltán Németh <nemeth.zoltan@etit.hu>).
* [mms] Application initialization should only be done on first access.
</notes>
</release>
<release>
<version>
<release>2.0.9</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-06-26</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix patch for filtering on combination fields (Bug #11197).
* [mms] Procmail driver now explicitly sets the base Maildir directory by default (Bug #10113).
* [jan] Update Turkish translation (İstanbul Technical University).
</notes>
</release>
<release>
<version>
<release>2.0.10</release>
<api>2.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-10-02</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Correctly reindex existing rules when deleting a rule and using the SQL filters storage driver.
* [mms] Don't allow a user to save a rule with no matching conditions.
</notes>
</release>
<release>
<date>2012-07-06</date>
<time>17:25:14</time>
<version>
<release>3.0.0alpha1</release>
<api>3.0.0alpha1</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* First alpha release for Horde 5.
* [mms] When adding to blacklist/whitelist, remove added addresses from the other list.
* [jan] Allow to use placeholder variables in vacation messages (Request #10316).
* [mjr] Add ability to retrieve vacation message details from the API.
* [jan] Validate start and end dates of vacation rules (Request #10879).
</notes>
</release>
<release>
<version>
<release>3.0.0beta1</release>
<api>3.0.0beta1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2012-07-20</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update icon set.
* [mms] Fix javascript actions on the vacation page.
</notes>
</release>
<release>
<version>
<release>3.0.0beta2</release>
<api>3.0.0beta1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2012-10-12</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Add 'transport_auth' hook to handle defining authentication parameters for transport backends.
* [mms] Remove session caching of rules.
* [mms] Initial implementation of smartmobile view.
* [mms] Disable blacklist, vacation, and whitelist API methods if the preference is locked.
</notes>
</release>
<release>
<version>
<release>3.0.0RC1</release>
<api>3.0.0beta1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2012-10-26</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Add 'euser' option to 'transport_auth' hook allowing the effective user to be provided for the timsieved transport driver.
</notes>
</release>
<release>
<version>
<release>3.0.0</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-10-30</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* First stable release for Horde 5.
</notes>
</release>
<release>
<version>
<release>3.0.1</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2012-11-07</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Slovak translation (Jozef Sudolský <jozef.sudolsky@elbia.sk>).
* [mms] Fix PHP error notification thrown if backends 'params' parameter was empty (Bug #11615).
</notes>
</release>
<release>
<version>
<release>3.0.2</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2013-01-10</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Basque translation (Ibon Igartua <ibon.igartua@ehu.es>).
* [jan] Fix changing permissions for shared rulesets.
</notes>
</release>
<release>
<version>
<release>3.0.3</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2013-02-12</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Fix multiple user-defined headers in a single rule (Zephaniah E. Loss-Cutler-Hull, Bug #11893).
* [jan] Use more portable procmail recipe for rejects (Bug #7520).
* [jan] Fix configuration of 'forward_file' parameter (Bug #11989).
* [mms] Require non-empty subject and reason fields when creating a vacation message (crohmann@netcologne.de; Request #8376).
* [jan] Update French translation (Paul De Vlieger <paul.de_vlieger@moniut.univ-bpclermont.fr>).
</notes>
</release>
<release>
<version>
<release>3.0.4</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2013-05-29</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] SECURITY: Fix XSS vulnerability on smartmobile rule page (João Machado <geral@jpaulo.eu>).
* [mms] Fix copy/move actions when destination mailbox contains non ASCII characters (Bug #12217).
* [mms] Translate rule descriptions to the local language in UI.
* [jan] Allow multiple addresses for Sieve redirects (it@wenn.com, Request #11457).
</notes>
</release>
<release>
<version>
<release>3.1.0beta1</release>
<api>3.0.0</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<date>2013-05-07</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Add composite script backends.
* [jan] Add vacation driver for ISPConfig (Michael Bunk <mb@computer-leipzig.com>).
* [jan] Hide unsupported form fields of vacation form (Michael Bunk <mb@computer-leipzig.com>).
* [jan] Add composite transport backends.
* [jan] Move shared ruleset selection to sidebar.
* [mms] All Ingo templates now use Horde_View.
</notes>
</release>
<release>
<version>
<release>3.1.0RC1</release>
<api>3.0.0</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<date>2013-05-29</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix regression in accessing Ingo links from the external API (Bug #12249).
</notes>
</release>
<release>
<version>
<release>3.1.0</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2013-06-04</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mjr] Fix fatal error when updating filters.
</notes>
</release>
<release>
<version>
<release>3.1.1</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2013-06-12</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Fix option to filter by user-defined headers (Bug #12345).
* [jan] Fix highlighting of menu entries.
* [jan] Restore compatibility with PHP 5.3 (Bug #12306).
</notes>
</release>
<release>
<version>
<release>3.1.2</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2013-07-16</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Disable links if the underlying preferences are locked.
* [jan] Fix setting excluded addresses and mailing list flag in Sieve vacation rule.
</notes>
</release>
<release>
<version>
<release>3.1.3</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2013-10-29</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] SECURITY: Protect against CSRF attacks by using tokens on destructive actions (Bug #12796; CVE-2013-6275; found by Marcela Benetrix <m.benetrix@e-secure.com.au>).
</notes>
</release>
<release>
<version>
<release>3.1.4</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-03-10</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Danish translation (Erling Preben Hansen <erling@eph.dk>).
* [jan] Make spam level a required form field (Bug #12964).
* [jan] Fix behavior of 'utf' parameter (Bug #12937).
* [mms] Fix sieve driver correctly identifying mailing lists when determining whether to send vacation messages (skhorde@smail.inf.fg-bonn-rhein-sieg.de, Bug #12938).
</notes>
</release>
<release>
<version>
<release>3.1.5</release>
<api>3.0.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-07-07</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix blacklist/whitelist matching with IMAP backend (Bug #13031).
* [mms] Fix procmail reject recipe (Bug #13060; admin@dei.unipd.it).
</notes>
</release>
<release>
<date>2014-05-05</date>
<version>
<release>3.2.0alpha1</release>
<api>3.2.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Use standardized 'enotify' sieve extension (RFC 5435) by default instead of deprecated 'notify' extension (Request #8784).
* [mms] Use standardized 'imap4flags' sieve extension (RFC 5232) by default instead of deprecated 'imapflags' extension (Request #8784).
* [mms] Add ability to filter rules by mailbox.
* [mms] Add 'max_forward' permission (Request #10332).
* [mms] Permissions can now be applied per backend, rather than globally.
* [mms] Replace max blacklist/whitelist configuration parameters with equivalent permissions options.
* [mms] Sorting of rules now done via drag/drop javascript (Request #1993).
* [jan] Make shares table compatible with Oracle.
* [mms] Validate e-mail addresses on the forward and vacation pages (Request #7249).
* [mms] Add 'newEmailFilter' API link.
</notes>
</release>
<release>
<version>
<release>3.2.0beta1</release>
<api>3.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2014-05-21</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Pass current vacation addresses to hook (skhorde@smail.inf.fh-bonn-rhein-sieg.de, Request #13185).
</notes>
</release>
<release>
<version>
<release>3.2.0beta2</release>
<api>3.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2014-06-04</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Honor 'auto_update' preference when re-sorting filters list (Bug #13216).
* [mms] Fix regression in copying a rule when storing in SQL backend (Bug #13213).
</notes>
</release>
<release>
<version>
<release>3.2.0RC1</release>
<api>3.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2014-06-17</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Polish translation (Maciej Uhlig <maciej.uhlig@us.edu.pl>).
* [jan] Update Japanese translation (Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>).
</notes>
</release>
<release>
<version>
<release>3.2.0RC2</release>
<api>3.2.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2014-07-01</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix mailbox selection on Spam page (Bug #13298).
* [mms] Fix regression in deactivating scripts (Bug #13297).
</notes>
</release>
<release>
<version>
<release>3.2.0</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-07-08</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
*
</notes>
</release>
<release>
<version>
<release>3.2.1</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-09-05</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix performing more than one filter drag/drop action on a single page (Bug #13434).
* [mms] Add support for a negative regex test to the Maildrop driver.
* [mms] Add support for a negative regex test to the Sieve driver (Pete Beardmore <pete.beardmore@msn.com>, Request #12671).
* [mms] Fix vacation in the maildrop driver (balestrieri@mag-data.com, Bug #13415).
</notes>
</release>
<release>
<version>
<release>3.2.2</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-10-29</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Disable forward rule by default.
* [mms] Fix checking the 'max_forward' permission (Bug #13568).
* [mms] IMAP driver needs to explicitly search for UTF-8 text, since we don't restrict charset input at the UI level (Bug #13554).
* [mjr] Fix issues when preferred configuration contains an array (Bug #13548).
</notes>
</release>
<release>
<version>
<release>3.2.3</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2014-12-03</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Fix determination of preferred backend (Bug #13548).
</notes>
</release>
<release>
<version>
<release>3.2.4</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2015-02-10</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mms] Rate-limit filters drag/drop changes to prevent race conditions (Bug #13819).
* [mms] Fix filter drag/drop ordering working in basic view (Bug #13820).
* [mms] Maildir requires UTF7-IMAP encoding for folder names (Bug #13378).
</notes>
</release>
<release>
<version>
<release>3.2.5</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2015-04-28</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Add Galician translation.
* [mms] Enforce selection of a target folder for the spam filter in the UI (Bug #13917).
* [jan] Fix Sieve error if days of vacation is unset (Bug #13890).
</notes>
</release>
<release>
<version>
<release>3.2.6</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2015-08-01</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mjr] Fix using transport parameters in Procmail driver.
* [jan] Update Czech translation.
* [jan] Update Italian translation.
* [mjr] Fix selecting incorrect rule when performing any action after reordering (Bug #14064 and Bug #13643).
* [jan] Fix duplicate messages when using the redirect-and-keep rule with Procmail backends.
</notes>
</release>
<release>
<version>
<release>3.2.7</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2015-10-21</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Italian translation.
* [mjr] Add database migration for fixing corrupt rule ordering.
* [mjr] Fix corruption of rule order when reordering rules in certain cases.
</notes>
</release>
<release>
<version>
<release>3.2.8</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-02-02</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Fix editing shared rulesets (Bug #12694).
* [jan] Allow to edit permissions of another user's rules if that user assigned ownership.
* [jan] Use access rules compatible with both Apache 2.2 and 2.4.
* [jan] Fix variable name in vacation_addresses hook example.
* [jan] Correctly save names of mailbox created from the rule form (Bug #14150).
* [mjr] Fix invalid URLs in certain forms when cookies are disabled (Bug #14148).
</notes>
</release>
<release>
<version>
<release>3.2.9</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-03-21</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [mjr] Fix PHP deprecated warnings in unit test (PR #176, Mathieu Parent <math.parent@gmail.com>).
* [mjr] Honor 'date', 'echo', and 'ls' path overrides (Bug #14284).
* [jan] Update Greek translation (Limperis Antonis <limperis@cti.gr>).
* [jan] Fix Oracle compatibility (Bug #14262).
</notes>
</release>
<release>
<version>
<release>3.2.10</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-04-05</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Don't duplicate messages in Procmail's vacation recipe if excluding email addresses (Michael.Martin@warp-it.com, Bug #14275).
* [jan] Remove stop-script feature from Procmail driver.
</notes>
</release>
<release>
<version>
<release>3.2.11</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-07-01</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Update Portuguese translation.
* [jan] Update Basque translation.
* [jan] Don't ignore 'initial_page' registry setting.
</notes>
</release>
<release>
<version>
<release>3.2.12</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-09-06</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Fix using ingo-convert-prefs-to-sql for multiple users.
* [mjr] Fix incorrect flag usage in Procmail vacation recipe (Bug #14397).
* [mjr] Fix escaping mailbox names that contain utf7-imap encodings (Bug #14429).
* [jan] Fix creating new spam folders.
</notes>
</release>
<release>
<version>
<release>3.2.13</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2016-12-16</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Convert vacation rules in preference backend from Ingo < 2.0.
* [jan] Fix some edge cases with Sieve vacation rules with date limits (Bug #14486).
</notes>
</release>
<release>
<version>
<release>3.2.14</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2017-03-20</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Never send autoreplies again when setting zero vacation days in Procmail or Maildrop backends (Bug #14549).
* [jan] Don't split sieve body tests on commas (Bug #14546).
</notes>
</release>
<release>
<version>
<release>3.2.15</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2017-05-03</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] SECURITY: Fix XSS vulnerability in rule search (Andrey Zelenchuk <azelenchuk@plesk.com>).
</notes>
</release>
<release>
<version>
<release>3.2.16</release>
<api>3.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2017-09-19</date>
<license uri="http://www.horde.org/licenses/apache">ASL</license>
<notes>
* [jan] Officially support PHP 7.
</notes>
</release>
</changelog>
</package>
|