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 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859
|
ejabberd (24.12-3) unstable; urgency=medium
[ Carles Pina i Estany ]
* Added po-debconf Catalan translation
[ Philipp Huebner ]
* Dropped unmaintained AppArmor profile as it breaks AppArmor 4
(Closes: #1100515)
* Updated FSF address in debian/copyright
* Updated Standards-Version: 4.7.2 (no changes needed)
-- Philipp Huebner <debalance@debian.org> Sun, 30 Mar 2025 15:24:44 +0200
ejabberd (24.12-2) unstable; urgency=medium
* Added upstream commit as patch to fix mod_s2s_bidi
* Removed Konstantin from Uploaders, last contribution was ~12 years ago
* (Build-)Depend on erlang-p1-xmpp >= 1.9.4
-- Philipp Huebner <debalance@debian.org> Tue, 11 Feb 2025 21:32:53 +0100
ejabberd (24.12-1) unstable; urgency=medium
* New upstream version 24.12
* Updated Erlang dependencies
* Updated years in debian/copyright
* Dropped obsolete patches
* Refreshed remaining patches
-- Philipp Huebner <debalance@debian.org> Sun, 09 Feb 2025 11:36:32 +0100
ejabberd (24.07-2) unstable; urgency=medium
* Added upstream patch to not blindly echo PEP notifications
(Closes: #1081845)
* Updated Standards-Version: 4.7.0 (no changes needed)
* Updated lintian overrides
-- Philipp Huebner <debalance@debian.org> Sun, 27 Oct 2024 08:54:16 +0100
ejabberd (24.07-1) unstable; urgency=medium
[ Rhonda D'Vine ]
* Remove myself from uploaders
[ Philipp Huebner ]
* New upstream version 24.07 (Closes: #1070200)
* [Debconf translation updates] Swedish; (Martin Bagge, Anders Jonsson).
(Closes: #1065168)
* Updated Erlang dependencies
* Refreshed patches
* debian/rules: add `--with-rebar=/usr/bin/rebar` to configure command
to fix FTBFS
* Updated years in debian/copyright
* Ran `wrap-and-sort`
-- Philipp Huebner <debalance@debian.org> Fri, 04 Oct 2024 13:24:43 +0200
ejabberd (23.10-1) unstable; urgency=medium
[ Philipp Huebner ]
* New upstream version 23.10 (Closes: #1034138)
* Updated Erlang dependencies
* Updated patches
* Added turkish translation of debconf messages - thanks Atila KOÇ!
(Closes: #1036941)
* Added two upstream patches that were created after the release of 23.10
to fix ejabberd startup
[ Ananthu C V ]
* Unfuzzed and updated existing patches and added new patch
* Added override for example installation
* Updated lintian overrides
* Updated d/copyright
-- Philipp Huebner <debalance@debian.org> Fri, 29 Dec 2023 14:28:14 +0100
ejabberd (23.01-1) unstable; urgency=medium
* New upstream version 23.01
* Refreshed patches
* Updated Erlang dependencies
* Updated Standards-Version: 4.6.2 (no changes needed)
* Updated years in debian/copyright
* Updated lintian overrides
-- Philipp Huebner <debalance@debian.org> Wed, 08 Feb 2023 22:37:43 +0100
ejabberd (22.10-1) unstable; urgency=medium
* New upstream version 22.10
* Updated Erlang dependencies
* Refreshed patches
-- Philipp Huebner <debalance@debian.org> Wed, 02 Nov 2022 15:55:33 +0100
ejabberd (22.05-1) unstable; urgency=medium
* New upstream version 22.05
* Refreshed patches
* Updated Erlang dependencies
* Updated Standards-Version: 4.6.1 (no changes needed)
* Updated years in debian/copyright
* Added autopkgtests (Closes: #993039)
* Improved README.Debian (Closes: #958307)
-- Philipp Huebner <debalance@debian.org> Thu, 02 Jun 2022 13:26:51 +0200
ejabberd (21.12-1) unstable; urgency=medium
* New upstream version 21.12
* Updated Erlang dependencies
* Refreshed patches
* Replaced 'which' with 'command -v' in debian/postrm
* Updated lintian overrides
* Updated debian/watch
-- Philipp Huebner <debalance@debian.org> Mon, 20 Dec 2021 21:58:02 +0100
ejabberd (21.07-1) unstable; urgency=medium
[ Peter Nowee ]
* Prevent early exit on admin registration error
* Fix replacing localhost by hostname in config file
[ Philipp Huebner ]
* New upstream version 21.07
* Updated Standards-Version: 4.6.0 (no changes needed)
* Refreshed patches
* Updated Erlang dependencies
-- Philipp Huebner <debalance@debian.org> Thu, 02 Sep 2021 20:35:07 +0200
ejabberd (21.01-2) unstable; urgency=medium
* Corrected Multi-Arch setting to "allowed"
-- Philipp Huebner <debalance@debian.org> Sun, 31 Jan 2021 19:49:31 +0100
ejabberd (21.01-1) unstable; urgency=medium
* New upstream version 21.01
* Refreshed patches
* Updated package description
* Added upstream's main MUC logs to debian/upstream/metadata
* Updated description in several more places
* Updated years in debian/copyright
* Updated Erlang dependencies
-- Philipp Huebner <debalance@debian.org> Sat, 30 Jan 2021 20:16:00 +0100
ejabberd (20.12-1) unstable; urgency=medium
* New upstream version 20.12
* Updated Standards-Version: 4.5.1 (no changes needed)
* Updated Erlang dependencies
* Updated version of debian/watch: 4
* Updated debhelper compat version: 13
* Updated lintian overrides
* Refreshed patches for ejabberd 20.12
-- Philipp Huebner <debalance@debian.org> Sat, 26 Dec 2020 14:49:26 +0100
ejabberd (20.07-1) unstable; urgency=medium
[ Eugene Crosser ]
* apparmor: allow PAM auth to work with libpam 1.3.1
[ Philipp Huebner ]
* New upstream version 20.07
* Updated Erlang dependencies
* Refreshed patches
* Updated debian/copyright
* Updated debian/ejabberdctl.8
* Updated debian/lintian-overrides
-- Philipp Huebner <debalance@debian.org> Sun, 09 Aug 2020 13:20:25 +0200
ejabberd (20.04-1) unstable; urgency=medium
* New upstream version 20.04
* Updated Erlang dependencies
* Refreshed patches
* Moved erlang-p1-stun from Recommends to Depends
-- Philipp Huebner <debalance@debian.org> Fri, 01 May 2020 17:33:49 +0200
ejabberd (20.03-1) unstable; urgency=medium
* New upstream version 20.03
* Updated Erlang dependencies
* Dropped patches that are now included upstream
* Updated debian/watch and debian/rules to use releases from GitHub
-- Philipp Huebner <debalance@debian.org> Sat, 18 Apr 2020 11:21:39 +0200
ejabberd (20.02-2) unstable; urgency=medium
* Add upstream patch to fix web admin
-- Philipp Huebner <debalance@debian.org> Sat, 21 Mar 2020 17:59:07 +0100
ejabberd (20.02-1) unstable; urgency=medium
* New upstream version 20.02
* Updated Erlang dependencies
* [Debconf translation updates]
Italian; (Beatrice Torracca). Closes: #952793
-- Philipp Huebner <debalance@debian.org> Sat, 21 Mar 2020 14:36:03 +0100
ejabberd (20.01.1-1) unstable; urgency=high
* Re-import upstream version 20.01 as 20.01.1, ProcessOne had previously
provided a broken source tarball (Closes: #952739)
* Added --enable-system-deps to configure in debian/rules
* Dropped dependency on iconv (it's no longer needed)
* Dropped mod_echo from default ejabberd.yml
* Updated erlang dependencies
* Refreshed patches
* Correctly install manpage ejabberd.yml.5
* Added patch to fix sspelling errors in manpage for ejabberd.yml
-- Philipp Huebner <debalance@debian.org> Fri, 28 Feb 2020 11:32:35 +0100
ejabberd (20.01-1) unstable; urgency=medium
* New upstream version 20.01
* Updated Standards-Version: 4.5.0 (no changes needed)
* Updated years in debian/copyright
* Rules-Requires-Root: no
-- Philipp Huebner <debalance@debian.org> Sat, 08 Feb 2020 13:44:45 +0100
ejabberd (19.09.1-1) unstable; urgency=medium
* New upstream version 19.09.1
* Refreshed patches
* Updated Erlang deps
* Updated Standards-Version: 4.4.1 (no changes needed)
-- Philipp Huebner <debalance@debian.org> Tue, 12 Nov 2019 14:44:16 +0100
ejabberd (19.08-2) unstable; urgency=medium
* Added upstream patch to fix vhost handling (Closes: #935811)
-- Philipp Huebner <debalance@debian.org> Thu, 29 Aug 2019 19:28:11 +0200
ejabberd (19.08-1) unstable; urgency=medium
* New upstream version 19.08
* Refreshed patches for 19.08
* Updated erlang dependencies
-- Philipp Huebner <debalance@debian.org> Sat, 10 Aug 2019 21:44:29 +0200
ejabberd (19.05-2) unstable; urgency=high
* Drop dependency on erlang-p1-yconf, it's not needed yet
-- Philipp Huebner <debalance@debian.org> Sat, 10 Aug 2019 12:06:08 +0200
ejabberd (19.05-1) unstable; urgency=medium
* New upstream version 19.05
* Updated short+long description to add MQTT and drop IRC
* Updated debian/patches/src.includes.patch
* Refreshed debian/patches/ejabberd.yml.example.diff
* Updated Standards-Version: 4.4.0 (no changes needed)
* Updated Erlang dependencies
* Updated debhelper compat version: 12
* debian/rules: export ERL_COMPILER_OPTIONS=deterministic
* Added ${misc:Pre-Depends} to Pre-Depends
* [Debconf translation updates] Danisch; (Joe Dalton). (Closes: #923119)
-- Philipp Huebner <debalance@debian.org> Fri, 02 Aug 2019 21:49:44 +0200
ejabberd (18.12.1-2) unstable; urgency=medium
* Corrected Erlang dependencies
-- Philipp Huebner <debalance@debian.org> Fri, 11 Jan 2019 16:33:58 +0100
ejabberd (18.12.1-1) unstable; urgency=medium
* New upstream version 18.12.1
* Refreshed patches for 18.12.1
* Updated Erlang dependencies
* Updated Standards-Version: 4.3.0 (no changes needed)
* Updated years in debian/copyright
* Updated debian/docs
-- Philipp Huebner <debalance@debian.org> Tue, 01 Jan 2019 22:56:50 +0100
ejabberd (18.09-2) unstable; urgency=medium
* Added upstream patch to add forgotten TURN options to validator
* Patched out ERL_EPMD_ADDRESS from /etc/default/ejabberd because it has
no effect since epmd is started via systemd. (Closes: #909914)
Thanks Matt Marjanovic for reporting!
-- Philipp Huebner <debalance@debian.org> Thu, 22 Nov 2018 17:33:14 +0100
ejabberd (18.09-1) unstable; urgency=medium
* New upstream version 18.09
* Updated Standards-Version: 4.2.1 (no changes needed)
-- Philipp Huebner <debalance@debian.org> Sun, 07 Oct 2018 19:40:55 +0200
ejabberd (18.06-1) unstable; urgency=medium
* New upstream version 18.06
* Moved image files to /usr/share/ejabberd/img
* Added debian/upstream/metadata
* debian/postrm: added removal of *.ucf-dist files during purge
* debian/rules: use $DEB_VERSION_UPSTREAM_REVISION instead of $DEB_VERSION,
the colon in the epoch would break things if an epoch is introduced
-- Philipp Huebner <debalance@debian.org> Wed, 04 Jul 2018 23:12:30 +0200
ejabberd (18.04-2) unstable; urgency=medium
* Several spelling corrections in debian/* (Ejabberd -> ejabberd)
* Added symlink in /usr/lib/<ARCH>/ from upstream version to debian version
-- Philipp Huebner <debalance@debian.org> Thu, 10 May 2018 21:32:13 +0200
ejabberd (18.04-1) unstable; urgency=medium
* New upstream version 18.04
* Reorganized configuration files and reworked maintainer scripts to handle
/etc/default/ejabberd according to Policy § 10.7.3 (Closes: #895371)
* Allow epam binary in AppArmor profile (LP: #1767101)
* debian/rules: add Debian revision to version string in configure
* Updated README.Debian
-- Philipp Huebner <debalance@debian.org> Thu, 10 May 2018 17:42:13 +0200
ejabberd (18.03-2) unstable; urgency=medium
* Don't block Conversation's OMEMO support in default config
* Updated Standards-Version: 4.1.4 (no changes needed)
-- Philipp Huebner <debalance@debian.org> Mon, 09 Apr 2018 21:26:08 +0200
ejabberd (18.03-1) unstable; urgency=medium
* New upstream version 18.03
* Refreshed patches for 18.03
* Switched to debhelper 11
* Added ejabberd.lintian-overrides
-- Philipp Huebner <debalance@debian.org> Tue, 03 Apr 2018 10:13:33 +0200
ejabberd (18.01-2) unstable; urgency=medium
[ Vincas Dargis ]
* AppArmor: fix continuous stream of denies
[ Philipp Huebner ]
* Use secure copyright format uri in debian/copyright
[ Neil Castelino ]
* Do not use recursive chown in postinst, prerm
-- Philipp Huebner <debalance@debian.org> Sun, 18 Feb 2018 19:56:44 +0100
ejabberd (18.01-1) unstable; urgency=medium
* New upstream version 18.01
* Refreshed patches for 18.01
* Updated (Build-)Depends
-- Philipp Huebner <debalance@debian.org> Sat, 13 Jan 2018 14:40:10 +0100
ejabberd (17.12-1) unstable; urgency=medium
* New upstream version 17.12
* Refreshed patches for 17.12
* Updated (Build-)Depends
* Set Maintainer: Ejabberd Packaging Team <ejabberd@packages.debian.org>
* Updated Vcs-* fields in debian/control for salsa.debian.org
* Updated years in debian/copyright
* Updated Standards-Version: 4.1.3 (no changes needed)
* Removed debian/source/lintian-overrides
-- Philipp Huebner <debalance@debian.org> Thu, 04 Jan 2018 14:16:29 +0100
ejabberd (17.11-1) unstable; urgency=medium
[ Neil Castelino ]
* Fix issue where debian/config did not work well with apt
* Include erlang options in debconf query during configuration
(Closes: #878034)
[ Philipp Huebner ]
* New upstream version 17.11 (Closes: #772031, #883562, #885132)
* Refreshed patches for 17.11
* Increased (Build-)Depends for 17.11
* Switched debian/watch to https
* Enabled new graphics feature in debian/rules
* Set apparmor profile to complain (Closes: #883143)
* Improved default ejabberd.yml
* Updated de.po
* Updated pt.po (Closes: #883024)
* Updated ru.po (Closes: #883416)
* Updated pt_BR.po (Closes: #883546)
* Updated es.po
* Updated nl.po
* Updated fr.po (Closes: #884531)
* Improved AppArmor profile for usrmerge (Closes: #883930)
Thanks Vincas Dargis for reporting and patching!
-- Philipp Huebner <debalance@debian.org> Sat, 30 Dec 2017 17:01:53 +0100
ejabberd (17.08-3) unstable; urgency=medium
[ Philipp Huebner ]
* Replaced Build-Depends on dh-systemd with debhelper >= 9.20160709
* Improved logrotate configuration (Closes: #876961)
* Update it.po (Closes: #876389)
* Update fr.po (Closes: #877290)
[ Neil Castelino ]
* Added notes to translators and about variable usage in debian/templates
-- Philipp Huebner <debalance@debian.org> Sat, 30 Sep 2017 16:37:23 +0200
ejabberd (17.08-2) unstable; urgency=high
[ Neil Castelino ]
* Fix mixed indentation
* Do not force existing users to change their configuration
[ Philipp Huebner ]
* Update pt_BR.po (Closes: #875540)
* Update de.po (Closes: #875814)
-- Philipp Huebner <debalance@debian.org> Wed, 20 Sep 2017 19:45:22 +0200
ejabberd (17.08-1) unstable; urgency=medium
[ Neil Castelino ]
* Avoid regeneration of ejabberd.pem on upgrades (Closes: #600146)
* debian/rules clean: remove ejabberd.service created by upstream makefile
* Fix issues found in maintainer scripts by shellcheck
* debconf: validate hostname + username input and update debconf templates
(Closes: #597806)
* debconf: normalize case and improved hostname validation
* debconf: updated templates with help from debian-l10n-en team
* debconf: check if admin account already exists before registering it
* Change ERLANG_NODE to upstream default, add debconf template and update
NEWS to help users through the change
[ Philipp Huebner ]
* New upstream version 17.08
* Refreshed patches for ejabberd 17.08
* Updated erlang-p1-* dependencies
* Updated Standards-Version: 4.1.0 (no changes needed)
* Updated debian/copyright
* Don't error out in postinst if user already present (LP: #1501983)
* Make scripts in debian/ executable
* Update po(t) files (Closes: #874269, #874804)
-- Philipp Huebner <debalance@debian.org> Sun, 10 Sep 2017 18:00:40 +0200
ejabberd (17.07-1) unstable; urgency=medium
* New upstream version 17.07 (Closes: #867723)
* Updated Standards-Version: 4.0.0 (no changes needed)
* Updated years in debian/copyright
* Updated (Build-)Depends
* Refreshed patches for ejabberd 17.07
* Updated debian/rules
* Added NEWS entry regarding configuration changes
-- Philipp Huebner <debalance@debian.org> Fri, 14 Jul 2017 12:12:13 +0200
ejabberd (17.04-1~exp2) experimental; urgency=medium
* Added upstream patch to not disable carbons on stream resumption
* Added upstream patch to fix regression from previous patch
* Added upstream patch to fix 'if_offline' detection
* Added missing mmap permission in apparmor profile (Closes: #860951,
LP: #1659801)
-- Philipp Huebner <debalance@debian.org> Sun, 14 May 2017 17:10:45 +0200
ejabberd (17.04-1~exp1) experimental; urgency=medium
* New upstream version 17.04 (Closes: #856927, #855493)
-- Philipp Huebner <debalance@debian.org> Sat, 15 Apr 2017 23:25:36 +0200
ejabberd (16.09-4) unstable; urgency=medium
* Added missing ImageMagick paths to apparmor profile
* Enabled versioning in mod_roster by default (Closes: #851212)
* Extended README.Debian with information regarding pam + systemd
(Closes: #854178)
-- Philipp Huebner <debalance@debian.org> Sun, 05 Feb 2017 13:19:29 +0100
ejabberd (16.09-3) unstable; urgency=medium
* Added lsb-base (>= 3.0-6) to Depends
* Removed self-referencing Alias from ejabberd.service.template.patch
(LP: #1617220)
* Removed incompatible graphicsmagick-imagemagick-compat alternative from
Suggests (LP: #788575)
* Added erlang-jiffy to Depends, it's required by mod_http_api
* Added yamllint to Suggests
* Added ImageMagick to AppArmor profile
-- Philipp Huebner <debalance@debian.org> Sun, 23 Oct 2016 20:24:51 +0200
ejabberd (16.09-2) unstable; urgency=medium
* Complete overhaul of the ejabberdctl.8 manpage
* Improved AppArmor profile (Closes: #839136)
Thanks Michael Kuhn for reporting!
-- Philipp Huebner <debalance@debian.org> Sun, 02 Oct 2016 17:00:40 +0200
ejabberd (16.09-1) unstable; urgency=medium
* New upstream version 16.09
* Refreshed patches for ejabberd 16.09
* Updated versions of erlang-* deps
* Improved apparmor file
* Reverted some upstream changes to systemd unit file (Closes: #836711)
* Disabled captcha for web admin in default config
* Removed unnecessary restart from postinst
* Improved systemd unit file to properly shut down ejabberd
-- Philipp Huebner <debalance@debian.org> Mon, 26 Sep 2016 10:47:30 +0200
ejabberd (16.08-1) unstable; urgency=medium
* Imported Upstream version 16.08
* Refreshed patches for ejabberd 16.08
* Updated versions of erlang-* deps
* Added 2 upstream patches to allow registering users on the commandline
-- Philipp Huebner <debalance@debian.org> Mon, 08 Aug 2016 14:01:36 +0200
ejabberd (16.06-3) unstable; urgency=medium
* Added patch to insert missing commas in sql statements (Closes: #833266)
-- Philipp Huebner <debalance@debian.org> Tue, 02 Aug 2016 19:25:51 +0200
ejabberd (16.06-2) unstable; urgency=medium
* Adjusted postinst to correctly set admin user in ejabberd.yml
-- Philipp Huebner <debalance@debian.org> Sun, 03 Jul 2016 17:13:35 +0200
ejabberd (16.06-1) unstable; urgency=medium
* Imported Upstream version 16.06
* Refreshed patches for ejabberd 16.06
* Updated versions of erlang-p1-* deps
* Updated Standards-Version: 3.9.8 (no changes needed)
-- Philipp Huebner <debalance@debian.org> Sat, 02 Jul 2016 16:29:32 +0200
ejabberd (16.03-1) unstable; urgency=medium
* Imported Upstream version 16.03
* Refreshed patches for ejabberd 16.03
* Updated versions of erlang-p1-* deps
-- Philipp Huebner <debalance@debian.org> Tue, 12 Apr 2016 13:30:08 +0200
ejabberd (16.02-2) unstable; urgency=medium
* Added erlang-luerl to Suggests (for prosody import)
* [Debconf translation updates]
* Japanese; (Takuma Yamada). Closes: #815529
-- Philipp Huebner <debalance@debian.org> Wed, 09 Mar 2016 17:31:58 +0100
ejabberd (16.02-1) unstable; urgency=medium
* Imported Upstream version 16.02
* Refreshed patches for ejabberd 16.02
* Updated Standards-Version: 3.9.7 (no changes needed)
* Updated versions of erlang-p1-* deps
* Updated debian/README.Debian
* Updated debian/NEWS
* Corrected typo in manpage
-- Philipp Huebner <debalance@debian.org> Thu, 03 Mar 2016 16:22:24 +0100
ejabberd (16.01-2) unstable; urgency=medium
* Build-depend on rebar >= 2.6.0
* Moved captcha.sh to /usr/share/ejabberd/
* Build against erlang-p1-stringprep 1.0.2 (Closes: #814016)
-- Philipp Huebner <debalance@debian.org> Sun, 07 Feb 2016 19:09:01 +0100
ejabberd (16.01-1) unstable; urgency=medium
* Imported Upstream version 16.01 (Closes: #804529)
* Provides: +stun-server, turn-server
* Refreshed patches for ejabberd 16.01
* Dropped src.ejabberd_logger.erl.patch, now included upstream
* Updated debian/copyright
* Added /etc/ejabberd/modules.d
* Fixed a bug in prerm that prevented package removal
-- Philipp Huebner <debalance@debian.org> Mon, 18 Jan 2016 16:32:25 +0100
ejabberd (15.10-3) unstable; urgency=medium
* Added missing (Build-)Depends on erlang-xmerl
-- Philipp Huebner <debalance@debian.org> Sat, 14 Nov 2015 12:55:37 +0100
ejabberd (15.10-2) unstable; urgency=high
* Added Breaks+Replaces against ejabberd-mod-http-upload (Closes: #804114)
-- Philipp Huebner <debalance@debian.org> Thu, 05 Nov 2015 15:10:19 +0100
ejabberd (15.10-1) unstable; urgency=medium
* Imported Upstream version 15.10
* Refreshed patches for 15.10
* Made (Build-)Depends on erlang-p1-* versioned
* Dropped heavy Makefile.in-patch, now handled through updated debian/rules
* [Debconf translation updates]
* Spanish; (Miroslav Kure). Closes: #802777
-- Philipp Huebner <debalance@debian.org> Mon, 02 Nov 2015 20:06:21 +0100
ejabberd (15.09-2) unstable; urgency=medium
[ Philipp Huebner ]
* Added AppArmor profile
* systemd support: added Requires=epmd.service to service file
[ Rhonda D'Vine ]
* Set team mail address as maintainer (Closes: #801415)
-- Philipp Huebner <debalance@debian.org> Thu, 15 Oct 2015 10:58:59 +0200
ejabberd (15.09-1) unstable; urgency=medium
* Upload to unstable
* Added entry in NEWS
-- Philipp Huebner <debalance@debian.org> Wed, 07 Oct 2015 12:41:43 +0200
ejabberd (15.09-1~exp1) experimental; urgency=low
* Imported Upstream version 15.09
* Refreshed patches for 15.09
* Moved all Recommends to Suggests
* Suggest erlang-oauth2
* Removed doc-base because documentation is now only available online at
http://docs.ejabberd.im/
* Added src.ext_mod.erl.patch to fix support for upstream modules
-- Philipp Huebner <debalance@debian.org> Sat, 03 Oct 2015 08:24:28 +0200
ejabberd (15.07-1~exp1) experimental; urgency=low
* Imported Upstream version 15.07 (Closes: #792147)
* Complete overhaul of all patches for 15.07
* Adjusted debian/rules and debian/docs to new upstream release
* Added patch to use packaged version of rebar
* Moved several packages from Depends: to Recommends:
* Dropped erlang-jiffy and --enable-json because erlang-jiffy is only
used when --enable-json is specified, and --enable-json has no effect
in the community edition
* Added support for systemd (Closes: #772037)
-- Philipp Huebner <debalance@debian.org> Fri, 28 Aug 2015 17:49:20 +0200
ejabberd (15.03-2) unstable; urgency=low
[ Christian Perrier ]
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #789757
* [Debconf translation updates]
* Spanish; (Badlop). Closes: #793310
* Swedish (Martin Bagge). Closes: #793453
* Russian (Sergey Alyoshin). Closes: #793591
* Danish (Joe Hansen). Closes: #794507
* French (Jean-Pierre Giraud). Closes: #794515
* Turkish (Mert Dirik). Closes: #794550
* German (Torsten Werner). Closes: #794599
* Italian (Beatrice Torracca). Closes: #794685
* Dutch; (Frans Spiesschaert). Closes: #794712
* Brazilian Portuguese; (Adriano Rafael Gomes). Closes: #794970
* Portuguese; (Américo Monteiro). Closes: #795005
[ Philipp Huebner ]
* convert package to use dh_installinit (Closes: #788007)
* init script: replace echo with log_daemon_msg
* web admin console now uses https by default
* ejabberdctl can now handle shell metacharacters in passwords
(Closes: #792831)
-- Philipp Huebner <debalance@debian.org> Sun, 09 Aug 2015 11:35:07 +0200
ejabberd (15.03-1) unstable; urgency=medium
* Include upstream patch to fix logging of nicknames in muc logs
(Closes: #706897)
* Updated homepage field in debian/control (Closes: #784775)
* Adjust logrotate postrotate command in case ejabberd is not running
(Closes: #786588)
* Debconf now checks for valid JIDs (Closes: #605404)
-- Philipp Huebner <debalance@debian.org> Mon, 22 Jun 2015 20:11:37 +0200
ejabberd (15.03-1~exp2) experimental; urgency=low
* Enable redis client
-- Philipp Huebner <debalance@debian.org> Mon, 27 Apr 2015 17:51:21 +0200
ejabberd (15.03-1~exp1) experimental; urgency=low
* New upstream release
* Update patches for ejabberd 15.03
* Drop debian/ejabberd.8 as there is no "ejabberd" executable anymore
* Import ufw profile from Ubuntu
* Debconf now checks for valid JIDs
-- Philipp Huebner <debalance@debian.org> Tue, 21 Apr 2015 19:27:57 +0200
ejabberd (14.07-4) unstable; urgency=medium
[ Holger Weiss ]
* Avoid hanging c2s processes (Closes: #771808)
-- Philipp Huebner <debalance@debian.org> Thu, 04 Dec 2014 07:40:52 +0100
ejabberd (14.07-3) unstable; urgency=medium
* Don't depend on /usr/share/doc during postinst (Closes: #764974)
* Added patch for CVE-2014-8760 (Closes: #767535)
* Don't let "reopen-log" command rotate logs and disable ejabberd's internal
log rotation in default cofiguration (Closes: #768462)
* (Re-)Enable TLS by default but disable SSLv3
-- Philipp Huebner <debalance@debian.org> Thu, 13 Nov 2014 10:59:18 +0100
ejabberd (14.07-2) unstable; urgency=medium
* Enable IPv6 in default configuration
* Fix init: stopping should succeed if the program is not running
* Fix init: only start ejabberd if not already running
* Recommend ejabberd-contrib
* Update README.Debian (Closes: #624793)
* Backport upstream fix for "ldap_deref_aliases"
* Call erlang-depends in debian/rules and reduce hardcoded dependencies
* Updated Standards-Version: 3.9.6 (no changes needed)
-- Philipp Huebner <debalance@debian.org> Wed, 01 Oct 2014 15:06:49 +0200
ejabberd (14.07-1) unstable; urgency=low
* New upstream release (Closes: #503313, #539409, #610532, #706897, #712145,
#722478, #746029, #746043, 746073, #747673)
* Change default EJABBERD_NODE back to "ejabberd" (Closes: #757858)
* Suppress misleading warning during postinst (Closes: #598332)
* Declare package source format as 3.0 (quilt)
* Switch to debhelper 9
* Drop obsolete patches for older releases
* Add new patches to make 14.07 build and work
* Drop custom scripts in favour of upstream ones
* Drop custom config+init in favour of upstream ones (Closes: #744084,
#517178, #738496)
* Adjust packaging to new upstream release
* Update (Build-)Depends and Standards-Version
* Update copyright
* Update maintainer scripts
* Update TODO
* Update NEWS
* Fix watch file
* Clean up packaging
* Add Provides: xmpp-server to debian/control (Closes: #737762)
-- Philipp Huebner <debalance@debian.org> Sat, 30 Aug 2014 01:40:09 +0200
ejabberd (2.1.11-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* New upstream release (closes: #654853).
* Update mod_admin_extra module to revision 1126.
* Provide custom implementation of xmerl_regexp:sh_to_awk/1
(closes: #670307).
* Refresh reopen-log.patch
* Add use_dpkg_buildflags.patch (thanks to Simon Ruderich,
closes: #664034).
* Explain the "fqdn" configuration file option which has to be used
in certain setups for the SCRAM-SHA-1 to work with complying clients.
Mention this fact in the NEWS file. (Closes: #706590)
* Add upstream patch fixing incorrect escaping of a single quote character
in SQL queries generated by the ODBC storage backend (closes: #708151,
thanks to Vladislav Chugunov).
[ Gerfried Fuchs ]
* Add upstream patches disabling SSLv2 and weak cyphers in TLS driver
(closes: #722105).
* New upstream release made these patches obsolete:
relax-digest-uri-handling.patch, fix-parsing-split-https-requests.patch,
fix-odbc-escaping.patch
-- Gerfried Fuchs <rhonda@debian.org> Thu, 17 Oct 2013 12:57:47 +0200
ejabberd (2.1.10-5) unstable; urgency=low
[ Konstantin Khomoutov ]
* Add patch fixing parsing of optional parameters in SCRAM SHA-1 headers
(closes: #705613, thanks to Stephen Röttger for both writing the
original patch and backporting it to 2.1.10).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Thu, 25 Apr 2013 15:31:59 +0000
ejabberd (2.1.10-4) unstable; urgency=low
[ Konstantin Khomoutov ]
* Do not run ejabberdctl as root in prerm and logrotate scripts
(closes: #691125, thanks to Michael Stapelberg and Felix Geyer).
* Add upstream patch fixing receiving JPEG vCard photos via LDAP
(closes: #660186).
* Add upstream patch fixing parsing HTTPS requests split into
multiple packets (closes: #698309).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Sat, 16 Feb 2013 16:59:21 +0000
ejabberd (2.1.10-3) unstable; urgency=low
[ Konstantin Khomoutov ]
* Provide custom implementation of xmerl_regexp:sh_to_awk/1
(closes: #670307).
* Add use_dpkg_buildflags.patch (thanks to Simon Ruderich,
closes: #664034).
* Add relax-digest-uri-handling.patch (closes: #654853).
* Add Slovak translation (thanks to Slavko, closes: #647115).
* Add Italian translation (thanks to Beatrice Torracca, closes: #682987).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Sun, 20 May 2012 14:51:12 +0400
ejabberd (2.1.10-2) unstable; urgency=low
[ Gerfried Fuchs ]
* Upload to unstable (closes: #657759).
* Remove code for #368414 from postinst, 1.1.1-3 is ancient history
(closes: #656826)
[ Konstantin Khomoutov ]
* Update Dutch translation (thanks to Jeroen Schot, closes: #657590).
* Enable hardened building of C drivers by using dpkg-buildflags
(thanks to Moritz Muehlenhoff, closes: #657525).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Wed, 01 Feb 2012 01:50:40 +0400
ejabberd (2.1.10-1) experimental; urgency=low
[ Konstantin Khomoutov ]
* New upstream release.
* Update mod_admin_extra to revision 1123.
[ Gerfried Fuchs ]
* Bump erlang-dev Build-Depends version to >= 1:15.b.
-- Gerfried Fuchs <rhonda@debian.org> Sun, 08 Jan 2012 11:45:38 +0100
ejabberd (2.1.9-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* New upstream release.
* Remove obsoleted version.patch.
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Mon, 03 Oct 2011 20:27:12 +0400
ejabberd (2.1.8-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* New upstream release.
* Remove patch fixing DSA-2248-1 (CVE-2011-1753)
as the fix is now integrated upstream.
* Drop patches from OLPC project implementing @recent@ and @online@
shared roster groups; support for @online@ is now intergated upstream.
* Add patch fixing version string where applicable (EJAB-1484).
* Bump standards version to 3.9.2
[ Gerfried Fuchs ]
* Add recommended targets build-arch and build-indep to debian/rules.
* Fix spelling error in manpage noticed by lintian.
-- Gerfried Fuchs <rhonda@debian.org> Sun, 11 Sep 2011 16:16:55 +0200
ejabberd (2.1.6-2.1) unstable; urgency=high
* Non-maintainer upload by the Security Team.
* Disable entity expansion completely to prevent against
billion laugs DoS attack (CVE-2011-1753).
-- Nico Golde <nion@debian.org> Mon, 30 May 2011 23:53:46 +0200
ejabberd (2.1.6-2) unstable; urgency=low
* Artifically set HOME environment variable in debian/rules
if it is not set--this is required for the erlexec binary
to be able to run successfully (closes: #620683).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Wed, 06 Apr 2011 01:32:42 +0400
ejabberd (2.1.6-1) unstable; urgency=low
* New upstream release.
* Remove obsolete patches.
* Update mod_admin_extra to revision 1106.
* Conflict with ejabberd-mod-shared-roster-ldap which is now included.
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Tue, 14 Dec 2010 17:45:08 +0300
ejabberd (2.1.5-3) unstable; urgency=low
[ Konstantin Khomoutov ]
* Add patch http-poll-binary-parse.patch fixing EJAB-1325 (closes: #601094).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Sat, 23 Oct 2010 17:05:48 +0400
ejabberd (2.1.5-2) unstable; urgency=low
[ Gerfried Fuchs ]
* New debconf translation:
- Danish by Joe Hansen (closes: #592271)
* Run debconf-updatepo on all other translations.
[ Konstantin Khomoutov ]
* Remove /var/run/ejabberd on package purge (LP: #615473).
* Add mod-vcard-ldap-photo.patch fixing EJAB-1258 (LP: #613854).
* Bump standards version to 3.9.1.
-- Gerfried Fuchs <rhonda@debian.at> Wed, 15 Sep 2010 21:03:06 +0200
ejabberd (2.1.5-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* New upstream release.
* Remove obsolete erlang-otp-r14-ssl.patch
* Refresh patches: reopen-log.patch, shared_roster_online.patch
shared_roster_recent.patch
* Bump standards version to 3.9.0.
* Remove COPYING file installed by upstream Makefile
* Remove autogenerated src/ejabberd.init
* Add upstream patch fixing EJAB-1284 (closes: #591431).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Tue, 03 Aug 2010 19:55:25 +0400
ejabberd (2.1.4-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* Do not prevent ejabberd_debug from being installed and used
as this was implemented upstream as the default behavior.
* Add build dependency on erlang-parsetools.
* Add 'sharedscripts' option to logrotate config.
* Update VCS references in control file to point to git.deb.at.
* Add group sticky bit to permissions on the log directory --
this should make log files owned by the group "adm".
* Explicitly set umask to 027 before starting erl.
* Add patch with fix for EJAB-953 (closes: #590389).
* Fix call to setup_ejabberd in postinst.
* Fix owner/permissions for log files when upgrading.
* Minor fixes and clarifications in ejabberdctl.8 manual page.
* Refresh reopen-log.patch
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Mon, 26 Jul 2010 20:36:14 +0400
ejabberd (2.1.3-2) unstable; urgency=low
[ Gerfried Fuchs ]
* New patch fix_examples fixing two example scripts.
* Call set -e explicitly in debian/config instead of on the hashbang line.
[ Konstantin Khomoutov ]
* Add reopen-log.patch which fixes reopening of
ejabberd log files by `ejabberdctl reopen-log` (closes: #580951).
* Replace ${erlang-nox:Depends} with ${erlang:Depends}
in debian/control to generate a minimal list of Erlang
packages ejabberd depends on (closes: #581909).
* Reduce the set of Erlang packages required to build ejabberd.
* Disable ejabberd_debug module and exclude it from packaging.
-- Gerfried Fuchs <rhonda@debian.at> Thu, 20 May 2010 21:20:27 +0200
ejabberd (2.1.3-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* New upstream release.
* Remove obsolete c2s-p1-fsm.patch
* Remove obsolete ejabberdctl-help-dashes.patch
* Update mod_admin_extra to revision 1078
* Refresh shared_roster_recent.patch
* Refresh shared_roster_online.patch
* Clarify how to do mixed IPv4/IPv6 setup of ejabberd listeners
as suggested by Marc Dequènes in the discussion of #573801.
[ Gerfried Fuchs ]
* Remove Torsten Werner from maintainer field on his own wish - thanks for
your work so far! (closes: #578722)
* Promote Konstantin to Maintainer to best fit reality. Enjoy. :)
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Tue, 06 Apr 2010 13:00:03 +0400
ejabberd (2.1.2-3) unstable; urgency=low
[ Konstantin Khomoutov ]
* Tighten dependency on debhelper to >= 7.3~
(closes: #569152).
* Add global option max_fsm_queue set to 1000
to the configuration file (amendment to the fix for #568383).
* Use $remote_fs facility in init-script as ejabberd uses files
under /urs (fixes lintian error).
* Set place for Erlang crash dumps in ejabberdctl.
[ Gerfried Fuchs ]
* Bump Standards-Version to 3.8.4.
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Sun, 28 Feb 2010 22:11:26 +0300
ejabberd (2.1.2-2) unstable; urgency=high
* Integrate upstream patches for EJAB-1173,
fixing CVE-2010-0305 (closes: #568383).
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Thu, 04 Feb 2010 03:38:02 +0300
ejabberd (2.1.2-1) unstable; urgency=low
[ Gerfried Fuchs ]
* New upstream release.
* Improve debian/copyright file.
[ Konstantin Khomoutov ]
* Refresh shared_roster_online.patch and shared_roster_recent.patch
* Add ejabberdctl-help-dashes.patch which allows to spell commands
passed to `ejabberdctl help` using "-" as a word separator.
* Document connected-users-info and stop-kindly ejabberdctl commands.
* Document --concurrent option of ejabberdctl.
* Shorten Vcs-Browser string in debian/control
-- Gerfried Fuchs <rhonda@debian.at> Wed, 20 Jan 2010 20:56:15 +0100
ejabberd (2.1.1-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* New upstream release.
This also fixes a bug in ejabberdctl (closes: #560824).
* Update mod_admin_extra to upstream revision 1049.
* Remove obsolete patches (those backported from 2.1.1).
* Suggest imagemagick instead of recommending it (closes: #560889).
[ Gerfried Fuchs ]
* Switch Vcs-* fields to point to new git repository. All the conversion
work was actually done by Konstantin.
* Call debconf-updatepo.
-- Gerfried Fuchs <rhonda@debian.at> Thu, 14 Jan 2010 20:40:53 +0100
ejabberd (2.1.0-2) unstable; urgency=low
[ Konstantin Khomoutov ]
* Set EJABBERD_DOC_PATH in the ejabberd script
* Pull the following patches from upstream:
- routing-speedup.patch: Speeds up routing of messages (EJAB-1114)
- mod-pubsub-odbc.patch: Fixes service discovery browsing with PEP-capable
clients (EJAB-1115)
- req-starttls-zlib-clash.patch: Fix failure of the c2s listener
(EJAB-1118, closes: 559727)
- http-tls-leaks.patch: Fix memory and port leaks in web administration
interface (EJAB-1119, closes: #547306)
- multiple-pep-last-items.patch: Do not send PEP last items multiple
times (EJAB-1116)
-- Gerfried Fuchs <rhonda@debian.at> Thu, 10 Dec 2009 23:45:09 +0100
ejabberd (2.1.0-1) unstable; urgency=low
[ Konstantin Khomoutov ]
* New upstream release (Closes: #519858).
This also adds support for LDAPS upstream (Closes: #526145).
* Do not depend on cdbs anymore, port debian/rules to dh+quilt,
remove build dependency on patchutils, use erlang-depends.
* Bump debhelper version to 7, standards base to 3.8.3
* Depend on erlang R13B.
* Recommend imagemagick (for captcha support).
* Remove deprecated patches (ssl.patch patch, dynamic_compile_loglevel.patch,
ldaps.patch, update.patch, proxy.patch, caps.patch, convert.patch,
s2s.patch).
* Replace mod_ctlextra with mod_admin_extra.
* Use upstream inetrc file.
* Bring debian/ejabberd.cfg and ejabberdctl in sync with upstream.
* Update ejabberdctl manual page.
* Provide NEWS file.
* Rework README.Debian:
* Group all information into sections.
* Describe issues with epam binary (Closes: #502791).
* Discuss how to use DBMS backends (Closes: #540915, #507144).
* Discuss upgrading from 2.0.x series.
* Implement PID file management (Closes: #519858).
* Make logrotate process all files matching "*.log".
* Improve init script:
* Make init script LSB-compliant.
* Implement "live" target which allows to run ejabberd in foreground.
* Make captcha.sh use bash explicitly.
* Rework node-generation for ejabberdctl to fix ejabberd's atom table
overflows while preserving the possibility to run several versions
of ejabberdctl concurrently as before.
* Add webadmin patch restoring compatibility with Erlang/OTP <= R12B-4.
* Integrate upstream patch for EJAB-1106.
* Add upstream patch for EJAB-1098.
* Add upstream patch for EJAB-1045.
* Add Konstantin Khomoutov to uploaders.
* Add Japanese debconf translation (thanks to Hideki Yamane)
(Closes: #558071).
[ Gerfried Fuchs ]
* Build-Depend on po-debconf so po2debconf can be called.
-- Gerfried Fuchs <rhonda@debian.at> Fri, 04 Dec 2009 18:22:49 +0100
ejabberd (2.0.5-2) unstable; urgency=low
* Added myself to Uploaders.
* Added debian/README.source about quilt.
* Updated Standards-Version to 3.8.2.
* Lintian hints:
+ Remove +ssh from Vcs-Svn.
+ Remove path from ejabberdctl in postinst.
* Rewrote Description a little bit.
-- Gerfried Fuchs <rhonda@debian.at> Fri, 07 Aug 2009 14:37:42 +0200
ejabberd (2.0.5-1.1) unstable; urgency=low
* Non-maintainer upload to fix compatibility with Erlang/OTP R13B
(dynamic_compile_loglevel.patch added).
* Raise requirement for the erlang-dev package version to >= 1:13.b
to simplify transition of Debian to Erlang/OTP R13B.
-- Konstantin Khomoutov <flatworm@users.sourceforge.net> Sun, 10 May 2009 01:32:38 +0400
ejabberd (2.0.5-1) unstable; urgency=high
* new upstream release
- Fixes 'CVE-2009-0934: Cross-site scripting (XSS) vulnerability in
ejabberd' (Closes: #520852)
- Fixes 'starttls hangs' (Closes: #516528, #518079)
* Disable patch ldaps.patch because it does not apply any more.
* Refresh all other patches.
-- Torsten Werner <twerner@debian.org> Sun, 05 Apr 2009 22:53:46 +0200
ejabberd (2.0.3-2) unstable; urgency=low
* Remove Sergei from Uploaders field as requested by himself.
-- Torsten Werner <twerner@debian.org> Sun, 15 Feb 2009 21:47:35 +0100
ejabberd (2.0.3-1) experimental; urgency=low
* New upstream release.
-- Sergei Golovan <sgolovan@debian.org> Thu, 15 Jan 2009 19:44:58 +0300
ejabberd (2.0.2-3) experimental; urgency=low
* Merge changes from version 2.0.1-5 from unstable.
* Document ERL_OPTIONS in /etc/default/ejabberd and README.Debian.
(Closes: #503012)
-- Torsten Werner <twerner@debian.org> Sun, 11 Jan 2009 17:19:28 +0100
ejabberd (2.0.2-2) experimental; urgency=low
* Added option {keepalive, true} to ssl socket in LDAPS support patch.
This helps not to loose long-term connections to LDAPS server (thanks
to Alex Mauer for a suggestion).
-- Sergei Golovan <sgolovan@debian.org> Fri, 12 Sep 2008 19:14:17 +0400
ejabberd (2.0.2-1) experimental; urgency=low
* New upstream release.
* Protected hostname -s and hostname -d calls in postinst script to prevent
its failure in case when hostname is incorrectly configured. It's harmless
to replace hostname by "localhost" because it's used only for generating
a reference SSL certificate which is to be replaced by a proper one.
-- Sergei Golovan <sgolovan@debian.org> Fri, 29 Aug 2008 21:15:26 +0400
ejabberd (2.0.1-6) unstable; urgency=high
* Add backported patch pubsub_upgrade_tables.patch that fixes the broken
upgrade of ejabberd from Etch. (Closes: #507615)
-- Torsten Werner <twerner@debian.org> Sat, 07 Feb 2009 20:02:20 +0100
ejabberd (2.0.1-5) unstable; urgency=low
* Added Brazilian Portuguese debconf templates translation
(closes: #501751).
* Protected hostname -s and hostname -d calls in postinst script to prevent
its failure in case when hostname is incorrectly configured. It's harmless
to replace hostname by "localhost" because it's used only for generating
a reference SSL certificate which is to be replaced by a proper one.
* Added option {keepalive, true} to ssl socket in LDAPS support patch.
This helps not to loose long-term connections to LDAPS server (thanks
to Alex Mauer for a suggestion).
-- Sergei Golovan <sgolovan@debian.org> Fri, 10 Oct 2008 09:48:34 +0400
ejabberd (2.0.1-4) unstable; urgency=low
* Added Basque debconf templates translation (closes: #492129).
* Removed unneeded package grep-dctrl from build-dependencies (a call to
erlang-depends has replaced it long time ago).
* Updated Czech debconf templates translation (closes: #492495).
* Added a unique suffix to ejabberdctl nodes to allow several commands to
run in parallel.
* Fixed a bug in building mod_http_fileserver, which made it completely
unusable.
* Added missing description of reopen-weblog ejabberdctl command to
ejabberdctl.8 manpage.
-- Sergei Golovan <sgolovan@debian.org> Mon, 04 Aug 2008 14:10:00 +0400
ejabberd (2.0.1-3) unstable; urgency=low
[ Sergei Golovan ]
* Synced mod_ctlextra module with upstream (closes: #488991).
* Updated Portuguese debconf templates translation (closes: #487822).
* Switched off autoupdating debian/control by cdbs to make
build-dependencies consistent.
* Added Swedish debconf templates translation (closes: #490681).
* Updated Russian debconf templates translation (closes: #491424).
* Updated Spanish debconf templates translation.
* Added Galician debconf templates translation (closes: #490855).
* Added Vietnamese debconf templates translation (closes: #491056).
* Cleaned up LDAPS patch and fixed a bug with leaking SSL sockets
(closes: #490059).
* Don't return from init script until at least Erlang VM is started to make
subsequent checks for running ejabberd simpler.
* Added an additional check for starting Erlang VM and don't try to register
admin user if ejabberd isn't started. This allows to shorten waiting
interval during upgrade if it isn't desirable to start ejabberd
automatically (closes: #462357).
* Added Turkish debconf templates translation (closes: #491493).
* Added Finnish debconf templates translation (closes: #491652).
* Install SQL database schemas to examples directory.
* Fixed crash in checking relational DB modules (closes: #491664).
[ Torsten Werner ]
* Updated German debconf templates translation.
-- Sergei Golovan <sgolovan@debian.org> Wed, 23 Jul 2008 16:32:03 +0400
ejabberd (2.0.1-2) unstable; urgency=low
* Improved a patch which removes message rejecting intervals for
server-to-server recipients.
* Bumped standards version to 3.8.0.
-- Sergei Golovan <sgolovan@debian.org> Fri, 20 Jun 2008 10:07:29 +0400
ejabberd (2.0.1-1) unstable; urgency=low
* New upstream bugfix release.
* Refreshed patches, removed those which were included into upstream.
* Added _2 suffix to get-orig-source target in debian/rules (temporarily).
* Fixed debian/watch to cover current release version (with _2 suffix).
* Fixed mod_ctlextra to work with ejabberd 2.0.1 (changed session record
definition).
* Added new ejabberdctl commands (both new in 2.0.1 and in mod_ctlextra)
to ejabberdctl manual page.
* Changed restart branch in init.d script to perform full Erlang VM stop
and start again (this allows to apply changes in /etc/default/ejabberd
if any during ejabberd restart).
* Clarified -sname and -name Erlang option usage by ejabberd and ejabberdctl
in their manual pages (closes: #482904).
* Added BUGS section to ejabberd manual page with a short description of
the most common cases of ejabberd start failures (closes: #481819).
-- Sergei Golovan <sgolovan@debian.org> Sun, 08 Jun 2008 16:32:18 +0400
ejabberd (2.0.0-7) unstable; urgency=low
[ Sergei Golovan ]
* Installed eldap.hrl header. It is necessary to build some external modules
for ejabberd.
* Moved headers which are in subdirectories of src directory to
corresponding subdirectory of /usr/lib/ejabberd/include/ as they are
usually included with subdirectory prepended.
* Included a patch which adds LDAPS support and added {ldap_encrypt} and
{ldap_port} example options to ejabberd config file (closes: #477918).
* Added an additional info on how to use ejabberd headers to README.Debian.
* Changed section in doc-base registration file to Network/Communication.
* Don't use HOSTNAME variable in postinstall and debconf config scripts to
prevent confusion with the same bash standard environment variable.
* Removed empty preinstall maintainer script.
* Fixed minus signs in ejabberd and ejabberdctl manual pages.
* Updated Russian debconf templates translation.
[ Torsten Werner ]
* Updated German debconf templates translation.
* Update Vcs headers in debian/control.
-- Sergei Golovan <sgolovan@debian.org> Sat, 17 May 2008 23:30:17 +0400
ejabberd (2.0.0-6) unstable; urgency=low
* Replaced a patch for proxy65 module with nicer one (thanks to Evgeniy
Khramtsov).
* Added a patch for S2S module to make STARTTLS working with Erlang R12B.
* Added a patch by upstream fixes crash when browsing the Update page in
Erlang R12B.
* Fixed ODBC patch to work with Erlang R11B also.
-- Sergei Golovan <sgolovan@debian.org> Tue, 11 Mar 2008 15:10:42 +0300
ejabberd (2.0.0-5) experimental; urgency=low
* Turned unnecessary error messages in mod_caps module into debug messages.
* Added a few patches to shared roster module and also added mod_ctlextra
(a module which offers many more or less useful commands to ejabberdctl)
following the discussion in the following thread:
http://lists.debian.org/debian-edu/2008/03/msg00017.html
-- Sergei Golovan <sgolovan@debian.org> Fri, 07 Mar 2008 20:30:07 +0300
ejabberd (2.0.0-4) experimental; urgency=low
* Updated French debconf templates translation (closes: #468788).
* Disabled epoll by default in /etc/default/ejabberd.
* Increased default maximum number of conference room occupants to 500.
Given increasing popularity of XMPP old default value 200 is too low.
* Disabled SMP support in ejabberd by default. It isn't necessary in most
cases but can be less reliable.
* Enabled PAM authentication support (yet needs to be refined).
-- Sergei Golovan <sgolovan@debian.org> Mon, 03 Mar 2008 22:54:48 +0300
ejabberd (2.0.0-3) experimental; urgency=low
* Increased S2S timeouts. Defaults seems to be too short.
* Removed a 5-minute delay between a remote server connect failure and the
next connection attempt. It causes more harm than good.
* Changed ownership of ejabberd config directory and SSL certificate to
root:ejabberd and mode to to make sure they aren't overwritten by running
ejabberd.
* Remove an SSL certificate on package purge. It is assumed that it's a
generated certificate, so the removal is unconditional.
-- Sergei Golovan <sgolovan@debian.org> Sun, 24 Feb 2008 10:40:03 +0300
ejabberd (2.0.0-2) experimental; urgency=low
* Saved a little bit of resources by not starting ssl module which isn't
used by ejabberd anymore.
* Added several new variables to ejabberd script and default settings
following upstream.
* Added 'debug' option to ejabberdctl script which attaches Erlang shell to
already running ejabberd server.
* Removed useless README and /etc/ejabberd/ejabberdctl.cfg files from the
binary package (/etc/ejabberd/ejabberdctl.cfg content is moved to
/etc/default/ejabberd).
* Added a patch which makes proxy65 module working with Erlang R12B.
* Fixed position of override section in ejabberd.cfg and uncommented proxy65
module (with adding restrictive options).
-- Sergei Golovan <sgolovan@debian.org> Fri, 22 Feb 2008 13:51:14 +0300
ejabberd (2.0.0-1) experimental; urgency=low
* New upstream release.
-- Sergei Golovan <sgolovan@debian.org> Thu, 21 Feb 2008 18:36:46 +0300
ejabberd (1.1.4-6) unstable; urgency=low
* Loosened build dependencies to make backporting to etch easier.
* Added a requirement for $remote_fs into init.d script because ejabberd
needs mounted /usr to run.
* Added a patch which allows ODBC to work with Erlang R12B.
* Clarified debconf messages (closes: #390206).
* Added a notice about hostname change to README.Debian and included erlang
node conversion utility to the binary package (closes: #457097).
* Added a patch which allows to use certificate chain files for encrypted
connections (closes: #466676).
-- Sergei Golovan <sgolovan@debian.org> Thu, 21 Feb 2008 18:21:32 +0300
ejabberd (1.1.4-5) unstable; urgency=low
* Do not remove /etc/ejabberd on package purge to preserve user files if
any (closes: #460459).
* Bumped standards version to 3.7.3.
* Added homepage header to debian control file.
* Fixed unnecessary space in doc-base.
* Changed default setting for nicknames which can be registered to 'none'
(which effectively forbids registration) as this setting is more safe
(closes: #458627).
* Fixed name section of ejabberd and ejabberdctl manual pages.
-- Sergei Golovan <sgolovan@debian.org> Sun, 13 Jan 2008 01:37:19 +0300
ejabberd (1.1.4-4) unstable; urgency=low
* Added a patch which fixes access rule check in mod_irc.
* Added a patch which fixes ejabberd build using erlang R12B-0.
* Increased number of erlang ports in /etc/ejabberd/default. The default
value of 1024 allows too few simultaneous connections (from 300 to 500
for both clients and servers depending of whether they use SSL or traffic
compression).
* Fixed shell backquotes in ejabberd and ejabberdctl manual pages. Also
bumped their versions to 1.1.4.
* Added a note about binding to privileged ports to README.Debian.
* Fixed a race condition between starting log handler and port listener.
Otherwise, error reports about port binding can't get into log file
(closes: #458518).
-- Sergei Golovan <sgolovan@debian.org> Tue, 01 Jan 2008 17:09:57 +0300
ejabberd (1.1.4-3) unstable; urgency=low
* Applied a patch by upstream which fixes usage of relational databases in
ejabberd modules while using internal or LDAP-based authentication
(closes: #446848). The patch was adopted from ejabberd SVN by Andreas
Oberritter.
-- Sergei Golovan <sgolovan@debian.org> Tue, 16 Oct 2007 10:34:07 +0400
ejabberd (1.1.4-2) unstable; urgency=low
* Moved ejabberd application directory from
/usr/lib/erlang/lib/ejabberd-1.1.4 to /usr/lib/ejabberd to avoid conflicts
of modules names (specifically, eldap module conflicts with shiiped in Yxa
SIP server).
-- Sergei Golovan <sgolovan@debian.org> Fri, 12 Oct 2007 10:07:19 +0400
ejabberd (1.1.4-1) unstable; urgency=low
* New upstream release.
* Fixed debian/watch file.
* Removed ejabberd_sm.diff patch. This makes ejabberd using recommended
error condition <service-unavailable/> instead of
<feature-not-implemented/>. There was sufficient time to fix broken
clients.
* Removed perl-path.diff, shaper.diff, ejabberd_http_poll.diff, eldap.diff,
sql_escape.diff patches since they are included into upstream release.
* Redefined HOME environment variable to fix Erlang compiler warnings in
case when HOME points to an existent inaccessible directory.
* Bumped debhelper compatibility level to 5.
-- Sergei Golovan <sgolovan@debian.org> Sun, 09 Sep 2007 14:25:16 +0400
ejabberd (1.1.2-10) unstable; urgency=low
[ Sergei Golovan ]
* Added Sergei Golovan <sgolovan@debian.org> to uploaders list.
* Included a fix for IE bug (it sends zero length queries which cause
error 404) from http://www.jabber.ru/bugzilla/attachment.cgi?id=205
(closes: #428864).
* Included experimental Personal Eventing via Pubsub (XEP-0163) support
using patch from https://svn.process-one.net/ejabberd-modules/pep/.
-- Sergei Golovan <sgolovan@debian.org> Mon, 27 Aug 2007 20:19:43 +0400
ejabberd (1.1.2-9) unstable; urgency=low
[ Sergei Golovan ]
* Added binary package dependency on erlang-abi-* virtual package to
prevent installation of ejabberd which uses incompatible erlang ABI.
* Included ejabberd headers to binary package to make building external
modules for ejabberd possible (closes: #428081).
-- Torsten Werner <twerner@debian.org> Sun, 10 Jun 2007 19:19:20 +0400
ejabberd (1.1.2-8) unstable; urgency=high
[ Torsten Werner ]
* Remove redundant Build-Depends.
* Use erlang-depends for calculating Depends now.
* Change email address of Christophe Romain in man page as requested by
himself.
* Add XS-X-Vcs-Svn header to debian/control.
[ Sergei Golovan ]
* Security fix, mentioned in 1.1.2-5 was backported from SVN and not
from 1.1.3, where it is incomplete (the bug affects ejabberd only if
users' rosters are stored in relational database, and not in Mnesia,
which is default).
* Moved patches to debian directory. This fixes cleaning up
after build process. (Closes: #424193)
* Moved creating user ejabberd from preinst to postinst because preinst
cannot rely on existence of adduser package.
* Added a comment to ejabberd.cfg concerning UTF-8 encoding.
* Unfuzzied one string in russian debconf translation (closes: #408410).
* Removed annoying message about existing SSL certificate.
* Fixed references to ejabberd installation and operation guide in manual
pages (closes: #416050).
* Backup ejabberd database on package removal or upgrade to a subdirectory
of /var/backups instead of /var/tmp (closes: #409916).
* Do not change /etc/ejabberd, /var/lib/ejabberd and /var/log/ejabberd
ownership and permissions if they are overridden using dpkg-statoverride
(closes: #416178).
* Conditionally source /usr/share/debconf/confmodule in postrm script as
debconf isn't an essential package (closes: #416743).
* Included Portuguese translation of debconf messages (closes: #416779).
-- Torsten Werner <twerner@debian.org> Fri, 18 May 2007 13:44:53 +0200
ejabberd (1.1.2-7) unstable; urgency=low
* Rebuild the package with newer erlang.
-- Torsten Werner <twerner@debian.org> Fri, 13 Apr 2007 20:14:12 +0200
ejabberd (1.1.2-6) unstable; urgency=high
[ Sergei Golovan ]
* Fixed users database and logs directoriy permissions (closes: #412583).
-- Torsten Werner <twerner@debian.org> Tue, 27 Feb 2007 08:28:31 +0300
ejabberd (1.1.2-5) unstable; urgency=high
* apply security fix backported from version 1.1.3
(http://ejabberd.jabber.ru/ejabberd-1.1.3); thanks to Sergei
-- Torsten Werner <twerner@debian.org> Sat, 3 Feb 2007 23:08:08 +0100
ejabberd (1.1.2-4) unstable; urgency=medium
[ Sergei Golovan ]
* Fixed bug with LDAP support, thanks to Evgeniy Khramtsov. (Closes: #399659)
* Documented quilt patches in patches/ directory.
-- Torsten Werner <twerner@debian.org> Wed, 22 Nov 2006 13:44:13 +0300
ejabberd (1.1.2-3) unstable; urgency=low
* Add patch http_bind.diff, thanks to Matthew Harrell. (Closes: #399560)
* Updated debian/control from debian/control.in.
-- Torsten Werner <twerner@debian.org> Mon, 20 Nov 2006 20:11:08 +0100
ejabberd (1.1.2-2) unstable; urgency=medium
[ Sergei Golovan ]
* backported bugfix for HTTP-polling from the ejabberd author
[ Torsten Werner ]
* Set urgency to medium.
-- Torsten Werner <twerner@debian.org> Sun, 8 Oct 2006 11:32:25 +0200
ejabberd (1.1.2-1) unstable; urgency=low
[ Sergei Golovan ]
* new upstream release
* added spanish translation
* removed no longer needed mod_muc_log patch
* added variable ERLANG_NODE, which allows to override default
ejabberd node, to /etc/default/ejabberd file
* changed erlang node selection by ejabberdctl (in some cases
`hostname -s` and erlang's view of hostname are different, so
let ejabberd_ctl module find hostname), closes: #389635
* documented ERLANG_NODE variable in ejabberd and ejabberdctl manual
pages
* explicitly specify hostname in admin ACL
* improved admin user registering in debian/postinst. installation
is not interrupted if the user can't be registered, so, closes: #385020
* only call ucf and deluser on purge when they are available,
closes: #389756
* added check for running ejabberd before backup in debian/prerm,
closes: #389757
* added workaround for centericq users (replaced fetaure-not-implemented
error for service-unavailable in session management)
* backported bugfix for shapers from ejabberd SVN
-- Torsten Werner <twerner@debian.org> Wed, 04 Oct 2006 08:00:46 +0400
ejabberd (1.1.1-9) unstable; urgency=low
[ Miroslav Kure ]
* updated czech translation
[ Sergei Golovan ]
* replaced 'note' type in debconf template ejabberd/nomatch by 'error'
since it is more approppriate, closes: #388890
-- Torsten Werner <twerner@debian.org> Sat, 23 Sep 2006 10:42:03 +0400
ejabberd (1.1.1-8) unstable; urgency=medium
[ Sergei Golovan ]
* security fix! fixed vulnerability in mod_muc_log where users were
able to insert an HTML code to MUC weblogs (fix is backported from
ejabberd SVN)
* added LSB keyword section to init.d script
[ Torsten Werner ]
* setting urgency to medium because of a securetty issue
-- Torsten Werner <twerner@debian.org> Thu, 14 Sep 2006 07:20:39 +0200
ejabberd (1.1.1-7) unstable; urgency=low
* updated french translation, closes: #385811
* bugfix in postrm
-- Torsten Werner <twerner@debian.org> Sun, 10 Sep 2006 02:27:19 +0200
ejabberd (1.1.1-6) unstable; urgency=low
* add french translation, closes: #381900
* add czech translation, closes: #380525
* add dutch translation, closes: #381131
* updated debconf question ejabberd/user
* fix in debian/config
* make a backup of the database when removing or updating the package
* remove the actual database when purging
-- Torsten Werner <twerner@debian.org> Wed, 2 Aug 2006 15:20:14 +0200
ejabberd (1.1.1-5) unstable; urgency=low
[ Torsten Werner ]
* add target get-orig-source in debian/rules
* updated Standards-Version to 3.7.2, no changes needed
* use ucf for handling conffiles
* remove old cruft not needed any more
* use debconf to setup an admin account, partially fixes: #286110
* make bashism explicit
* minor cleanups in debian/rules
* renamed some files in debian/
* add german translation of the debconf template
[ Sergei Golovan ]
* use debconf to setup a served hostname
* added russian translation of the debconf template
-- Torsten Werner <twerner@debian.org> Sun, 23 Jul 2006 12:12:12 +0400
ejabberd (1.1.1-4) unstable; urgency=low
* updated Build-Depends for erlang 10.b.10
* switched to quilt for managing upstream patches
-- Torsten Werner <twerner@debian.org> Sat, 24 Jun 2006 21:06:59 +0200
ejabberd (1.1.1-3) unstable; urgency=low
[ Sergei Golovan ]
* moved ejabberd SSL certificate from /etc/ssl/certs to /etc/ejabberd,
closes: #368414
[ Torsten Werner ]
* upload to unstable
-- Torsten Werner <twerner@debian.org> Sat, 10 Jun 2006 18:13:34 +0200
ejabberd (1.1.1-2) experimental; urgency=low
[ Sergei Golovan ]
* changed Build-Depends from erlang-base-hipe to erlang-base
* fix for lintian complaint about incorrect usage of chown
[ Torsten Werner ]
* making Build-Depends and erlang:Depends more strict: they are working now
only with the latest versions of erlang
-- Torsten Werner <twerner@debian.org> Tue, 2 May 2006 21:00:47 +0200
ejabberd (1.1.1-1) experimental; urgency=low
* New upstream release
* applied changes from Sergei Golovan
* removed src/Makefile.in from Debians SVN because the changes have been
included upstream
-- Torsten Werner <twerner@debian.org> Mon, 1 May 2006 19:36:19 +0200
ejabberd (1.0.0-2) unstable; urgency=low
* downgraded erlang-Depends to erlang-runtime, closes: #361739
-- Torsten Werner <twerner@debian.org> Mon, 10 Apr 2006 20:52:45 +0200
ejabberd (1.0.0-1) unstable; urgency=low
* new upstream release, closes: #344330, #353989
- Server-to-server Encryption for Enhanced Security: STARTTLS +
SASL_EXTERNAL and STARTTLS + Dialback.
- Different certificates can be defined for each virtual host.
- Shared Roster groups support has been enhanced. New is the ability to
add all registered users to a Shared Roster group.
- Improved ODBC support.
- Support for vCard storage in ODBC has been added.
- New tool to convert an Mnesia-based installation to an ODBC compatible
relational database.
- Native PostgreSQL support.
- More XHTML 1.0 Transitional compliancy work is included.
- Documentation has been extended to cover more topics.
-- Torsten Werner <twerner@debian.org> Sun, 5 Mar 2006 10:20:50 +0100
ejabberd (0.9.8-1) unstable; urgency=low
* new upstream version
* added debian/watch
* merged some documentation and configuration fixes from Sergei Golovan
<sgolovan@nes.ru>
-- Torsten Werner <twerner@debian.org> Sat, 6 Aug 2005 19:39:59 +0200
ejabberd (0.9.1-2) unstable; urgency=low
* some fixes to the german translation, thanks to Patrick Dreker
<pdreker@debianforum.de> for pointing that out, closes: #317955
-- Torsten Werner <twerner@debian.org> Wed, 13 Jul 2005 21:53:16 +0200
ejabberd (0.9.1-1) unstable; urgency=low
* New upstream release, closes: #309526
* added --enable-odbc to configure
* small fix to init script
* thanks to Sergei Golovan <sgolovan@nes.ru> for helping
-- Torsten Werner <twerner@debian.org> Wed, 25 May 2005 23:55:28 +0200
ejabberd (0.9-2) unstable; urgency=low
* smoothed the upgrade procedure from 0.7.5
* added custom inetrc file (erlang R10 doesn't load /etc/resolv.conf when
running in -sname mode, making resolving of SRV record impossible),
thanks to Sergej Golovan, closes: #299533
* updated homepage
-- Torsten Werner <twerner@debian.org> Wed, 18 May 2005 00:16:22 +0200
ejabberd (0.9-1) unstable; urgency=low
* new upstream version, closes: #307652
-- Torsten Werner <twerner@debian.org> Tue, 10 May 2005 22:04:03 +0200
ejabberd (0.7.5-7) unstable; urgency=low
* can build now with various erlang versions because of buggy erlang on arm
-- Torsten Werner <twerner@debian.org> Sat, 8 Jan 2005 23:34:27 +0100
ejabberd (0.7.5-6) unstable; urgency=low
* changed to versioned (Build-)Depends: erlang (>= 1:10), closes: #282836
* fixed error in init script, closes: #283205
* scripts ejabberd and ejabberdctl export $HOME environment variable now
* usage message for ejabberdctl updated to reflect the different call syntax
thanks to Sergei Golovan (both changes)
* updated the Description proposed by Andreas van Cranenburgh
-- Torsten Werner <twerner@debian.org> Tue, 30 Nov 2004 22:05:28 +0100
ejabberd (0.7.5-5) unstable; urgency=low
* renamed debian/control to debian/control.in and changed Build-Depends:
@cdbs@
-- Torsten Werner <twerner@debian.org> Fri, 19 Nov 2004 23:58:01 +0100
ejabberd (0.7.5-4) unstable; urgency=low
* switched to cdbs
* fixed perl script and added Suggests: libunix-syslog-perl
-- Torsten Werner <twerner@debian.org> Thu, 18 Nov 2004 15:48:36 +0100
ejabberd (0.7.5-3) unstable; urgency=low
* changed maintainer to myself
-- Torsten Werner <twerner@debian.org> Wed, 17 Nov 2004 19:23:08 +0100
ejabberd (0.7.5-2) unstable; urgency=low
* fixed doc-base file
* initial upload based on Sergei's work
-- Torsten Werner <twerner@debian.org> Wed, 3 Nov 2004 21:43:58 +0100
ejabberd (0.7.5-1) unstable; urgency=low
* new upstream release (highlights: new tls module, starttls,
improvements in admiin web interface, bugfixes)
* improved init.d script
-- Sergei Golovan <sgolovan@nes.ru> Sun, 10 Oct 2004 21:44:25 +0400
ejabberd (0.7-2) unstable; urgency=low
* workaround for mnesia issue in mod_last
-- Sergei Golovan <sgolovan@nes.ru> Wed, 14 Jul 2004 01:43:13 +0400
ejabberd (0.7-1) unstable; urgency=low
* new upstream release
-- Sergei Golovan <sgolovan@nes.ru> Tue, 13 Jul 2004 20:35:29 +0400
ejabberd (0.6-alpha-20040522-4) unstable; urgency=low
* fixed icq.localhost entry in config file
* added example options to config file
-- Sergei Golovan <sgolovan@nes.ru> Thu, 17 Jun 2004 00:23:32 +0400
ejabberd (0.6-alpha-20040522-3) unstable; urgency=low
* fixed comments in config file
-- Sergei Golovan <sgolovan@nes.ru> Wed, 16 Jun 2004 21:10:13 +0400
ejabberd (0.6-alpha-20040522-2) unstable; urgency=low
* added comments to config file
-- Sergei Golovan <sgolovan@nes.ru> Sun, 13 Jun 2004 13:24:58 +0400
ejabberd (0.6-alpha-20040522-1) unstable; urgency=low
* new upstream CVS snapshot
* updated manual pade for ejabberdctl
-- Sergei Golovan <sgolovan@nes.ru> Sun, 30 May 2004 09:36:59 +0400
ejabberd (0.6-alpha-20040417-1) unstable; urgency=low
* initial prerelease from upstream CVS snapshot
-- Sergei Golovan <sgolovan@nes.ru> Sun, 25 Apr 2004 16:39:22 +0400
|