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 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
|
2006-06-25 Pawel Salek
* libbalsa/mailbox_imap.c: use the synchronous STORE calls for now.
* libbalsa/mailbox_local.c: set first_unread more reliably.
* src/balsa-index.c: fix bug 345638.
* NEWS: release 2.3.13.
2006-06-25 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/: ab-window.c, ab-window.h: use a table to improve layout of
address selection dialog.
2006-06-22 Pawel Salek
* libbalsa/identity.c: fix a regression (patch from PB).
* libbalsa/address-entry.c: remove non-printable characters on
text paste (AD).
2006-06-17 Pawel Salek
* Makefile.am: do not include GNOME_Balsa.server in the tarball.
* balsa.spec.in: fedora builds do not require gmime.
* configure.in: prepare for release.
* libbalsa/identity.c: allow arbitrary sig file names so that
arguments can be passed to executable sigs.
2006-06-16 08:17 PeterB
* libbalsa/mailbox_imap.c: get mailbox lock before gdk lock.
2006-06-15 21:55 PeterB
* libbalsa/mailbox_local.c: drop the gdk lock before returning.
2006-06-01 10:57 PeterB
* libbalsa/mailbox_imap.c: free cache-manager.
* src/balsa-mblist.c: append subtree when appending exposed
unscanned node.
2006-05-31 09:43 PeterB
* libbalsa/filter-file.c, libbalsa/filter-funcs.c,
libbalsa/filter.c, libbalsa/filter.h, libbalsa/mailbox.c,
libbalsa/mailbox_local.c, src/balsa-index.c,
src/filter-edit-callbacks.c, src/filter-edit-dialog.c,
src/main-window.c: ref-count LibBalsaCondition instead of cloning.
* libbalsa/: mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c: free
mailbox info after closing mailbox-local.
2006-05-30 00:22 PeterB
* src/balsa-mime-widget-text.c: plug leak.
2006-05-29 15:56 PeterB
* libbalsa/: mailbox.c, mailbox.h: implement
LibBalsaMailbox::persistent_view_filter.
* src/: balsa-index.c, main-window.c: make flag view-filter
persistent, so we can restore it when closing a local mailbox.
* libbalsa/mailbox_local.c: restore persistent view-filter before
saving the tree when closing.
2006-05-26 Pawel Salek
* libbalsa/mailbox.c: sort IMAP mailboxes correctly (part of the
information returned by the imap server was ignored at this level).
* src/balsa-app.c: really respect the "remember passwd" check box.
* src/balsa-index.c: do not re-sort on index close.
2006-05-25 11:11 PeterB
* libbalsa/smtp-server.c: do not crash without
HAVE_SMTP_TLS_CLIENT_CERTIFICATE.
2006-05-20 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-icons.[hc]: Choose a better icon for the trash mailbox
when GNOME_STOCK_TRASH is unavailable.
* configure.in: remove stray '-' as reported by Jean-Luc Coulon.
2006-05-17 Pawel Salek
* libbalsa/imap/imap-commands.c: fix return codes of async routines.
* libbalsa/imap/imap{-handle,_private}.c: ditto.
* libbalsa/mailbox_imap.c: use changed return codes.
2006-05-15 Pawel Salek
* libbalsa/imap/imap-handle.c: reset idle_issued flag. handle
message-other right, this includes message/delivery-status.
* src/balsa-mime-widget.c: display message/delivery-status parts.
2006-05-14 10:46 PeterB
* src/sendmsg-window.c: make Yes the default response when user
closes unsaved compose window; add Cancel option when user closes
auto-saved compose window.
* src/sendmsg-window.c: unref, not free, a GObject.
2006-05-13 Pawel Salek
* libbalsa/mailbox_imap.c: use async interface for STORE commands.
* libbalsa/mailbox_mbox.c: do not use file_set_contents() on OSX.
* libbalsa/imap/imap-commands.c: async store_flag_a()
* libbalsa/imap/imap-commands.h: proper prototypes.
* libbalsa/imap/imap-handle.c: generalize IDLE response handlers
to general async command response handlers.
* libbalsa/imap/imap_private.h: provide support for handle locking
and asynchronous command handling.
* src/balsa-index.c: scroll first, fetch messages later.
2006-05-12 09:10 PeterB
* website/faq.html: restore website/faq.html, with a new entry for
format=flowed.
2006-05-09 Pawel Salek
* src/main.c: fix -a handling when GOption API is used.
2006-05-07 14:26 PeterB
* libbalsa/imap/imap-handle.c: add message_id to cache.
2006-05-03 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/mime.c: Improve recognition of multi-line URLs.
* libbalsa/misc.h: store a flag whether URL is in a flowed message.
* src/balsa-mime-widget-text.c: initialize this flag.
2006-04-25 Carlos Morgado <chbm gnome.org>
* libbalsa/address.c (addrlist_drag_drop_cb): fix broken cast on 64b
2006-04-21 09:46 PeterB
* libbalsa/mailbox.c: total message count can change while we're
working on the tree, so we save it and remove assertions.
2006-04-17 Pawel Salek
* libbalsa/address.[ch]: address list of edit vidget is now a drop
target.
* libbalsa/mailbox_imap.c: get rid of one RTT for simple messages.
* libbalsa/mailbox_mbox.c: silence spurious warnings on OSX.
* libbalsa/send.c: failure to send a message is an error.
* src/ab-main.c: support D&D and address lists.
2006-04-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Remove obsolete no_NO locale.
* po/no.po: And the translation.
2006-04-07 Carlos Morgado <chbm chbm.net>
* src/balsa-message.c (add_multipart_mixed): fix build without GPGME
2006-04-05 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-message.c: fix MDN syntax; add option to show all parts
inline.
2006-04-05 13:17 PeterB
* src/save-restore.c: do not save UNSET show or subscribe values.
2006-04-01 09:52 PeterB
* src/pref-manager.c: do not crash if address book changes are
applied after pref manager is closed.
* src/address-book-config.c: allow only one dialog per address
book.
* libbalsa/mailbox.c: don't clear counts until we know they're
wrong.
2006-03-27 07:55 PeterB
* src/main-window.c: cut down console messages.
* src/balsa-mblist.c: if mailbox isn't subscribed for checking,
don't notify user about new mail and don't emit BalsaMBList signal.
2006-03-24 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/libbalsa.c: proper regex's for highlighting quoted
lines.
* configure.in: libesmtp sometimes needs -lpthread.
2006-03-24 08:44 PeterB
* libbalsa/smtp-server.c: build without
HAVE_SMTP_TLS_CLIENT_CERTIFICATE.
* libbalsa/mime.c: include ctype header file.
* src/balsa-mblist.c: unref the correct object; hold gdk lock while
closing mbnode.
2006-03-23 Pawel Salek
* libbalsa/send.c: report MAIL FROM SMTP command errors.
2006-03-21 Pawel Salek
* libbalsa/mi{me,sc}.c: move PCRE dependency to mime.c
* libbalsa/mailbox.c: copy the "deleted" flag as well (Emanuel).
2006-03-18 Pawel Salek
* libbalsa/libbalsa.[hc]:
* libbalsa/misc.[hc]: move library-dependent stuff to libbalsa.c.
2006-03-17 Pawel Salek
* configure.in: create separately list of balsa-ab libraries (12
libs removed). Albrecht Dreß fixed detection of buggy gpgme.
* src/Makefile.am: use it.
* libbalsa/libbalsa.[hc]:
* libbalsa/misc.[hc]: move object-independent stuff to misc.c.
* libbalsa/mailbox_pop3.c: include misc.h
* src/ab-main.c: register only used objects.
2006-03-16 19:56 PeterB
* libbalsa/mailbox.c: notify Gtk when msgno changes.
2006-03-09 Pawel Salek
* libbalsa/address-book-ldap.c: use openldap-2.3.x compatible API.
* libbalsa/libbalsa.c: the same.
* libbalsa/imap/imap-handle.c: treat OpenSSL errors as critical.
* src/balsa-mblist.c: don't be mad if an icon is not found.
2006-03-08 10:40 PeterB
* src/main-window.c: ensure visible message after changing view
filter.
2006-03-06 Ahmad Riza H Nst <rizahnst@eriagempita.co.id>
* configure.in: Added "id" (Indonesian) to the ALL_LINGUAS line
2006-03-05 10:23 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox.h, src/balsa-index.c: check
whether user closed mailbox during long view-filter update.
2006-03-04 Pawel Salek
* libbalsa/mailbox_mbox.c: do not reference freed memory.
* NEWS, configure.in: release 2.3.12.
2006-02-28 Pawel Salek
* src/balsa-app.c: check mbnode fetched by gtk_tree_model_get()...
* src/balsa-mblist.c: ... fixing bug 332980.
* NEWS, configure.in: release 2.3.11.
2006-02-27 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/sendmsg-window.c: explicitly update gpg-mode when identity is
changed, as apparently the callback is now called only when the
check-button's state is changed.
2006-02-26 19:28 PeterB
* src/balsa-index.c: scroll to ensure a visible message only if
there isn't one.
* doc/C/balsa.xml, src/pref-manager.c: arrange the help file to
match the new prefs window; use section titles instead of notebook
page numbers to locate help sections.
2006-02-25 13:56 PeterB
* src/: balsa-index.c, balsa-index.h, main-window.c: implement
balsa_index_ensure_visible, and use it.
* src/main.c: set GNOME_PARAM_APP_DATADIR.
* libbalsa/address-book-ldap.c, libbalsa/address-book.c,
src/address-book-config.c, src/pref-manager.c: give user control
over LibBalsaAddressBook::is_expensive.
* src/balsa-index.c: try to leave messages showing after changing
view filter.
2006-02-15 Pawel Salek
* libbalsa/html.c: silence printf().
* libbalsa/{message,mailbox_mbox}.c: remove remains of msg counting.
* libbalsa/mailbox_imap.c: fix a crash in low index selection on
cache restore (spotted by PeterB).
* libbalsa/imap/imap-commands.c: check more return codes.
* libbalsa/imap/imap-{handle,search}.c: ditto.
2006-02-21 10:53 PeterB
* src/balsa-mblist.c: hide title and make column natural size when
using single column.
2006-02-20 22:51 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: save reflow widget in
BalsaSendmsg, in case user opens multiple windows.
2006-02-19 12:39 PeterB
* src/balsa-mblist.c, libbalsa/mailbox.c: show count of hidden
messages on status bar; show only non-zero counts.
* src/balsa-message.c: make sure widget can focus.
2006-02-18 15:31 PeterB
* src/sendmsg-window.c, libbalsa/address-entry.c,
libbalsa/address-entry.h: use Escape instead of ctrl+R for manual
address completion.
* libbalsa/address-book-ldap.c: make LDAP address book expensive.
* src/pref-manager.c: edit address book on row-activated; add
closure to add_button_to_box.
2006-02-18 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-mime-widget-text.c: fix bug 330093 -- 'copy URL' when
right-clicking one in a mail.
2006-02-17 21:26 PeterB
* src/: balsa-message.c, balsa-message.h,
balsa-mime-widget-callbacks.c, main-window.c, main-window.h:
one-key mail reading using space bar.
* src/main.c: drop gdk lock before syncing mailboxes.
* src/mailbox-node.c: check mailbox in an idle handler.
* src/balsa-index.c: use the gdk lock to control access to
LibBalsaMailbox::msg_tree.
* libbalsa/: libbalsa.c, libbalsa.h, mailbox.c, mailbox.h,
mailbox_imap.c, mailbox_local.c: use the gdk lock to control access
to LibBalsaMailbox::msg_tree.
2006-02-15 Pawel Salek
* balsa.desktop.in: Terminal=0 -> Terminal=false
* libbalsa/rfc3156.c: failed gpg execution is warning, not just info
(Albrecht Dreß).
2006-02-13 22:42 PeterB
* src/: balsa-mblist.c, balsa-icons.c, balsa-icons.h: use icon-name
GtkTreeViewColumn attribute.
* src/: balsa-index.c, balsa-index.h, main-window.c,
message-window.c: reset view filter to show unread message.
* src/pref-manager.c: move message-window group to display-options
page; move format group to character-set page and rename page.
* src/balsa-mblist.c: unref pixbufs; dup string only when
necessary.
2006-02-12 15:11 PeterB
* src/pref-manager.c: let lists expand vertically.
* src/pref-manager.c: align controls.
* src/pref-manager.c: try to fill pages, as per HIG.
2006-02-11 15:32 PeterB
* src/balsa-mblist.c: show unread count in parentheses when not
showing info columns.
2006-02-10 08:22 PeterB
* src/: balsa-app.c, balsa-index.c: check for NULL index.
2006-02-09 13:11 PeterB
* libbalsa/misc.c: disable bracket-checking.
2006-02-07 07:29 PeterB
* src/balsa-mblist.c: schedule only one idle callback at a time;
move UI update to idle callback.
* libbalsa/mailbox_local.c: clear total when restore-tree fails.
2006-02-06 15:46 PeterB
* src/main-window.c: use NULL instead of empty string when it will
be translated.
* src/pref-manager.c: move utf8 out of translated string.
* src/balsa-index.c: fix another typo in earlier commit.
* libbalsa/rfc3156.c: fix typo in previous commit.
* libbalsa/gmime-gpgme-signature.c, libbalsa/mailbox_pop3.c,
libbalsa/misc.c, libbalsa/rfc3156.c, po/POTFILES.in,
src/balsa-index.c, src/save-restore.c, src/sendmsg-window.c,
src/spell-check.c: fix strings--bug 330085.
2006-02-05 21:18 PeterB
* src/pref-manager.c: hide notebook borders and remove extra
border-width.
2006-02-05 Carlos Morgado <chbm gnome.org>
* src/pref-manager.c (pspell_settings_group): fix pedantic pspell build
2006-02-05 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/pref-manager.c: use unicode for special characters; let
gtk-label wrap lines.
2006-02-04 12:24 PeterB
* libbalsa/misc.c: plug object leak.
* src/pref-manager.c: plug widget leak.
2006-02-03 22:04 PeterB
* src/pref-manager.c: use tree control instead of nested notebooks.
* src/mailbox-conf.c: less ugly alignment.
2006-02-03 Pawel Salek
* libbalsa/smtp-server.c: include misc.h for libbalsa_create_label.
2006-02-01 20:30 PeterB
* src/address-book-config.c, src/balsa-app.c, src/balsa-app.h,
src/balsa-index.c, src/folder-conf.c, src/mailbox-conf.c,
libbalsa/identity.c, libbalsa/misc.c, libbalsa/misc.h,
libbalsa/smtp-server.c: more consistent dialogs.
* libbalsa/mailbox_mbox.c: use cache file to speed up
mailbox-check.
* src/mailbox-conf.c: create only one dialog for new mailbox and to
modify POP3 mailbox.
* src/mailbox-conf.c: check for NULL mailbox.
2006-01-29 20:39 PeterB
* libbalsa/message.c: avoid infinite recursion.
* src/balsa-index.c, src/balsa-index.h, src/balsa-mblist.c,
src/balsa-mblist.h, src/mailbox-conf.c, src/main-window.c,
src/main.c, src/save-restore.c, libbalsa/mailbox.c,
libbalsa/mailbox.h: next-unread chains to all mailboxes with unread
mail.
* libbalsa/message.c: encode broken headers before passing them to
GMime for decoding.
2006-01-29 Pawel Salek
* NEWS: release 2.3.10.
* src/sendmsg-window.c: parent error dialog properly. gtk-2.4.x
compatibility. Do not crash referencing NULL bsmsg->charset in
is_charset_ok() when the first entry to this function was
cancelled by user.
2006-01-28 22:14 PeterB
* src/sendmsg-window.c: don't try to set NULL language for
spell-checking; remember if user set utf8.
2006-01-27 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/misc.c: a new attempt for proper quote highlighting
re's in the composer.
* src/balsa-mime-widget-text.c: fixed the never ending highlighting.
* libbalsa/rfc3156.c: remove gnome dependency.
* configure.in: mime icon install configuration.
* images/Makefile.am: ditto.
2006-01-26 05:42 PeterB
* src/sendmsg-window.c: leave draft-message nonNULL.
2006-01-24 Pawel Salek
* src/main.c, src/ab-main.c: achieve compatibility with
libgnome-devel-2.13.7 (bug 178650).
2006-01-24 12:17 PeterB
* libbalsa/mailbox.c: update view-filter before setting threading.
* src/filter-run-callbacks.c: scroll to selected filter.
2006-01-23 19:02 PeterB
* libbalsa/mailbox_mbox.c: check cache file more carefully; better
buffering in readln.
* src/sendmsg-window.c: initialize retval.
2006-01-22 20:49 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: simpler
utf8-confirmation; delete draft message if it was auto-saved but
not user-saved.
2006-01-22 PeterB, Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/sendmsg-window.c: dialogs suggested by Mişu Moldovan <dumol
at gnome dot ro>.
2006-01-22 14:30 PeterB
* libbalsa/mailbox_mbox.c: use our own rdline function.
* libbalsa/mailbox_mbox.c: step to a From_ line before parsing.
* libbalsa/mailbox.c: prepare parent messages for threading as well
as siblings.
2006-01-20 11:15 PeterB
* src/sendmsg-window.c: restore state only for continued messages.
* src/: sendmsg-window.c, sendmsg-window.h: fix saving and
restoring spell-checker state when postponing; build
--without-gtkspell.
2006-01-19 23:27 PeterB
* src/sendmsg-window.c: save format=flowed or fixed, and
spell-check-language, when postponing a message.
2006-01-18 14:36 PeterB
* libbalsa/: mailbox_local.c, mailbox_local.h, mailbox_maildir.c,
mailbox_mbox.c, mailbox_mh.c: don't set first-unread to a deleted
message; check recent messages for message/partial; load-message is
a LibBalsaMailboxLocal method; prepare all recent messages for
threading.
* src/main.c: reset LibBalsaProgress when we're done with the
progress bar.
2006-01-17 13:45 PeterB
* src/balsa-index.c: scroll-on-open immediately, not in idle
handler.
2006-01-16 18:09 PeterB
* src/main.c: re-enable updating progress bar from a subthread,
using gdk lock.
* libbalsa/mailbox_local.c: downgrade information messages to
debug.
* libbalsa/libbalsa.h: fix mangled comment.
* src/balsa-index.c: schedule only one idle callback when mailbox
is changed.
* libbalsa/libbalsa.h, src/main.c: use symbolic constants; disable
updating progress bar from a subthread.
2006-01-15 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/message.h, libbalsa/send.c, src/sendmsg-window.c: save
and restore crypto and MDN settings when postponing and continuing.
2006-01-14 19:20 PeterB
* src/: balsa-index.c, main-window.c: no need to prepare
threading--mailbox code takes care of caching info.
* libbalsa/mailbox.c: show progress when filtering-on-reception.
* libbalsa/mailbox_local.c, src/main.c: use new LibBalsaProgress
api.
* libbalsa/mailbox.c: copy flags when copying message instead of
getting message; show progress when reassembling message/partial;
use new LibBalsaProgress api.
* libbalsa/: libbalsa.c, libbalsa.h: simplify LibBalsaProgress and
make it more opaque.
2006-01-13 22:15 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox_local.c, src/balsa-index.c,
src/main-window.c, src/main.c: simplify progress bar updates; use
it for filtering.
* libbalsa/mailbox_mbox.c: save mailbox info with glib < 2.8;
disable debug output.
2006-01-14 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* configure.in: Add "zh_HK" to ALL_LINGUAS.
2006-01-12 12:08 PeterB
* libbalsa/mailbox.c: must use get-message to get the flags.
2006-01-11 15:45 PeterB
* src/balsa-mime-widget-text.c: one more.
* src/balsa-mime-widget-text.c: use glib's type conversion macros
for gint <=> gpointer.
* src/sendmsg-window.c: build with gcc < 4.1.
* libbalsa/mailbox_mbox.c: better: use %zd format specifier.
* libbalsa/mailbox_mbox.c: cast value to gint for g_print.
* libbalsa/: mailbox.c, message.c: reset stream after loading
envelope.
* libbalsa/mailbox.c: reset stream before adding message.
* src/: main-window.c, toolbar-factory.c: add optional toolbar
button for expunge.
* src/pref-manager.c, src/save-restore.c, libbalsa/smtp-server.c,
libbalsa/smtp-server.h: implement and use
libbalsa_smtp_server_add_to_list--deletes existing server if new
name is a duplicate.
* libbalsa/mailbox_mbox.c: don't include From_ line in message
length.
2006-01-10 23:43 PeterB
* libbalsa/message.c: set message->size from
g_mime_stream_length().
* src/main.c: use g_idle_add and data instead of g_io_add_watch and
pipes.
* src/main-window.c, src/main-window.h: set progress text in status
bar; run main loop only if needed.
* libbalsa/mailbox_mbox.c: save and restore message info.
* src/balsa-index.c: prepare threading/sorting before setting
non-flags-only filter.
* libbalsa/mailbox_local.c: cache file is not created for empty
mailbox.
* libbalsa/mailbox.c: use progess bar when copying messages.
* src/balsa-index.c, src/main-window.c, src/main-window.h,
src/main.c, libbalsa/libbalsa.c, libbalsa/libbalsa.h: use progress
bar to show fractional progress; implement wrappers for libbalsa;
use it when preparing for threading/sorting.
* libbalsa/: mailbox.c, mailbox_local.c, mailbox_maildir.c,
mailbox_mbox.c, mailbox_mh.c: simplify local mailbox caching; use
progress bar.
* src/information-dialog.c: do not stack status-bar messages.
* libbalsa/: mime-stream-shared.c, mime-stream-shared.h: shared
lock for LibBalsaMimeStreamShared.
2006-01-10 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/misc.c, libbalsa/misc.h, src/balsa-mime-widget-text.c,
src/sendmsg-window.c, src/sendmsg-window.h: configure GtkSourceView
with default=no; use it for hacker-highlighting and multi-level
undo.
2006-01-09 10:49 PeterB
* src/balsa-message.c: g_return_* argument must not have
side-effects.
2006-01-06 Pawel Salek
* configure.in, NEWS: release 2.3.9.
2006-01-06 08:48 PeterB
* src/main-window.c: check that Balsa didn't quit.
2006-01-05 Albrecht Dreß <albrecht dot dress at arcor dot de>
* configure.in: GnuPG encryption is stable.
2006-01-05 20:35 PeterB
* libbalsa/mailbox.c: always set tree-changed if msgno is removed.
* libbalsa/misc.c: check for anonymous tag.
2006-01-04 20:48 PeterB
* libbalsa/address.c: don't use InternetAddress::name if it's
non-NULL but empty.
* libbalsa/: mailbox.c, mailbox.h, mailbox_imap.c, mailbox_local.c:
new member LibBalsaMailbox::msg_tree_changed; use it to save tree
only when needed; manage mailbox->view_filter in mailbox.c.
2006-01-03 22:27 PeterB
* libbalsa/libbalsa.c: more careful mailbox lock.
2006-01-01 14:10 PeterB
* src/: balsa-app.h, sendmsg-window.c: build without GTKSPELL.
2006-01-01 Carlos Morgado <chbm gnome.org>
* src/sendmsg-window.c, src/balsa-app.h:
fix build without GTKSPELL
(first commit!!)
2005-12-31 09:27 PeterB
* libbalsa/mailbox_local.c: set first-unread when restoring the
tree.
* src/balsa-index.h: deadwood.
2005-12-31 08:01 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/: sendmsg-window.c, sendmsg-window.h: keep spell-check
menu-item consistent with toolbar button.
2005-12-30 12:15 PeterB
* libbalsa/mailbox_local.c: downgrade warnings to messages and make
them more people-friendly.
2005-12-29 20:16 PeterB
* src/: balsa-app.c, balsa-app.h, save-restore.c, sendmsg-window.c:
handle GtkSpell errors; reattach spell-checker when language is
changed; spell-checker language persists until spell-checking is
disabled.
* libbalsa/mailbox_local.c: special-case flags-only view-filter;
prepare threading for all messages in the mailbox.
2005-12-28 07:39 PeterB
* libbalsa/imap-server.c: lock imap-servers before checking for
non-NULL.
2005-12-28 Pawel Salek
* libbalsa/imap-server.c: yet another shot at portable mutex
locking.
2005-12-27 16:25 PeterB
* libbalsa/imap-server.c: do not try to lock when no servers have
been created.
* libbalsa/mailbox_mbox.c: make sure message is cached at
mailbox-local and mailbox levels.
2005-12-27 Pawel Salek
* configure.in, NEWS: release 2.3.8.
2005-12-27 12:33 PeterB
* libbalsa/: imap-server.c, server.c: build with gcc-4.1.
* libbalsa/mailbox_local.c: check msgno before accessing array.
2005-12-26 23:22 PeterB
* src/balsa-index.c: remove unnecessary gdk_threads_{leave,enter};
undo SOS filter before closing, so we save the tree that we need
when reopening.
* libbalsa/mailbox_local.c: cache sender for filtering;
save-tree-file with one record is OK.
* libbalsa/mailbox_local.c: use g_file_set_contents when available.
2005-12-25 18:50 PeterB
* libbalsa/mailbox.c: disable some time-consuming sanity checks.
* libbalsa/mailbox_local.c: more robust, less time-consuming tree
file checking.
2005-12-24 23:31 PeterB
* src/: balsa-index.c, balsa-index.h: scroll in an idle handler;
use prepare-theading.
* libbalsa/: mailbox.c, mailbox.h, mailbox_imap.c, mailbox_local.c,
mailbox_local.h, mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c:
save and restore sorted and threaded view.
2005-12-23 22:02 PeterB
* libbalsa/address-book.c, src/balsa-mime-widget-callbacks.c,
src/print.c: harmonize strings.
* src/balsa-message.c, libbalsa/identity.c, libbalsa/misc.c,
libbalsa/send.c, src/sendmsg-window.c: fix strings (Mişu Moldovan)
and comment them (Jean-Luc Coulon).
2005-12-19 07:22 PeterB
* src/balsa-mime-widget.c: lock a GMimeStream.
2005-12-18 Pawel Salek
* libbalsa/mailbox_imap.c(find_duplicates): do not send UID=0.
* libalsa/mailbox.c: attempting to expunge read-only mboxes would
be a waste of time.
2005-12-15 Pawel Salek
* libbalsa/send.c: use proper time zone in Date: (bug 323871).
* src/balsa-index.c: disconnect "selection-changed" handler
explicitely - do not trash on mbox close with gtk2-2.8.9.
2005-12-13 08:03 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: fix bug 323871; clean
up undo/redo.
2005-12-11 18:14 PeterB
* src/mailbox-conf.c: use new api for
libbalsa_mailbox_local_set_path.
* libbalsa/: mailbox_maildir.c, mailbox_maildir.h, mailbox_mbox.c,
mailbox_mbox.h, mailbox_mh.c, mailbox_mh.h: implement check-files
and set-path methods; simplify new and get-message methods;
fixes bug 323448.
* libbalsa/: mailbox_local.c, mailbox_local.h: new class methods
check-files and set-path; change api for
libbalsa_Mailbox_local_set_path.
* libbalsa/: mailbox_local.c, mailbox_mh.c, mailbox_mh.h,
message.c: fix bug 323448.
* src/: toolbar-factory.h, toolbar-prefs.h: remove some obsolete
defines and replace some others with an enum.
2005-12-09 Jens Granseuer
* src/sendmsg-window.c: compile with gcc-2.95 (bug 323617).
* libbalsa/send.c: compile --without-smtp (bug 323618).
* src/sendmsg-window.c: compile --without-gtkspell (PS).
2005-12-08 07:43 PeterB
* src/: save-restore.c, sendmsg-window.c: remember spell-check
state when using GtkSpell (Marcin Deranek, bug 323458).
* src/pref-manager.c: no spell-check options when using GtkSpell.
* src/: balsa-app.c, balsa-app.h: spell-check members are
conditional on HAVE_GTKSPELL.
2005-12-07 Pawel Salek
* libbalsa/identity.c: fix a warning with gcc-3.4.x
* libbalsa/mailbox_imap.c: use proper arguments to the
server-changed signal, fixing a possible crash on server settings'
update.
2005-12-07 13:35 PeterB
* src/filter-run-callbacks.c: fix bug 323442.
2005-12-04 Pawel Salek
* NEWS: release 2.3.7.
2005-12-03 Pawel Salek
* balsa.spec.in: require gmime-2.1.17.
* libbalsa/{imap-,smtp-,}server.c: clean up saving the config,
enable anonymous access.
* libbalsa/server.h: add try_anonymous field and config-changed
signal.
* libbalsa/mailbox_imap.c: ditto.
* libbalsa/imap/imap-handle.[hc]: respect name space.
* src/balsa-app.c: respect "remember password" checkbox in the
password dialog.
* src/balsa-index.c: remove redundant scroll_to_cell() call.
* src/{folder,mailbox}-conf.c: config anonymous access.
* src/mailbox-node.c: listen to "config-changed" signal.
* src/save-restore.c: the same.
* doc/C/balsa.xml: document anonymous access.
2005-11-28 15:19 PeterB
* src/balsa-message.c, src/sendmsg-window.c, libbalsa/filter.c,
libbalsa/mailbox_local.c, libbalsa/message.c, libbalsa/message.h,
libbalsa/send.c: implement and use accessors for user-headers.
2005-11-27 08:34 PeterB
* libbalsa/identity.c: GtkFileChooserButton requires gtk version
2.6.
2005-11-26 16:35 PeterB
* libbalsa/mailbox_mbox.c: don't leak message.
* libbalsa/mailbox_pop3.c: adjust total size for skipped messages.
2005-11-26 Pawel Salek
* libbalsa/identity.c: add missing #include "misc.h"
* libbalsa/mailbox_pop3.c: handle procmail-filtered messages.
* src/main-window.[hc]: fix a regression: set right default view
filter for sentbox.
* src/balsa-index.c:
* src/balsa-mblist.c: ditto.
2005-11-19 08:47 PeterB
* src/balsa-index.c: don't scroll back to current message after
mailbox changes.
* src/sendmsg-window.c: create Face or X-Face user header from path
in identity.
* src/balsa-message.c: display face from Face or X-Face header.
* libbalsa/send.c: use user-headers correctly.
* libbalsa/: misc.c, misc.h: new public methods
libbalsa_get_image_from_{,x_}face_header and a corresponding GError
domain.
* libbalsa/: identity.c, identity.h: port signature-path to
GtkFileChooserButton; add Face and X-Face header file paths; change
some prototypes to reduce dynamic casting.
* configure.in: new configure option --with-compface=no.
* acinclude.m4: stop some autotool whining.
2005-11-09 19:11 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_imap.c,
mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c, mailbox_pop3.c,
message.c, message.h, send.c: change LibBalsaMailbox add-message
method to take a GMimeStream and LibBalsaMessageFlag instead of a
message; move libbalsa_mailbox_copy_message to message.c and rename
libbalsa_message_copy; use new add-message method in mailbox-pop3.
2005-11-06 21:15 Pawel Salek
* libbalsa/mailbox_pop3.c: use Mh temporary mailbox until an
add_message_from_stream() method is implemented.
2005-11-06 13:42 PeterB
* libbalsa/mailbox_mh.c: implement load-config method; use
g_mkstemp to make temporary files; sync mailbox even if
.mh_sequences doesn't exist.
* libbalsa/mailbox_pop3.c: use g_file_open_tmp to open the temp
file.
2005-11-06 Pawel Salek
* libbalsa/mailbox_pop3.c: last commit broke direct Pop delivery -
fix it.
* src/sendmsg-window.c: fix compilation without GtkSpell.
* Makefile.am: make variables must start in the first column.
2005-11-05 17:15 PeterB
* src/Makefile.am: define balsa_gtkspell_extra_dist before using
it.
* configure.in, src/Makefile.am, src/sendmsg-window.c,
src/sendmsg-window.h, src/toolbar-factory.c: new configure option
--with-gtkspell, default = no.
* src/main-window.c: don't clip close-button icon.
2005-11-04 18:53 PeterB
* configure.in: gtkhtml3 has yet another version: 3.8.
2005-11-02 Pawel Salek
* libbalsa/mailbox_pop3.c: no need to update config; fix memory leaks.
* src/save-restore.c: "config-updated" signal does not exist any more.
2005-10-30 07:54 PeterB
* src/sendmsg-window.c: do not mark forwarded message as answered.
2005-10-29 Pawel Salek
* src/main-window.[ch]: iron out problems with the last patch
* src/balsa-index.c: and switching between different mboxes.
2005-10-29 Pawel Salek
* libbalsa/mailbox_imap.c: last commit could trigger recursive
searches under certain circumstances. Do it differently.
* libbalsa/mailbox.c: more information about move errors.
* libbalsa/imap/imap-auth.c: AUTH={PLAIN,ANONYMOUS} implemented.
* libbalsa/imap/imap-handle.[hc]: anon support.
* libbalsa/imap/imap-search.c: fix a bug in searching.
* libbalsa/imap/imap_private.h: add enable_anonymous and
enable_binary fields.
* libbalsa/imap/pop3.c: minor cleanup.
* src/balsa-index.[hc]: extend SoS filter.
* src/main-window.[hc]: related changes.
2005-10-28 Pawel Salek
* libbalsa/mailbox_imap.c: fix unread msg counts on concurrent mbox
access.
2005-10-28 06:37 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: use separate members
for the message we're replying to, and the draft message we saved.
* libbalsa/mailbox_local.c: reverse a loop.
* libbalsa/mailbox_mbox.c: look for appended messages in the
correct place; always save the from-offset as the start of the
message.
2005-10-27 17:56 PeterB
* src/save-restore.c: set filters-trash-mbox.
2005-10-23 Pawel Salek
* NEWS, configure.in: release 2.3.6
2005-10-19 Pawel Salek
* libbalsa/imap/imap-tls.c: be compatible with openssl-0.9.8.
* libbalsa/libbalsa-conf.c: fix memory leaks.
2005-10-14 06:53 PeterB
* libbalsa/mailbox.c: check for NULL user-data.
2005-10-10 Pawel Salek
* libbalsa/imap-server.c: distinguish between failed and cancelled
authentication.
* libbalsa/libbalsa.h: add cancelled authentication error code.
* libbalsa/mailbox_imap.c: handle better errors in ::add_message.
* libbalsa/imap/imap-auth.c, auth-{cram,gssapi}.c: cancelled vs failed.
* libbalsa/imap/libimap.h: add apriopriate error code.
* src/balsa-index.c: do not retry if the authentication was cancelled.
* src/sendmsg-window.c:
* src/spell-check.c: parent properly spell checking error messages.
2005-10-07 11:25 PeterB
* libbalsa/libbalsa-conf.c: fix bug 318171.
* src/: filter-edit-callbacks.c, save-restore.c: improve language,
per Craig Routledge.
2005-10-06 19:22 PeterB
* libbalsa/mailbox.c: sanity check.
* src/: filter-edit-callbacks.c, filter-edit-dialog.c: fix various
sensitivity problems, including one that blocked deleting the last
filter.
2005-09-29 13:01 PeterB
* libbalsa/body.c, libbalsa/body.h, libbalsa/misc.c,
libbalsa/misc.h, src/balsa-message.c,
src/balsa-mime-widget-callbacks.c, src/sendmsg-window.c: fix bug
317240: use mode 0666 to save attachments.
2005-09-28 23:06 PeterB
* doc/C/balsa.xml: update identities doc.
* doc/C/balsa.xml: document per-identity SMTP server and message
splitting.
2005-09-27 20:31 PeterB
* src/: balsa-message.c, main-window.c: move BalsaMessage show/hide
to balsa-message.c; fix a startup visual glitch.
* src/main-window.c: hide irrelevant scrollbar--thanks to Sebastian
Zerbe.
* libbalsa/mailbox_mbox.c: write separating newline before
appending new message, not after.
* libinit_balsa/balsa-druid-page-directory.c: manage
LibBalsaMailbox::no_reassemble.
* src/mailbox-node.c, src/save-restore.c, libbalsa/mailbox.c:
manage and use LibBalsaMailbox::no_reassemble; check for a
message/partial part that has been wrapped in a multipart/*
message.
* libbalsa/mailbox.h: new member LibBalsaMailbox::no_reassemble,
used to distinguish outbox.
* libbalsa/rfc3156.c: check that a GMimeMultipartSigned has both
its subparts.
2005-09-22 10:28 PeterB
* libbalsa/: mailbox.c, mailbox_imap.c, mailbox_maildir.c,
mailbox_mbox.c, mailbox_mh.c: update parent style when child is
read.
* libbalsa/body.c: allow saving non-GMimePart message parts.
2005-09-20 23:05 PeterB
* libbalsa/: mailbox.c, mailbox_mbox.c, send.c: implement message
fragmentation and reconstruction using "message/partial" mime type.
* libbalsa/: smtp-server.c, smtp-server.h: add guint
LibBalsaSmtpServer::big_message and manage it in the dialog.
2005-09-20 Pawel Salek
* libbalsa/imap/imap-handle.c: handle lack of headers.
* NEWS, configure.in: release 2.3.5
2005-09-15 10:12 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_mbox.c: fix unthreaded
build.
2005-09-14 Craig Routledge
* doc/C/balsa.xml: update compose window file attaching doc.
2005-09-13 Pawel Salek
* libbalsa/mailbox_imap.c: return correctly TRUE/FALSE on success.
* src/spell-check.c: unavailable word list is a critical error.
2005-09-13 09:36 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_mbox.c: implement
lock_store class method and public functions.
* src/balsa-index.c, libbalsa/body.c,
libbalsa/gmime-part-rfc2440.c, libbalsa/html.c, libbalsa/message.c,
mailbox_imap.c, mailbox_maildir.c, mailbox_mh.c,
libbalsa/rfc3156.c, libbalsa/send.c, libbalsa/source-viewer.c,
src/balsa-message.c: lock the mail store instead of a GMimeStream,
to avoid unnecessary IMAP fetches.
2005-09-11 Carlos Morgado <chbm gnome.org>
* po (Module): update for stats
2005-09-06 Pawel Salek
* configure.in: SuSE changes broke FC. Negotiate a common solution.
2005-09-05 Pawel Salek
* configure.in: merge SuSE kerberos path fixes.
* libbalsa/body.[hc]: provide more info on error in save(),
save_fd(), save_temporary(), get_content() and get_stream().
* libbalsa/libbalsa.h: add MAILBOX_ACCESS_ERROR code.
* libbalsa/mailbox.[ch]: get_message_part() sets GError.
* libbalsa/mailbox_{imap,local}.c: modify implementation accordingly.
* libbalsa/{message,mime}.c: adjust to changed API.
* src/balsa-message.c: ditto.
* src/balsa-mime-widget-{callbacks,message,text}.c:
* src/balsa-mime-widget.c: ditto.
* src/print.c:
* src/sendmsg-window.c: ditto when forwarding message.
2005-09-01 11:04 PeterB
* src/pref-manager.c: connect file-chooser signal in an idle
handler, after the chooser is initialized; test whether user
changed window-layout; update toolbars if necessary.
2005-08-28 11:29 PeterB
* src/balsa-index.c: simpler fix.
* src/balsa-index.c: redisplay current message if filtering cleared
it.
2005-08-25 19:55 PeterB
* src/pref-manager.c: fix spacing.
2005-08-25 Pawel Salek
* configure.in: support selection of the preferred GtkHtml widget.
* README: matching description.
* libbalsa/address-book-ldap.[ch]: support arbitrary locations of
the private address book.
* libbalsa/send.c: handle informatively errors of DATA command.
* src/ab-window.c: fix reload action.
* src/address-book-config.c: support extended LDAP config.
* src/balsa-index.c: "Run" is the default action of "Pipe through"
2005-08-22 07:46 PeterB
* doc/C/balsa.xml: cleanup.
* src/toolbar-factory.c: set button label and tooltip
appropriately.
2005-08-21 Jens Seidel <jseidel@cvs.gnome.org>
* src/filter-export-callbacks.c:
* macros/gnome-bonobo-check.m4:
* libbalsa/mailbox_mbox.c: Fixed the typo "occured"
(also in all effected PO files to avoid fuzzyness)
2005-08-21 09:04 PeterB
* doc/C/: balsa.xml, figures/message-window.png,
figures/msg-part-select.png: message window documentation
contributed by Craig Routledge <webstuff at craigroutledge dot
cm,dom>; fix "unmatched element" warnings.
2005-08-17 19:03 PeterB
* src/balsa-app.c: free filters after destroying mailboxes (fixes a
crash-on-exit).
2005-08-04 14:14 PeterB
* src/filter-run-callbacks.c, src/filter-run-dialog.c,
src/filter-run.h, doc/C/balsa.xml: use separate "apply" buttons for
selected available filters and for mailbox filters.
2005-08-01 09:35 PeterB
* src/sendmsg-window.c: better fix for bug 312105; plug memory
leak.
2005-07-31 22:26 PeterB
* src/sendmsg-window.c: fix bug 312105.
* src/sendmsg-window.c: fix bug 312091.
2005-07-29 09:52 PeterB
* src/: balsa-mime-widget-text.c, sendmsg-window.c: fix some gcc
nitpicking.
2005-07-27 18:54 PeterB
* libbalsa/libbalsa-conf.c: use blank comment lines only to
separate groups.
* libbalsa/gmime-gpgme-context.c: compile with -D_FORTIFY_SOURCE=2.
2005-07-24 Carlos Morgado <chbm chbm.net>
* libbalsa/rfc3156.c: fix FC4 build
2005-07-24 09:03 PeterB
* configure.in, src/save-restore.c, src/threads.h,
libbalsa/address-book-extern.c, libbalsa/libbalsa.c,
libbalsa/mailbox_imap.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/send.c, libbalsa/send.h,
libbalsa/imap/imap-commands.c, libbalsa/imap/imap-handle.c: compile
with -D_FORTIFY_SOURCE=2.
* src/balsa-mime-widget-message.c: do not create separate Fcc
header.
* libbalsa/message.c: make a single References user-header.
* libbalsa/abook-completion.c: match quoted names and
angle-bracketed mailboxes.
2005-07-23 Pawan Chitrakar <pawan@nplinux.org>
* configure.in: Added ne in ALL_LINGUAS
2005-07-18 08:04 PeterB
* src/sendmsg-window.c: make References header according to RFC
2822.
2005-07-15 10:53 PeterB
* src/sendmsg-window.c: replace CR and LF in subject header with
spaces.
2005-07-12 13:32 PeterB
* src/save-restore.c: fix typo; clean up old filters correctly.
* src/filter-edit-dialog.c: set button sensitivity when filter name
is changed.
* libbalsa/: libbalsa-conf.c, libbalsa-conf.h: use default GKeyFile
list separator; implement libbalsa_conf_get_vector_with_default
directly instead of as a macro.
2005-07-11 12:32 PeterB
* src/store-address.c: use balsa_information instead of writing in
appbar.
* src/spell-check.c: use values from correct enum.
* src/mailbox-node.c: use consistent return sequence.
* src/: filter-edit-callbacks.c, filter-edit-dialog.c,
filter-edit.h: use a single field-frame.
2005-07-09 23:33 PeterB
* src/information-dialog.c: use only single-line messages in status
bar.
2005-07-08 Pawel Salek
* configure.in: -Wdeclare-after-statement is gcc>=4.0 specific.
2005-07-07 23:27 PeterB
* src/balsa-index.c: lock a GMimeStream.
* src/: save-restore.c, save-restore.h: export
config_address_books_load.
* src/mailbox-node.c: downgrade scanning problem from error to
warning.
* src/balsa-app.c: clean up.
* src/address-book-config.c: no need to include address-book-gpe.h.
* src/: ab-window.c, ab-window.h: reimport all address books after
editing.
* src/ab-main.c: show default address book initially.
* libbalsa/rfc3156.c, src/pref-manager.c, src/sendmsg-window.c:
translate strings marked for translation.
* libbalsa/: libbalsa.c, libbalsa.h: include address-book-gpe.h in
libbalsa.h.
* libbalsa/libbalsa-conf.c: detect external modification of config
file.
* configure.in: catch declaration-after-statement.
2005-07-06 Jens Granseuer
* src/filter-run-callbacks.c: fix bug 309574.
2005-07-06 Pawel Salek
* src/ab-window.c: use our address book editor.
* NEWS, configure.in: release balsa-2.3.4.
2005-07-01 16:14 PeterB
* libbalsa/mailbox_pop3.c: destroy LibBalsaMailboxView for POP
temporary mailbox.
2005-07-01 Pawel Salek
* libbalsa/imap/pop3.c: fix handling rejected POP3 TLS certs #308932.
2005-06-30 21:41 PeterB
* libbalsa/imap/imap-commands.c: use more of the GString api.
* src/address-book-config.c: make sure filename is shown for
LibBalsaAddressBookText.
* src/ab-main.c: show address book type in window title; implement
File->delete.
* libbalsa/address-book-text.c: invalidate time stamp when we
change the address book.
* libbalsa/address-book-ldif.c: ensure blank line before new entry.
* src/main-window.c: make progress bar faster than a snail.
* libbalsa/libbalsa-conf.c: use g_file_set_contents to rewrite
config files.
2005-06-24 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/body.[hc]: implement libbalsa_message_body_protect_state().
* src/Makefile.am: add 7+7 balsa-mime-widget source files.
* src/balsa-message.[ch]: use the cleaner design from balsa-mime-widget.
2005-06-22 Pawel Salek
* libbalsa/mailbox_imap.c: fix date searching when only upper
limit is present.
* libbalsa/mailbox_pop3.c: fix memory leak.
* libbalsa/imap/imap-search.c: date::range must be signed.
* src/filter-edit-callbacks.c: clean up filter dialog.
* src/filter-run-{callbacks,dialog}.c: fix "run filters".
* src/filter-run.h: add fr_apply_pressed() prototype.
2005-06-17 08:31 PeterB
* libbalsa/address-book-vcard.c, libbalsa/address.c,
src/Makefile.am, src/ab-main.c, src/address-book-config.c,
src/address-book-config.h: implement File->New and File->Properties
in balsa-ab.
2005-06-16 Pawel Salek
* libbalsa/imap/auth-gssapi.c: 6th parameter to gss_{un,}wrap is int*.
2005-06-14 12:48 PeterB
* src/sendmsg-window.c: clear BalsaSendmsg::in_reply_to.
* src/sendmsg-window.h: omitted from yesterday's commit.
2005-06-13 23:59 PeterB
* src/sendmsg-window.c: create in-reply-to string when we begin a
reply, so we can save and restore it without reference to the
original message.
* src/: balsa-message.c, information-dialog.c: use
GTK_WRAP_WORD_CHAR instead of GTK_WRAP_WORD, to allow wrapping of
long words.
* libbalsa/misc.c: trim trailing whitespace beyond the wrap length.
* src/balsa-app.h: use only Monospace and Sans as default fonts.
2005-06-11 Pawel Salek
* libbalsa/imap/imap-handle.c: fix trivial bug introduced yesterday.
2005-06-10 Pawel Salek
* libbalsa/mailbox_imap.c: survive better cases
when number of messages changed in the broken connection. Resync
header caches more aggresively.
* libbalsa/imap/imap-commands.c: use UID search support.
* libbalsa/imap/imap-handle.h: allow searching ranges of messages.
* libbalsa/imap/imap-handle.c: never insert cmd==0 to response queue.
* libbalsa/imap/imap-search.c: implement it.
* src/ab-window.c: Fix "No-address-book" case (bug 158939).
* src/main-window.[hc]: ditto.
* src/pref-manager.c: ditto.
2005-06-08 Andrew Lau
* libbalsa/address-book-ldap.c: include "i18n.h".
2005-06-08 14:13 PeterB
* src/balsa-message.c, src/print.c, src/sendmsg-window.c,
libbalsa/libbalsa.c, libbalsa/libbalsa.h, libbalsa/mailbox.c,
libbalsa/message.h: rename libbalsa_date_to_gchar as
libbalsa_date_to_utf8, and return a UTF-8 string.
* src/ab-main.c: reuse edit widget for smoother update; reload
address book after changing it.
* src/address-book-config.c: use new LibBalsaAddressBook subclass
structure.
* libbalsa/Makefile.am: add dependencies.
* libbalsa/: address.c, address.h: use an editable GtkTreeView to
edit email addresses; implement libbalsa_address_set_edit_entries
to reuse an edit widget.
* libbalsa/: address-book-ldif.c, address-book-ldif.h,
address-book-text.c, address-book-text.h, address-book-vcard.c,
address-book-vcard.h, address-book.c, address-book.h: new class
LibBalsaAddressBookText, subclass of LibBalsaAddressBook, with
LibBalsaAddressBook{Ldif,Vcard} as subclasses.
2005-06-07 11:56 PeterB
* libbalsa/: rfc3156.c, gmime-part-rfc2440.c: lock GMimeStreams.
2005-06-06 Pawel Salek
* libbalsa/gmime-gpgme-signature.c: check gpgme_get_key() result.
* libbalsa/libbalsa.c: fix bug 306666.
* libbalsa/send.c: allow the user to check certificates w/o threads.
* src/main-window.c: mbnode->name can be NULL - do not use it
and perhaps fix 306636.
* NEWS: update for real 2.3.3 release this time.
2005-06-05 Pawel Salek
* libbalsa/mailbox_imap.c: Peter found one more fault in imap scanning.
* NEWS, configure.in: update for release 2.3.3
2005-06-04 Pawel Salek
* balsa.spec.in: extend list of dependencies.
* libbalsa/folder-scanners.c: flags are passed by value.
* libbalsa/imap/auth-gssapi.c: continue authentication on invalid key.
* libbalsa/imap/imap-handle.c: pass flags by value - address was
truncated by the marshaller on 64-bit machines.
2005-06-01 20:54 PeterB
* libbalsa/message.c: lock a GMimeStream.
2005-05-28 23:12 PeterB
* libbalsa/libbalsa.c: look for /var/mail/$USER before
/var/spool/mail/$USER: fixes bug 305659.
* src/mailbox-node.c: make popup menu more appropriate: fixes
bug 305668.
2005-05-26 16:13 PeterB
* src/ab-main.c: make radio list work; set window title to be
address book name.
* libbalsa/source-viewer.c: lock a GMimeStream.
2005-05-24 09:09 PeterB
* libbalsa/gmime-part-rfc2440.c: lock a GMimeStream.
2005-05-24 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/gmime-gpgme-signature.c: fix the signature verification
output.
* src/balsa-message.c: check the result of
libbalsa_mailbox_get_message_part().
* balsa.spec.in: clean up and fedora extras adaptation.
2005-05-23 19:36 PeterB
* configure.in, libbalsa/address-book-gpe.c,
libbalsa/address-book-gpe.h, src/address-book-config.c: support
SQLite Version 3--fixes bug 305152.
* libbalsa/libbalsa-conf.c: compile on systems where gsize !=
guint.
2005-05-22 17:11 PeterB
* libbalsa/: Makefile.am, body.c, gmime-part-rfc2440.c, html.c,
mailbox_imap.c, mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c,
message.c, mime-stream-shared.c, mime-stream-shared.h, rfc3156.c,
send.c: implement LibBalsaMimeStreamShared, a subclass of
GMimeStreamFs with a lock; use it in LibBalsaMailboxMbox in place
of the fine-grained mailbox lock.
2005-05-21 Pawel Salek
* libbalsa/mailbox_imap.c: get properly signed parts.
* src/balsa-message.c: do not reset status of a checked sig.
2005-05-21 09:41 PeterB
* src/save-restore.c: save message counts only when they are
time-stamped.
2005-05-20 23:56 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox.h,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_maildir.h,
libbalsa/mailbox_mbox.c, libbalsa/mailbox_mh.c,
libbalsa/mailbox_mh.h, src/save-restore.c: save and restore
mod_time for local mailboxes.
2005-05-12 18:08 PeterB
* libbalsa/mailbox_mbox.c: use light-weight parser at get-message
time.
* src/save-restore.c: really remove unused mailbox views.
* libbalsa/address-book-extern.c: fix last part of bug 155382.
2005-05-09 08:32 PeterB
* src/balsa-index.c: non-modal pipe-message dialog.
2005-05-07 Pawel Salek
* libbalsa/libbalsa{,-conf}.c: disable debugging output.
* NEWS, configure.in: release 2.3.2
2005-05-07 Pawel Salek
* balsa.1.in: merge patch in DBTS #269787, bugzilla 303422.
* libbalsa/address-book-extern.c: fix DBTS#306556, bugzilla 303421.
* libbalsa/address-book-gpe.c: remove duplicates from the returned list.
* src/ab-window.c: select initially displayed list in the combo.
* src/address-book-config.c: fix bad_path() for gtk < 2.6.0.
* src/pref-manager.c: Display type of extern address book.
* src/balsa-app.c: do not crash when non-existing mailbox specified with -o.
* src/balsa-mblist.c: fix -u command line option.
* src/main.c: ditto + fix -a when passing it via bonobo.
2005-05-06 23:19 PeterB
* src/save-restore.c: slightly more 2.0.x compatibility.
* libbalsa/mailbox_mbox.c: use a separate pthread_mutex_t for
lbm_mbox_mime_stream_lock().
* src/: filter-edit-callbacks.c, filter-edit-dialog.c,
filter-edit.h: manage button sensitivity better.
2005-05-06 Pawel Salek
* src/mailbox-conf.c: do not attempt opening closed mailboxes just
because their configuration is about to get changed.
* src/save-restore.c: s,sa --learn,sa-learn --spam,g.
2005-05-04 Pawel Salek
* libbalsa/imap/imap-handle.c: nail down the broken IDLE connection
problem.
2005-05-03 22:43 PeterB
* src/: balsa-app.h, balsa-index.c, balsa-index.h, main-window.c,
save-restore.c: add a drop-down list of most recently used pipe
commands; pipe all selected messages through command.
* libbalsa/mailbox.c, libbalsa/mailbox.h, libbalsa/mailbox_imap.c,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/message.c, libbalsa/message.h,
libbalsa/send.c, libbalsa/source-viewer.c, src/main-window.c:
replace message argument of libbalsa_mailbox_get_message_stream with
msgno; implement and use libbalsa_message_stream(LibBalsaMessage *
message).
2005-05-02 23:58 PeterB
* libinit_balsa/balsa-druid-page-user.c: fix bug 302782.
2005-05-02 Pawel Salek
* NEWS, configure.in: release 2.3.1.
* libbalsa/mailbox_imap.c: handle empty msg-id over imap right.
2005-05-01 Pawel Salek
* libbalsa/mailbox_imap.c: implement remove-duplicates for imap too.
* libbalsa/imap/imap-commands.c: FetchBodyCb callbacks get seqno now.
* libbalsa/imap/imap-commands.h: add imap_mbox_complete_msgids.
* libbalsa/imap/imap-handle.c: handle arbitrary header fetches.
2005-04-30 19:57 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox.h, libbalsa/mailbox_local.c,
src/main-window.c: restore remove-duplicates functionality.
2005-04-28 Pawel Salek
* libbalsa/folder-scanners.c: don't break with uw-imap server.
2005-04-27 20:17 PeterB
* libbalsa/folder-scanners.c, libbalsa/folder-scanners.h,
src/mailbox-node.c: simplify folder scanning.
2005-04-26 14:08 PeterB
* libbalsa/identity.c, src/pref-manager.c: compile --without-esmtp
and --without-gpgme.
2005-04-21 Pawel Salek
* libbalsa/folder-scanners.c: block list-response when asking
for a delimiter.
* libbalsa/imap-server.[ch]: allow checking for new mail with STATUS.
* libbalsa/smtp-server.c: keep old behavior and always save passwd.
* libbalsa/imap/imap-commands.[ch]: implement imap_mbox_status().
* libbalsa/imap/imap-handle.c: handle its response.
* libbalsa/imap/imap_private.h: even for several issued in parallel.
* src/folder-conf.c: configure it.
2005-04-20 21:26 PeterB
* src/sendmsg-window.c: simplify setting identity.
* libbalsa/imap-server.c, libbalsa/mailbox_pop3.c,
libbalsa/server.c, libbalsa/server.h, libbalsa/smtp-server.c,
src/folder-conf.c, src/pref-manager.c: lose LibBalsaServer::type.
* libbalsa/mailbox.c, libbalsa/mailbox.h,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, src/balsa-mblist.c, src/save-restore.c: add
unread and total members to LibBalsaMailboxView, and save them in
the config file.
* libbalsa/libbalsa-conf.c: preserve blank lines between sections
in the config file.
2005-04-19 Pawel Salek
* libbalsa/folder-scanners.[hc]: avoid redundant queries for IMAP
hierarchy delimiters.
* src/mailbox-node.[ch]: ... because we store earlier answers.
2005-04-18 Pawel Salek
* libbalsa/imap/imap-handle.c: silence output on the terminal.
* src/balsa-icons.c: silence icon debugging.
* src/sendmsg-window.c: specify exactly file names in messages -
important when attaching multiple messages at once.
2005-04-17 10:57 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_local.c: don't keep
selected message displayed when changing view filter.
2005-04-16 22:37 PeterB
* src/save-restore.c, libbalsa/identity.c: compile with gpgme but
without libesmtp.
* src/pref-manager.c: append server to balsa_app.smtp_servers when
the user OKs it.
2005-04-16 20:23 Pawel Salek
* libbalsa/identity.[ch]: compile --without-gpgme
* libbalsa/imap/imap-handle.c: survive better broken connections.
* src/mailbox-conf.c: generate shorter identity names.
* src/save-restore.c: more robust smtp server config loading.
2005-04-16 08:01 PeterB
* libbalsa/i18n.h: comment that this header must be included last.
* libbalsa/smtp-server.c: include "i18n.h" last.
2005-04-15 17:28 PeterB
* libbalsa/Makefile.am, libbalsa/identity.c, libbalsa/identity.h,
libbalsa/libbalsa.h, libbalsa/message.c, libbalsa/send.c,
libbalsa/send.h, libbalsa/server.h, libbalsa/smtp-server.c,
libbalsa/smtp-server.h, libinit_balsa/balsa-druid-page-user.c,
src/balsa-app.c, src/balsa-app.h, src/balsa-message.c,
src/main-window.c, src/pref-manager.c, src/save-restore.c,
src/sendmsg-window.c: implement LibBalsaSmtpServer; use it for
per-identity server.
2005-04-12 12:31 PeterB
* libbalsa/html.c: convert charset more carefully.
2005-04-10 20:28 PeterB
* libbalsa/mailbox_maildir.c: do not overwrite message when
renaming.
* libbalsa/mailbox_maildir.c: remember correct file name.
2005-04-08 14:30 PeterB
* src/save-restore.c: use correct filter group name; remove filter
groups with malformed names.
2005-04-07 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-message.c: save multiple parts.
2005-04-07 11:18 PeterB
* src/sendmsg-window.c: check for NULL charset.
2005-04-06 16:45 PeterB
* libbalsa/body.c: ensure stream is a filter-stream.
2005-04-05 20:36 PeterB
* src/sendmsg-window.c, src/sendmsg-window.h, libbalsa/filter.c,
libbalsa/mailbox_local.c, libbalsa/mime.c, libbalsa/mime.h: yet
another shot at finding the best charset in the compose window.
* src/sendmsg-window.c: destroy file-chooser dialogs with
their parent.
2005-04-05 Pawel Salek
* libbalsa/imap/imap-handle.c: proper types for list-response
signal handlers.
* libbalsa/imap/libimap-marshal.list: ditto.
* libbalsa/imap/imap-search.c: compile on darwin.
2005-04-03 Pawel Salek
* Makefile.am: s,m4,macros,g;
* balsa.spec.in: compile on suse.
* configure.in:
* libbalsa/imap/auth-gssapi.c: compile against heimdal.
2005-04-01 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-04-01 18:46 PeterB
* src/sendmsg-window.c: omit all identity addresses from cc header.
* src/balsa-message.c, src/print.c, libbalsa/body.c,
libbalsa/html.c, libbalsa/html.h: move charset conversion for html
parts to libbalsa/html.c, as it's handled differently by the two
widgets.
2005-03-31 19:58 PeterB
* src/sendmsg-window.c: remember folder when including file in
message content.
2005-03-30 19:45 PeterB
* src/balsa-message.c: fix bug 172145.
2005-03-29 21:16 PeterB
* src/balsa-message.c: fix bug 172005.
* libbalsa/rfc3156.c: pass NULL to g_locale_to_utf8 instead of
(ssize_t *), to keep gcc4 quiet.
* src/: balsa-message.c, sendmsg-window.c: use glib macros to cast
int to pointer and back.
2005-03-26 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/rfc3156.c: plug in recently introduced DoS.
2005-03-24 06:59 PeterB
* src/ab-main.c: set all locales.
* src/main.c: set all locales.
* src/main-window.c: make label localizable.
2005-03-24 Pawel Salek
* libbalsa/address-book-ldap.c: add missing libbalsa-conf.h
* balsa.spec.in: update icon cache after rpm installation.
* images/Makefile.am: bug 171388.
2005-03-23 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-message.c, libbalsa/gmime-gpgme-context.c,
libbalsa/gmime-gpgme-context.h, libbalsa/identity.c,
libbalsa/identity.h, libbalsa/rfc3156.c, libbalsa/rfc3156.h,
libbalsa/send.c: (1) plug a minor security problem when checking
the gpg subkey status; (2) improve dealing with low-validity uid's
for encryption; (3) several smaller fixes.
2005-03-23 PeterB
* libbalsa/rfc3156.c: fix bug 171415.
* libbalsa/address-book-ldap.c, src/ab-main.c: complete migration
from GnomeConfig to LibbalsaConf.
* src/sendmsg-window.c: strip parameter variables from exec string.
2005-03-22 22:07 PeterB
* libbalsa/: libbalsa-conf.c, libbalsa-conf.h: set up correctly for
new user.
* libbalsa/libbalsa-conf.c: more careful rewrite, more user
feedback.
* src/main.c: set balsa_icon.png as default window icon.
* src/: balsa-message.c, sendmsg-window.c: always pass URI to
gnome_vfs_mime_application_launch.
* src/sendmsg-window.c: more appropriate version checks.
* libbalsa/libbalsa-conf.c: organize key-file info into structures.
2005-03-21 08:08 PeterB
* configure.in, src/balsa-message.c, src/sendmsg-window.c: check
for GnomeVFS version 2.9 instead of 2.8.
2005-03-20 15:03 PeterB
* libbalsa/libbalsa-conf.c: initialize only once in non-threaded
build.
* libbalsa/libbalsa-conf.c: store new config files in ~/.balsa.
* configure.in, libbalsa/misc.c, libbalsa/misc.h,
src/balsa-message.c, src/sendmsg-window.c: more appropriate version
checks.
2005-03-20 Pawel Salek
* src/address-book-config.c: s,GNOME_DISABLE_DEPR,GTK_DISABLE_DEPR,
2005-03-19 23:00 PeterB
* libbalsa/libbalsa-conf.h: check Gtk version.
* libbalsa/Makefile.am, libbalsa/address-book-ldif.c,
libbalsa/address-book.c, libbalsa/body.c, libbalsa/files.c,
libbalsa/filter-file.c, libbalsa/filter.h,
libbalsa/folder-scanners.c, libbalsa/gmime-part-rfc2440.c,
libbalsa/html.c, libbalsa/identity.c, libbalsa/libbalsa-conf.c,
libbalsa/libbalsa-conf.h, libbalsa/libbalsa.c,
libbalsa/mailbox-filter.c, libbalsa/mailbox.c, libbalsa/mailbox.h,
libbalsa/mailbox_imap.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/message.c, libbalsa/misc.c,
libbalsa/rfc3156.c, libbalsa/send.c, libbalsa/source-viewer.c,
libbalsa/imap/imap-commands.c, libbalsa/imap/imap-commands.h,
libbalsa/imap/md5-utils.c, libbalsa/imap/md5-utils.h,
libbalsa/imap/util.c, libbalsa/imap/util.h,
libinit_balsa/Makefile.am, src/Makefile.am, src/ab-main.c,
src/balsa-message.c, src/filter-edit-callbacks.c,
src/mailbox-node.c, src/print.c, src/quote-color.c,
src/quote-color.h, src/save-restore.c, src/sendmsg-window.c: more
Gnome deprecation cleanup, including a GKeyFile replacement for
GnomeConfig; fix some nit-picking from gcc 4; restore the
*_DISABLE_DEPRECATED defs.
* src/sendmsg-window.c: check whether CP125x charset is ok.
2005-03-18 16:29 PeterB
* src/main.c: get mbnode before checking it.
2005-03-17 Pawel Salek
* libbalsa/imap/imap-handle.c: make the IDLE code behave better
on broken connections.
* src/balsa-app.h: add pipe_cmd field.
* src/main-window.c: allow for piping a message through an
external program. (bug 153386).
* src/save-restore.c: save and restore last pipe_cmd.
2005-03-16 Pawel Salek
* libbalsa/imap/imap-handle.c: provide more info on SSL-related
failures.
2005-03-15 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/send.c: don't unref NULL GObject.
2005-03-15 13:03 PeterB
* libbalsa/body.c: convert charset also for html parts (fixes
bug 170456).
* libbalsa/mailbox_imap.c: use delim to build path when renaming;
use g_build_path() for IMAP paths.
2005-03-14 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/message.h, libbalsa/send.c, libbalsa/send.h,
src/balsa-app.c, src/balsa-app.h, src/balsa-message.c,
src/pref-manager.c, src/save-restore.c, src/sendmsg-window.c: use
only quoted-printable encoding.
2005-03-14 19:42 PeterB
* libbalsa/body.c: use string returned by
g_mime_filter_windows_real_charset() before it's deallocated.
2005-03-10 10:42 PeterB
* libbalsa/body.c, libbalsa/filter.c, libbalsa/mailbox_local.c,
libbalsa/message.c, libbalsa/mime.c, libbalsa/mime.h,
src/sendmsg-window.c, src/sendmsg-window.h: keep track of charset
instead of using g_mime_charset_best().
2005-03-08 18:40 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/gmime-part-rfc2440.c: replace use of
g_mime_content_type_[gs]et_parameter() by
g_mime_object_[gs]et_content_type_parameter(), and
g_mime_part_get_content_type() by g_mime_object_get_content_type().
2005-03-08 10:43 PeterB
* libbalsa/: mailbox.c, mailbox.h: remember that we loaded filters.
* src/filter-edit-callbacks.c: don't set empty filename; comment
out unused LIBESD condition.
* libbalsa/Makefile.am, libbalsa/filter-file.c, libbalsa/filter.h,
libbalsa/libbalsa-conf.c, libbalsa/libbalsa-conf.h,
libbalsa/mailbox-filter.c, src/save-restore.c: move all
GnomeConfigIterator code to (new) libbalsa-conf.c; implement
GnomeConfig version of libbalsa_conf_foreach_section.
2005-03-04 19:56 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/gmime-part-rfc2440.c, src/balsa-message.c,
src/balsa-message.h, src/sendmsg-window.c: add and evaluate the RFC
2440 headers properly; write the stream to a new (plain) stream;
rename libbalsa_msg_perform_crypto to balsa_message_perform_crypto,
add a parameter to decrypt only and export the function; call
balsa_message_perform_crypto() to fix the bug Kacper reported.
2005-03-03 20:07 PeterB
* libbalsa/: mailbox_mbox.c, mailbox_mbox.h: implement
lbm_mbox_mime_stream_{lock,unlock}; use them to avoid interruption
of a sequence of GMimeStream operations.
2005-03-01 09:49 PeterB
* src/sendmsg-window.c: make file choosers transient for compose
window.
2005-02-28 09:09 PeterB
* libbalsa/libbalsa.c, libbalsa/libbalsa.h, libbalsa/mailbox.c,
src/main.c: move balsa_threads_{enter,leave} to
libbalsa/libbalsa.c; change libbalsa_lock_mailbox to reflect
recursive gdk lock and remove assumptions about
main-thread/sub-thread; hold mailbox lock before asking for gdk
lock.
* libbalsa/imap/imap-handle.c: downgrade warnings to messages.
* libbalsa/misc.c: fix test for "<URL:" [fixes Bug 168732].
* src/balsa-index.c: mysterious adjustment to width of icon
columns [fixes Bug 168733].
2005-02-27 14:35 PeterB
* libbalsa/message.c, libbalsa/message.h, libbalsa/send.c,
src/sendmsg-window.c, src/sendmsg-window.h: use
g_mime_charset_best() to encode message content.
* libbalsa/mailbox_local.c: get message when needed for matching
(2 commits).
* libbalsa/mailbox.c: check for zero message count before changing
flags.
2005-02-25 11:29 PeterB
* src/address-book-config.c: use correct Gtk response.
2005-02-24 Pawel Salek
* src/pref-manager.c: compile with C89 (contributed by Jens Granseuer).
2005-02-23 Pawel Salek
* NEWS: release 2.3.0
* libbalsa/mailbox_local.c: fix one of the problems with msg filtering.
2005-02-22 19:53 PeterB
* src/main-window.c: remove ctrl+F accelerator from forward-inline.
2005-02-20 Kacper Wysocki <kacperw at online dot no>
* libbalsa/imap/pop3.c: const char *service should not be static.
2005-02-20 Pawel Salek
* balsa.spec.in: icon-related updates.
* libbalsa/imap/imap-commands.c: enable IDLE only when really disabled.
* libinit_balsa/balsa-druid-page-user.c: do not require incoming server
2005-02-20 12:05 PeterB
* src/: balsa-icons.h, balsa-index.c, main-window.c: remove
BALSA_PIXMAP_MENU_* definitions.
* src/balsa-message.c: make OK the default response in save dialog.
2005-02-20 Craig Routledge <webstuff at craigroutledge dot com>
* src/main-window.c: bump the date in the about dialog.
* doc/C/balsa.xml: bring the Main Window section of the help file
up to sync with the user interface.
* src/balsa-message.c: add tooltips to the "check crypto" and
"attachment" icons.
2005-02-16 20:20 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/misc.c, libbalsa/misc.h, src/balsa-message.c,
src/sendmsg-window.c: implement libbalsa_ia_rfc2821_equal and use
it to exclude self from cc list.
2005-02-16 09:13 PeterB
* src/mailbox-conf.c: manage sensitivity of the OK/Update button.
2005-02-15 21:48 Craig Routledge <webstuff@craigroutledge.com>
* src/balsa-message.c: better handling of
"application/octet-stream".
2005-02-15 21:48 PeterB
* src/balsa-message.c: don't allocate unnecessary address strings.
* libbalsa/: body.c, mailbox_mbox.c: let GMimeStreams work
end-to-end when possible.
2005-02-14 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add «nb» to ALL_LINGUAS.
2005-02-11 19:38 PeterB
* src/sendmsg-window.c, libbalsa/misc.c: use
"application/octet-stream" as a last resort.
2005-02-09 20:33 PeterB
* libbalsa/mailbox.c: don't lock mailbox to change a pseudo-flag.
* src/main-window.c: fix the About dialog.
2005-02-08 17:33 PeterB
* src/save-restore.c: save the sanitized toolbar.
* libbalsa/imap/imap-handle.c: typo.
2005-02-08 Pawel Salek
* libbalsa/imap/imap-handle.c: unregister IDLE listener on
error.
* libbalsa/imap/imap-tls.c: related connection shutting cleanup.
* libbalsa/imap/imap_private.h: add imap_handle_disconnect() proto.
2005-02-07 20:45 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/: save-restore.c, toolbar-factory.c, toolbar-factory.h: fix
old toolbar button compatibility.
2005-02-07 Pawel Salek
* src/address-book-config.c: compile with gtk-2.4
* balsa.spec.in: distribute new icons.
* configure.in: bump version to 2.3.0.
* images/24x24/Makefile.am: fix install-data-hook:
* libbalsa/Makefile.am: add missing i18n.h file.
* libbalsa/mailbox_imap.c: remove debugging output.
2005-02-06 20:43 PeterB
* configure.in, images/16x16/Makefile, images/16x16/Makefile.in,
images/24x24/Makefile, images/24x24/Makefile.in,
libbalsa/address-book-extern.c, libbalsa/address-book-ldif.c,
libbalsa/address-book-vcard.c, libbalsa/address-book.c,
libbalsa/address.c, libbalsa/body.c, libbalsa/filter-error.c,
libbalsa/filter-file.c, libbalsa/filter.c,
libbalsa/gmime-application-pkcs7.c, libbalsa/gmime-gpgme-context.c,
libbalsa/i18n.h, libbalsa/identity.c, libbalsa/imap-server.c,
libbalsa/libbalsa-conf.h, libbalsa/libbalsa.c,
libbalsa/mailbox-filter.c, libbalsa/mailbox.c,
libbalsa/mailbox_imap.c, libbalsa/mailbox_local.c,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/mailbox_pop3.c, libbalsa/message.c,
libbalsa/mime.c, libbalsa/misc.c, libbalsa/send.c,
libbalsa/server.c, libbalsa/source-viewer.c,
libinit_balsa/balsa-druid-page-defclient.c,
libinit_balsa/balsa-druid-page-directory.c,
libinit_balsa/balsa-druid-page-finish.c,
libinit_balsa/balsa-druid-page-user.c,
libinit_balsa/balsa-druid-page-welcome.c,
libinit_balsa/balsa-initdruid.c, libinit_balsa/helper.c,
libinit_balsa/init_balsa.c, src/ab-window.c,
src/address-book-config.c, src/address-book-config.h,
src/balsa-app.c, src/balsa-index.c, src/balsa-mblist.c,
src/balsa-message.c, src/filter-edit-callbacks.c,
src/filter-edit-dialog.c, src/filter-export-callbacks.c,
src/filter-export-dialog.c, src/filter-run-callbacks.c,
src/filter-run-dialog.c, src/folder-conf.c,
src/information-dialog.c, src/mailbox-conf.c, src/mailbox-node.c,
src/main-window.c, src/main.c, src/message-window.c,
src/pref-manager.c, src/print.c, src/save-restore.c,
src/sendmsg-window.c, src/spell-check.c, src/store-address.c,
src/toolbar-factory.c, src/toolbar-prefs.c: install and use
libbalsa/i18n.h; migrate from GnomeFileEntry to GtkFileChooser;
other Gnome-deprecation cleanup.
2005-02-06 18:45 Albrecht Dreß <albrecht dot dress at arcor dot de>
* configure.in, images/Makefile.am, images/16x16/Makefile,
images/16x16/Makefile.am, images/16x16/Makefile.in,
images/16x16/balsa-encrypted.png, images/16x16/balsa-mark-all.png,
images/16x16/balsa-mbox-draft.png,
images/16x16/balsa-mbox-sent.png,
images/16x16/balsa-mbox-tray-empty.png,
images/16x16/balsa-mbox-tray-full.png,
images/16x16/balsa-next-flagged.png,
images/16x16/balsa-next-part.png,
images/16x16/balsa-next-unread.png, images/16x16/balsa-next.png,
images/16x16/balsa-postpone.png,
images/16x16/balsa-previous-part.png,
images/16x16/balsa-previous.png, images/16x16/balsa-reply-all.png,
images/16x16/balsa-signature-bad.png,
images/16x16/balsa-signature-good.png,
images/16x16/balsa-signature-notrust.png,
images/16x16/balsa-signature-unknown.png, images/24x24/Makefile,
images/24x24/Makefile.am, images/24x24/Makefile.in,
images/24x24/balsa-crypt-check.png, images/24x24/balsa-encrypt.png,
images/24x24/balsa-encrypted.png, images/24x24/balsa-mark-all.png,
images/24x24/balsa-marked-new.png,
images/24x24/balsa-next-flagged.png,
images/24x24/balsa-next-part.png,
images/24x24/balsa-next-unread.png, images/24x24/balsa-next.png,
images/24x24/balsa-postpone.png, images/24x24/balsa-preview.png,
images/24x24/balsa-previous-part.png,
images/24x24/balsa-previous.png, images/24x24/balsa-reply-all.png,
images/24x24/balsa-sign.png, images/24x24/balsa-signature-bad.png,
images/24x24/balsa-signature-good.png,
images/24x24/balsa-signature-notrust.png,
images/24x24/balsa-signature-unknown.png,
images/24x24/balsa-trash-empty.png, images/mimetypes/Makefile.am,
src/balsa-icons.c, src/balsa-icons.h, src/balsa-index.c,
src/balsa-mblist.c, src/balsa-message.c, src/filter-edit-dialog.c,
src/main-window.c, src/message-window.c, src/sendmsg-window.c,
src/spell-check.c, src/toolbar-factory.c, src/toolbar-prefs.c:
themable icons.
2005-02-06 Pawel Salek
* libbalsa/mailbox_imap.c: fix some corner cases for
LibBalsaMessageBody-to-imap section transformation.
* libbalsa/mailbox_pop3.c: use backend SSL option.
* libbalsa/imap/imap-commands.[ch]: do not guess whether part headers
are to be fetched - say it clearly.
* libbalsa/imap/imap-handle.c: process all data in IDLE callback.
2005-02-06 Pawel Salek
* libbalsa/body.[hc]: filter CRLF on saving text parts.
* src/balsa-message.c, sendmsg-window.c: adapt to changed API.
* libbalsa/html.c: HAVE_GNOME related fixes.
2005-02-05 17:50 PeterB
* libbalsa/Makefile.am, libinit_balsa/Makefile.am, src/Makefile.am:
temporarily allow deprecated methods.
2005-02-05 17:49 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/sendmsg-window.c: fix DnD problem with escaped filenames.
2005-02-03 Pawel Salek
* libbalsa/imap/imap-handle.c: clean handle->sio field.
2005-02-02 Pawel Salek
* configure.in: minor reordering fixes.
* libbalsa/address-book-gpe.c: fix InternerAddress regression.
* libbalsa/source-viewer.c: do not expand menu (regression fixed).
* libbalsa/imap/imap-commands.c: enable/disable IDLE.
* libbalsa/imap/imap-{handle,search}.c: ditto.
* libbalsa/imap/imap_private.h: add IDLE related fields.
2005-01-29 Pawel Salek
* configure.in: do it by the book (literally).
* libbalsa/address-book-extern.c: remove uneeded GNOME dependency.
* libbalsa/*.c: ditto.
* libinit_balsa/*.c: Druid needs GNOME.
* src/balsa-app.c: remove BALSA_MAJOR <2 remains.
* src/print.c: drop old gnomeprint-1.* support.
2005-01-29 09:23 PeterB
* src/folder-conf.c: fix typo.
2005-01-28 08:44 Craig Routledge <webstuff at craigroutledge dot com>
* libbalsa/mailbox_local.c: fix bug #147380.
2005-01-27 Pawel Salek
* libbalsa/address-book-ldap.c: fix InternerAddress regression.
2005-01-22 Pawel Salek
* libbalsa/mailbox_imap.c: do not loose content type paramters -
fix message wrapping on replying.
2005-01-20 Pawel Salek
* libbalsa/address-entry.c: fix crashes on: domain-expanded
address selection; unparsable address.
2005-01-17 23:02 PeterB
* src/: balsa-message.c, sendmsg-window.c: port from
GtkFileSelection to GtkFileChooserDialog.
2005-01-17 18:14 Albrecht Dreß <albrecht.dress@arcor.de>
* src/balsa-message.c, libbalsa/misc.c, libbalsa/misc.h: multiline
URL highlighting.
2005-01-17 Pawel Salek
* libbalsa/address-entry.c: add missing #include.
* libbalsa/identity.h:
* libinit_balsa/balsa-druid-page-user.c: port it to InternetAddress.
2005-01-17 14:32 PeterB
* libbalsa/address-entry.c: use list->address instead of
internet_address_list_get_address.
2005-01-17 13:41 PeterB
* src/balsa-message.c, src/message-window.c, src/print.c,
src/save-restore.c, src/sendmsg-window.c, src/store-address.c,
libbalsa/abook-completion.c, libbalsa/abook-completion.h,
libbalsa/address-book-ldif.c, libbalsa/address-book-vcard.c,
libbalsa/address-entry.c, libbalsa/address-entry.h,
libbalsa/address.c, libbalsa/address.h, libbalsa/body.h,
libbalsa/files.h, libbalsa/filter.c, libbalsa/identity.c,
libbalsa/identity.h, libbalsa/libbalsa.h,
libbalsa/libbalsa_private.h, libbalsa/mailbox.c,
libbalsa/mailbox.h, libbalsa/mailbox_imap.c,
libbalsa/mailbox_local.c, libbalsa/mailbox_mbox.c,
libbalsa/message.c, libbalsa/message.h, libbalsa/misc.c,
libbalsa/misc.h, libbalsa/send.c: use GMime's InternetAddress
instead of LibBalsaAddress, except for address-book entries.
2005-01-17 10:36 PeterB
* src/: toolbar-factory.c, toolbar-prefs.c: remove redundant
includes.
2005-01-14 08:32 PeterB
* configure.in, images/Makefile.am, src/balsa-message.c,
src/expand-alias.c, src/expand-alias.h, src/sendmsg-window.c,
images/mimetypes/Makefile, images/mimetypes/Makefile.am,
images/mimetypes/Makefile.in,
images/mimetypes/gnome-mime-application-pgp-signature.png,
images/mimetypes/gnome-mime-application-pkcs7-mime.png,
images/mimetypes/gnome-mime-application-pkcs7-signature.png,
images/mimetypes/gnome-mime-application-x-pkcs7-signature.png,
images/mimetypes/gnome-mime-message-disposition-notification.png,
images/mimetypes/gnome-mime-message-external-body.png,
images/mimetypes/gnome-mime-message.png,
images/mimetypes/gnome-mime-multipart-alternative.png,
images/mimetypes/gnome-mime-multipart-encrypted.png,
images/mimetypes/gnome-mime-multipart-signed.png,
images/mimetypes/gnome-mime-multipart.png: install mime type icons;
simplify icon search.
2005-01-13 14:56 PeterB
* configure.in, libbalsa/address-entry.c, libbalsa/address-entry.h,
libbalsa/files.c, libbalsa/identity.c, libbalsa/mailbox.c,
libbalsa/misc.c, libbalsa/misc.h, libbalsa/send.c,
libbalsa/source-viewer.c, libinit_balsa/helper.c, src/Makefile.am,
src/ab-main.c, src/ab-window.c, src/balsa-app.c, src/balsa-index.c,
src/balsa-mblist.c, src/filter-edit-callbacks.c,
src/filter-edit-dialog.c, src/filter-edit.h, src/mailbox-conf.c,
src/main-window.c, src/main.c, src/pref-manager.c,
src/sendmsg-window.c, src/sendmsg-window.h, src/store-address.c,
src/toolbar-factory.c: require gtk+-2.0 >= 2.4 and remove
GTK_CHECK_VERSION(2,4,0) tests.
2005-01-12 Pawel Salek
* libbalsa/imap/imap-commands.c: work around broken dovecot indexes.
2005-01-07 09:47 PeterB
* src/main-window.c: Use hyphen instead of underscore in translator
credits.
* src/balsa-mblist.c: restore separator in
balsa_mblist_mru_option_menu(); remove unused variable.
2005-01-07 Pawel Salek
* libbalsa/libbalsa.h: add mailbox manipulation error codes.
* libbalsa/mailbox_imap.[hc]: return more info on error.
* src/folder-conf.c: handle errors better.
* src/mailbox-conf.c: ditto.
2005-01-06 Pawel Salek
* libbalsa/imap/imap-handle.c: silence debugging output.
* libinit_balsa/balsa-druid-page-user.[hc]: port initial wizard
improvements.
* src/balsa-mblist.c: protect against D&D crashes.
2005-01-05 09:05 PeterB
* libbalsa/mailbox_local.c: use second GNode tree in jwz-threading.
2005-01-04 Pawel Salek
* libbalsa/mailbox_local.c: remove bogus test from msg matching (PB).
2005-01-03 19:09 PeterB/manu <eallaud@yahoo.fr>
* libbalsa/mailbox_local.c: check for NULL msg-id.
2006-01-02 Pawel Salek
* libbalsa/filter.c, libbalsa/misc.[hc]: move in_string_utf8() to misc
* libbalsa/libbalsa_private.h:
* libbalsa/mailbox.c: move LibBalsaMailboxEntry def to private.h
* libbalsa/mailbox_local.c: implement faster searching code
(manyfold speedup for large mailboxes).
2004-12-31 12:08 Albrecht Dreß <albrecht.dress@arcor.de>
* libbalsa/body.h, libbalsa/files.c, libbalsa/files.h,
libbalsa/send.c, src/balsa-message.c, src/print.c,
src/sendmsg-window.c, src/pixmaps/info_lock.xpm,
src/pixmaps/info_lock_bad.xpm, src/pixmaps/info_lock_encr.xpm,
src/pixmaps/info_lock_good.xpm, src/pixmaps/info_lock_sigtrust.xpm:
new attachment handling code.
2004-12-30 17:04 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_local.c: reduce the
amount of tree modification when updating threading.
* libbalsa/send.c: convert file name to utf-8 for GMime.
2004-12-29 11:49 PeterB
* src/main-window.c: use BALSA_PIXMAP_CLOSE_MBOX instead of
GTK_STOCK_CLOSE for Close-mailbox menu item; use
GTK_ICON_SIZE_BUTTON for notebook label close button.
2004-12-27 10:02 PeterB
* libbalsa/files.c: do not bypass theme when mime-type and filename
are both NULL.
2004-12-26 18:45 PeterB
* libbalsa/body.c: g_mime_data_wrapper_write_to_stream() decodes
the transfer-encoding--we must not.
* libbalsa/files.c: look for themed mime-type icon.
2004-12-24 Pawel Salek
* libbalsa/body.c: always call gdk_pixbuf_loader_close().
* libbalsa/mailbox_pop3.c: do not try to move messages filtered
out by procmail.
2004-12-22 13:25 Albrecht Dreß <albrecht.dress@arcor.de>
* libbalsa/: body.c, mime.c: two minor gpg related fixes.
2004-12-20 12:33 PeterB
* src/: balsa-index.c, balsa-index.h: re-implement
balsa_index_{next,previous}_msgno.
* src/message-window.c: save more menu items; use
balsa_index_{next,previous}_msgno() to correctly manage menu item
and button sensitivity.
2004-12-18 Pawel Salek
* libbalsa/imap/imap-handle.c: forgive errors in BODYSTRUCTURE response
(work around #160083).
2004-12-18 Craig Routledge
* src/balsa-app.[ch]: add mw_action_after_move.
* src/message-window.c: use it.
* src/pref-manager.c: configure it.
* src/save-restore.c: save/restore it.
2004-12-16 14:34 PeterB
* libbalsa/body.c: if body->mime_part is a GMimeMessagePart, get
the stream for its message, not the part.
2004-12-15 06:43 PeterB
* libbalsa/body.c: add some checks.
2004-12-13 09:41 PeterB
* libbalsa/html.c: do not write zero bytes, to avoid a
gtkhtml-CRITICAL.
2004-12-12 12:23 PeterB
* libbalsa/mailbox_imap.c: check for NULL handle.
2004-12-09 15:45 PeterB
* libbalsa/address-entry.c, libbalsa/address-entry.h,
src/sendmsg-window.c: implement libbalsa_address_entry_addresses()
and use it to move address-counting to libbalsa.
2004-12-08 15:11 PeterB
* libbalsa/address.c: use InternetAddress methods to manage quoting
and stringifying.
* libbalsa/address-entry.c: use a hash table to hold
LibBalsaAddress objects; parse quoted strings more carefully.
2004-12-07 18:57 PeterB
* src/sendmsg-window.c: use libbalsa_wrap_rfc2646() to ensure
space-stuffing.
* libbalsa/misc.c: append spaces for DelSp=Yes.
* libbalsa/gmime-gpgme-context.h: replace GMIME_CHECK_* macros with
G_TYPE_*.
* libbalsa/mailbox_mbox.c: simplify From_ line armoring.
2004-12-06 16:23 PeterB
* libbalsa/: address.c, address.h: parse string with group address;
implement libbalsa_address_set_copy_member() to make a copy of a
LibBalsaAddress containing only one mailbox.
* libbalsa/address-entry.c: parse entry text with group address;
make only one completion item per address.
* libbalsa/address-book-vcard.c: when not in dist_list_mode and a
completion item has more than one address, make multiple
single-address LibBalsaAddress objects.
* libbalsa/: address.c, address.h, message.c: implement and use
libbalsa_address_new_list_from_gmime(); do not ignore RFC 2822
group addresses.
2004-12-04 08:39 PeterB
* src/: balsa-index.c, balsa-index.h, message-window.c: remove
balsa_index_next_.*_msgno api; implement balsa_index_select() and
use it to manage highlighting in the mailbox index.
|