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
|
2009-04-24 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #563954
* camel-groupwise-folder.c: (groupwise_cmp_uids),
(camel_groupwise_folder_class_init):
Define its own compare function for UIDs.
2009-04-13 Chenthill Palanisamy <pchenthill@novell.com>
* camel/providers/groupwise/camel-groupwise-store.c: Removed
the string marked for translation.
2009-04-13 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #471083 (bnc)
* camel/providers/groupwise/camel-groupwise-store.c: Sets the
System folder flag for system folders.
2009-03-19 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #477697
* camel/providers/groupwise/camel-groupwise-folder.c: Set the
display name. cleaned up the code which set it to null string
if display name appears in the form of email id.
2009-03-14 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #480091
* camel/providers/groupwise/camel-groupwise-folder.c:
* camel/providers/groupwise/camel-groupwise-store.c:
* camel/providers/groupwise/camel-groupwise-store.h: Use a utility
function to set the current_folder to maintain reference counts.
2009-03-05 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #465364
* camel-groupwise-folder.c (groupwise_populate_details_from_item),
(gw_update_cache), (gw_update_summary): Fixes the received time
set for meetings.
2009-02-16 Sankar P <psankar@novell.com>
* camel/providers/groupwise/camel-groupwise-folder.c:
Some help comments for the future maintainers
Not an API doc
2009-01-28 Sankar P <psankar@novell.com>
** Fix for bnc bug #467638
* camel/providers/groupwise/camel-groupwise-store.c:
Fix the broken current_folder handling code. Lots of
issues are fixed. some may remain yet.
2009-01-27 Sankar P <psankar@novell.com>
** Fix for bnc bug #464758
* camel-groupwise-folder.c (update_junk_list):
g_strsplit_set will add a dummy string if one of the
delimiters is the first character in the source string.
Fix a crash.
2009-01-16 Sankar P <psankar@novell.com>
** Patch committed on behalf of Simon Brys <sbrys@novell.com>
** Fix for bnc bug #463095
* camel-groupwise-summary.c (content_info_from_db):
Fix cinfo parsing logic
2009-01-15 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c (groupwise_sync),
(groupwise_refresh_folder), (groupwise_transfer_messages_to):
* camel-groupwise-journal.h:
* camel-groupwise-summary.c (gw_info_set_flags):
* camel-groupwise-summary.h:
Manage GroupWise counts better. fix bugs in read-cursor elimination.
A brand new flags handling code for GroupWise provider.
2009-01-08 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #554182
* camel-groupwise-provider.c: (groupwise_url_hash),
(groupwise_url_equal): Don't use 'authmech' for URL comparision.
2009-01-05 Ashish Shrivastava <shashish@novell.com>
** Fix for bnc bug #458127
* camel-groupwise-provider.c: Keyboard shortcut for
SOAP port in Evolution setup assistant.
2009-01-02 Sankar P <psankar@novell.com>
** Fix for bnc bug #446290
* camel/providers/groupwise/camel-groupwise-folder.c:
* servers/groupwise/e-gw-connection.c:
Parallel clients support and (un)read count handling
2008-12-29 Sankar P <psankar@novell.com>
** Patch committed on behalf of Simon Brys <sbrys@novell.com>
** Fix for bnc bug #462575
* camel/providers/groupwise/camel-groupwise-store.c:
Extend function to honor "Check in all folders" setting.
2008-12-29 Sankar P <psankar@novell.com>
** Patch committed on behalf of Simon Brys <sbrys@novell.com>
** Fix for bnc bug #448079
* camel/providers/groupwise/camel-groupwise-folder.c:
Use correct parameters.
2008-12-26 Sankar P <psankar@novell.com>
* camel/providers/groupwise/camel-groupwise-folder.c:
Sssshhhh the compiler warnings
2008-12-26 Sankar P <psankar@novell.com>
** Fix for bnc bug #209514
* camel/providers/groupwise/camel-groupwise-folder.c:
Addresses some missing mails issues. Optimization fixed.
2008-12-23 Sankar P <psankar@novell.com>
** Part of fix for bnc bug #448079
* camel/providers/groupwise/camel-groupwise-folder.c:
Avoid invalid reads by validating optional fields.
Part 2 of the fixes
2008-12-23 Bharath Acharya <abharath@novell.com>
** Fix for bnc bug #449916
* camel-groupwise-folder.c: (convert_to_task), (convert_to_note):
Display multiple lines of an assigned task or shared memo.
2008-12-08 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c (gw_update_cache):
Avoid invalid reads by validating optional fields
2008-10-31 Sankar P <psankar@novell.com>
** Fix for bnc bugs #440502, #209514, #434958, #434946,
#435725, #434950, #372382, #435727
* camel-groupwise-folder.c (groupwise_folder_get_message),
(groupwise_sync), (groupwise_refresh_folder), (gw_update_cache),
(groupwise_transfer_messages_to):
* camel-groupwise-store.c (groupwise_forget_folder),
(groupwise_get_folder), (gw_store_reload_folder),
(convert_to_folder_info):
* camel-groupwise-summary.c (camel_groupwise_summary_new),
(gw_info_set_flags), (groupwise_summary_clear):
GroupWise Improvements
2008-10-03 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #547243
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg):
Check for correct values to prevent invalid reads.
2008-09-25 Philip Withnall <philip@tecnocode.co.uk>
** Fix for bug #553148
* camel-groupwise-store.c (groupwise_rename_folder): Standardise
"GroupWise" usage in translatable strings.
2008-10-14 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #552261
* camel-groupwise-summary.c: Include camel-db.h
2008-09-25 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #337479
* camel-groupwise-store.c: (groupwise_auth_loop):
Do not use uninitialized variables.
2008-09-24 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #313225
* camel-groupwise-folder.c: (gw_update_cache), (gw_update_summary):
Set the user flag '$has_cal' in the message info when the message
is type of the appointment, task or note.
2008-08-08 Sankar P <psankar@novell.com>
* camel-groupwise-store.c (groupwise_folders_sync):
Fix a leak. Part of bgo #523103
2008-08-06 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #545877
* camel-groupwise-journal.c:
* camel-groupwise-journal.h:
Use CamelDList instead of EDList.
2008-08-06 Srinivasa Ragavan <sragavan@novell.com>
* camel/providers/groupwise/camel-groupwise-folder.c: Mark summary
dirty when it is.
2008-08-01 Matthew Barnes <mbarnes@redhat.com>
* camel-groupwise-store-summary.c:
Remove unnecessary <libedataserver/e-memory.h> include.
2008-07-31 Sankar P <psankar@novell.com>
* camel-groupwise-summary.c (gw_info_set_flags):
Fix (un)read, deleted count issues.
2008-07-28 Srinivasa Ragavan <sragavan@novell.com>
* camel/providers/groupwise/camel-groupwise-journal.c: Fix uid/pstring
issues.
2008-07-22 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c (gw_update_summary):
Remove some buggy code, which are unnecessary after
one of the previous commits to avoid duplicate email
addresses as part of FROM field.
2008-07-21 Matthew Barnes <mbarnes@redhat.com>
* camel-groupwise-journal.c:
* camel-groupwise-summary.c:
#include "camel-string-utils.h"
2008-07-21 Srinivasa Ragavan <sragavan@novell.com>
** Use pstrings for info uids.
* camel/providers/groupwise/camel-groupwise-folder.c:
* camel/providers/groupwise/camel-groupwise-journal.c:
* camel/providers/groupwise/camel-groupwise-summary.c:
2008-07-16 Sankar P <psankar@novell.com>
Pushing disk summary changes from the madagascar branch
* camel-groupwise-folder.c (groupwise_sync_summary),
(groupwise_sync), (groupwise_refresh_info),
(groupwise_refresh_folder), (gw_update_all_items):
* camel-groupwise-store.c (groupwise_get_folder),
(gw_store_reload_folder):
* camel-groupwise-summary.c (camel_groupwise_summary_class_init),
(camel_groupwise_summary_new), (summary_header_from_db),
(gw_summary_header_load), (summary_header_to_db),
(gw_summary_header_save), (message_info_from_db),
(message_info_to_db), (content_info_from_db), (content_info_to_db),
(groupwise_summary_clear):
2008-05-21 Johnny Jacob <jjohnny@novell.com>
* camel-groupwise-store.c (convert_to_folder_info): Marking this
function as static.
2008-05-19 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #531591
* camel-groupwise-utils.c:
* camel-groupwise-folder.c
* camel-groupwise-store.c:
Don't use TeX-style quotes in user-visible messages.
2008-05-19 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_transfer_messages_to):
Use the right iterator to prevent a crash in offline mail movement.
** Fix for bug #531009
2008-05-19 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (gw_update_summary):
Added a necessary condition to handle a specific server response
and to prevent a crash.
** Fix for bug #530514
2008-05-19 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_get_message),
(gw_update_cache):
Large memory leak while syncing mails for offline usage.
** Fix for bug #530543
2008-04-30 Chenthill Palanisamy <pchenthill@novell.com>
** Fixes #338330 (bnc)
Internet Based Calendar Events Are Declined By Evolution/GroupWise
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg):
2008-04-30 Sankar P <psankar@novell.com>
** Fixes #182380 (bnc)
Message classification and security cannot be viewed
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg):
2008-04-16 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (update_update):
Free memory even on error conditions. Fix the
memory leak.
2008-04-01 Sankar P <psankar@novell.com>
** Fix for bug #525485
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg):
Removed some infinite loops and corrected the conditional statement.
2008-03-27 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #518710
* camel-groupwise-store-summary.c:
Remove unneeded inclusion of <libedataserver/md5-utils.h>.
2008-03-25 Sankar P <psankar@novell.com>
* camel-groupwise-store.c: (groupwise_get_folder),
(store_refresh_refresh), (groupwise_get_folder_info),
(groupwise_delete_folder), (groupwise_rename_folder),
(groupwise_get_trash):
Avoid erroneous casting and use already cast variables.
Code cleanup.
2008-03-20 Sankar P <psankar@novell.com>
** Fix for bug #523528 and bnc #372383
* camel-groupwise-folder.c: (groupwise_folder_get_message):
Some mails with attachments does not have an attachment icon in the mail list.
Related problems: Mail size is not shown for some mails.
And not all related recurring appointments are deleted as well.
2008-02-29 Srinivasa Ragavan <sragavan@novell.com>
** Fix for BNC bug #359950
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg): If nothing
to decode, handle it well. Reviewed by Sankar.
2008-02-26 Kjartan Maraas <kmaraas@gnome.org>
* Makefile.am: Add E_DATA_SERVER_CFLAGS/LIBS to make it build.
2008-02-18 Chenthill Palanisamy <pchenthill@novell.com>
* camel-groupwise-folder.c (groupwise_transfer_messages_to): Fixes
some warnings. Fix from downstream opensuse.
2008-02-18 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #183819 (bnc)
* camel-groupwise-folder.c (update_update): Fixes a crash
while closing evolution in offline mode. Patch from downstream
opensuse.
2008-02-18 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bnc #167638
* camel-groupwise-folder.c: (update_update): Upstreamed OpenSUSE patch
by Sankar. Quit GW download after Quit requested.
2008-01-30 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #395939
* camel-groupwise-store.c: (groupwise_forget_folder): Memory leak fix.
2008-01-22 Milan Crha <mcrha@redhat.com>
** Fix for bug #498977
* camel-groupwise-utils.c: (send_as_attachment):
Prevent encoding to base64 of no data in the content buffer.
2008-01-17 Matthew Barnes <mbarnes@redhat.com>
* camel-groupwise-store.c (groupwise_auth_loop):
Use a consistently worded password prompt message by calling
camel_session_build_password_prompt().
2008-01-15 Dan Winship <danw@gnome.org>
* camel-groupwise-folder.c:
* camel-groupwise-transport.c:
* camel-groupwise-utils.c: Remove unused libsoup includes
2007-12-06 Sankar P <psankar@novell.com>
** Fixes bug #501969
* camel-groupwise-store.c: (groupwise_store_construct),
(groupwise_auth_loop), (groupwise_get_folder),
(gw_store_reload_folder), (groupwise_create_folder):
Passwords should not be forgotten on all errors.
2007-11-16 Sankar P <psankar@novell.com>
** Fixes bug #481093
* camel-groupwise-folder.c: (groupwise_sync_summary),
(groupwise_transfer_messages_to):
Move mail to/from sent-items case missed while porting.
Solves (un)read count issues as well
2007-11-15 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #474000
* camel-groupwise-folder.c (groupwise_folder_item_to_msg):
Always initialize 'len_iter' before calling g_base64_decode().
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
** Merge a bunch of compiler warning fixes and cosmetic
cleanups from camel-lite.
2007-09-29 Kjartan Maraas <kmaraas@gnome.org>
* camel-groupwise-folder.c: (gw_update_cache), (gw_update_summary),
(groupwise_folder_item_to_msg): Use the right enum type.
* camel-groupwise-journal.c: (camel_groupwise_journal_get_type),
(groupwise_entry_play_append):
* camel-groupwise-store.c: (groupwise_connect),
(groupwise_get_folder), (gw_store_reload_folder),
(groupwise_folders_sync):
* camel-groupwise-utils.c:
(camel_groupwise_util_item_from_message): NULL vs 0 fixes.
2007-09-27 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #474000
* camel-groupwise-utils.c (send_as_attachment):
* camel-groupwise-folder.c (groupwise_folder_item_to_msg):
Use GLib's Base64 API instead of libsoup's.
2007-09-07 Milan Crha <mcrha@redhat.com>
** Fix for bug #473880
* providers/groupwise/camel-groupwise-folder.c:
(groupwise_msg_set_recipient_list): Fixes serious compiler warning.
2007-09-03 Sankar P <psankar@novell.com>
** Fix for bnc bug #302038
* camel-groupwise-folder.c: (groupwise_refresh_folder),
(gw_update_cache), (gw_update_summary):
Debug statements should not be g_warnings.
2007-08-23 Sankar P <psankar@novell.com>
** Fix for bug #464636
* Committed on behalf of Ashish <shashish@novell.com>
* camel-groupwise-folder.c: (gw_update_cache), (gw_update_summary):
Sender field does not display anything.
2007-08-16 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #350539
* camel-groupwise-utils.c: (do_multipart):
Ensures non-NULL part.
2007-07-30 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_sync),
(groupwise_refresh_folder), (gw_update_all_items),
(groupwise_transfer_messages_to), (groupwise_expunge):
* camel-groupwise-store.c: (gw_store_reload_folder):
More code cleanup. Fixes annoying "Is a Directory" error.
All (un)read count fixes should have been ported.
Moved items from sent-items are lost is fixed.
2007-06-11 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_folder),
(groupwise_transfer_messages_to):
Fetches "Sent Items" in all folders. Also, fixes some bugs
in moving mails across folders. Removes phantom removeRequests
2007-05-11 Srinivasa Ragavan <sragavan@novell.com>
* camel-groupwise-provider.c: Fix fo bug #347326 from Ebby Wiselyn
2007-05-07 Matthew Barnes <mbarnes@redhat.com>
* camel-groupwise-folder.c:
* camel-groupwise-store.c:
Fix warnings reported by 'sparse'. Patch from Kjartan Maraas.
2007-04-03 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_get_message),
(groupwise_msg_set_recipient_list), (gw_update_cache):
* camel-groupwise-store.c: (convert_to_folder_info):
Removed some ugly hacks and work-arounds made for the
old implementation of the status-tracking.
Sent Items will have cache hereafter and GroupWise mailer
should be more stable here-after.
2007-04-01 Matthew Barnes <mbarnes@redhat.com>
* camel-groupwise-store.c:
Disable unused functions. Patch from Kjartan Maraas.
2007-03-29 Matthew Barnes <mbarnes@redhat.com>
* camel-groupwise-utils.c:
Fix "incompatible pointer type" warnings (#360619).
2007-03-26 Matthew Barnes <mbarnes@redhat.com>
* camel-groupwise-folder.c:
* camel-groupwise-utils.c:
Don't mix declarations and code (#405495).
Patch from Jens Granseuer.
2007-03-16 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #360240
* camel-groupwise-folder.c (gw_update_cache), (gw_update_summary):
Remove unused variables.
2007-02-23 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #356177
* camel-groupwise-folder.c:
* camel-groupwise-private.h:
* camel-groupwise-store.c:
Migrate from EMutex to GStaticMutex or GStaticRecMutex.
2007-02-09 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (gw_update_cache), (gw_update_summary):
Deletes all instances of a recurrence appointment as soon as the
invitation is accepted/declined adn applied-to-all.
Fixes #312301
2006-12-07 Harish Krishnaswamy <kharish@novell.com>
* camel-groupwise-store.c: (camel_groupwise_store_class_init):
Assign free_folder_info to the parent class implementation.
Fixes a huge leak on GW Mailer especially with proxy accounts,
one of the issues targeted in Bug #222605 on bugzilla.novell.com
2006-11-16 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_sync), (gw_update_cache),
(gw_update_summary), (groupwise_transfer_messages_to):
Update read and unread counts across folders on folder-switch,
mail-deletion, moving mails and other operations.
2006-11-08 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (gw_update_cache), (gw_update_summary):
Set CAMEL_MESSAGE_USER_NOT_DELETABLE flag if proxy has no delete permission
2006-11-08 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg):
Fixes the problem of attachments getting corrupt in SOAP mailer
Fixes some problems with Mime.822
Fixes the problem of signatures getting corrupt in SOAP
Fixes #350880 and a few duplicates in bnc
2006-08-28 Sankar P <psankar@novell.com>
* camel-groupwise-sumamry.c:
camel-groupwise-folder.c:
Marking a message as (un)junk may lead to infinite loop
and hence crashing.
* Fixes #190345 on Novell Bugzilla
2006-07-22 Chenthill Palanisamy <pchenthill@novell.com>
* camel-groupwise-folder.c:
(groupwise_populate_msg_body_from_item), (convert_to_task),
(convert_to_note): Added support for Gw notes.
2006-07-17 Sankar P <psankar@novell.com>
* camel-groupwise-utils.[ch]:
Added support for security-classification in GW send-options.
2006-07-06 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-transport.c: (groupwise_send_to):
check if you have a valid transport. For those wierd times
when you have everything screwed up
2006-07-05 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-utils.c: (camel_groupwise_util_item_from_message):
fix compiler warnings
2006-07-05 Parthasarathi Susarla <sparthasarathi@novell.com>
** Fixes bug #165728 on novell bugzilla
* camel-groupwise-store.[ch]:
(groupwise_store_construct): initialize list loaded to 3
(groupwise_get_folder_info): update only once from the server
and from then on - just use the cache.
2006-07-05 Parthasarathi Susarla <sparthasarathi@novell.com>
** Fixes bug #165922 on novell bugzilla.
* camel-groupwise-folder.[ch]:
(groupwise_folder_item_to_msg): use Mime.822 whenever it is available
2006-06-15 Andre Klapper <a9016009@gmx.de>
* camel-groupwise-folder.c:
changing "cancelled" to "canceled" in user-visible strings.
Fixes bug #342163.
2006-06-13 Andre Klapper <a9016009@gmx.de>
* camel-groupwise-store.c:
changing "couldn't", "can't" and "didn't" to proper
English. Fixes bug #342160.
2006-06-13 Parthasarathi Susarla <sparthasarathi@novell.com>
Fixes bug #167517 on bnc
* camel-groupwise-utils.c: (send_as_attachment):
revert a part of fejjs patch. We need the message id
with the container in it. We cant use the camel_header_msgid_decode
method since it would normalise anything after ':'.
Henceforth the forwardrequest would get the complete id of the message
and the link info is sent correctly.
* camel-groupwise-store.c:
* camel-groupwise-folder.c:
(gw_update_cache):
(gw_update_summary): use the hasAttachments element to
check if a mail has attachments or not.
2006-06-12 Parthasarathi Susarla <sparthasarathi@novell.com>
Fixes bug #166265 on bnc
* camel-groupwise-folder.c: call purgeRequest when
deleting on Trash folder
2006-06-09 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Fixes the problem of email id appearing twice
2006-06-09 Chris Heath <chris@heathens.co.nz>
* camel-groupwise-journal.c (update_cache): Fix memory leak.
Fixes bug #335423.
2006-06-06 Jeffrey Stedfast <fejj@novell.com>
Fixes for Novell bug #173454
* camel-groupwise-utils.c (add_recipients): Changed to be an
internal function.
(send_as_attachment): No longer takes 'buffer' nor 'encoding'
arguments. Changed the code to use the camel content-id/message-id
parsers rather than home-brew blocks of code to do it. Instead of
strcmp'ing mime types, use the camel_content_type_is() function
which simplifies things a bit.
(camel_groupwise_util_item_from_message): No longer takes a
recipients list argument as this function extracted that info from
the CamelMimeMessage object anyway. Do charset conversion for
text/plain parts.
* camel-groupwise-folder.c (groupwise_append_message): Don't pass
to/cc/bcc recpients to camel_groupwise_util_item_from_message() as
it no longer takes those arguments.
* camel-groupwise-transport.c (groupwise_send_to): Same.
2006-05-23 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_folder)
Uses readCursor on trash so that we get all items
2006-05-17 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Notify the user if the Trash is overflowing
2006-04-28 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Initialize a pointer to NULL so that we wont
have any dangling reference to be freed
2006-04-24 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Removes multiple items by a single call instead
of deleting one-by-one.
2006-04-22 Sankar P <psankar@novell.com>
* camel-groupwise-store.c: (convert_to_folder_info):
No need to get the unread count for Sent Items folder.
All will be read by default.
2006-04-20 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug 167640 on bnc
* camel-groupwise-store.c: Add space at the end of a string.
2006-04-20 Sankar P <psankar@novell.com>
* camel-groupwise-summary.c : (groupwise_summary_clear):
Removes from summary based on uid instead of info.
This will avoid double-free crash of info.
2006-04-18 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_sync):
Corrected an erroneous commit.
2006-04-17 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_folder)
Sync up the flags before updating the changes.
2006-04-06 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c : (gw_update_cache)
Store the flags to the summary so that the markRead doesnot
get called every time
2006-04-06 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c :
Sync up changes before gettting the folder-list
2006-04-03 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (update_junk_list)
(gw_update_summary)(gw_update_cache):
Stores the name as well as the email address so
that the (un)junk operations will work.
2006-04-03 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_folder):
Added code for getting deltas for Proxy accounts,
instead of downloading everything everytime.
2006-03-24 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (groupwise_item_folder_to_msg):
Set content type, so that it does not crash
2006-03-23 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
(groupwise_refresh_folder):
Sync up externally deleted items only on arrival of New items
2006-03-23 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_sync): removed a double free and a crash
(gw_update_cache): Do not clone messageinfo. jus work on
the original message info
* camel-groupwise-store.c: (groupwise_folders_sync):
sync up the current folder whenever the folder list is
being refreshed.
2006-03-21 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-utils.c: (do_multipart):
Remove unrefs which are actually not needed for a Datawrapper got
from camel_medium_get_content_object()
2006-03-20 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:(gw_udpate_cache):
Sync up changes made in the server with the local data, mainly
the read and unread data.
2006-03-17 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_folder_item_to_msg): If the message-body/attachment
is larger than 1MB, have to get it in chunks(streaming).
2006-03-15 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
(gw_update_cache) (update_update)
(groupwise_refresh_folder) (gw_update_all_items):
- Use read_cursor ALL for identifying new messages and
avoids getQM for getting new items.
- Altered the code which keeps Evolution stay in sync,
with the rest of the clients by deleting
externally deleted items
2006-03-13 Parthasarathi Susarla <sparthasarathi@novell.com>
* Fixes bug 137357 & 156823
* camel-groupwise-store.c:
(groupwise_auth_loop):
(groupwise_connect):
Ignore Offline status when service status is
Disconnected.
2006-03-13 Parthasarathi Susarla <sparthasarathi@novell.com>
* Fixes bug 152355
* camel-groupwise-folder.c:
(groupwise_refresh_info): If the summary is corrupt, or is not
present, rebuild the summary again.
* camel-groupwise-store.[ch]:
(gw_store_reload_folder): This method rebuilds the folder summary
it the summary is somehow corrupted.
2006-03-11 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Changed the way in which UIDs are handled. Reduces a lot of
coslty String and List operations. Should make GroupWise provider
run fast and shutdown faster. Reduces CPU and memory usage too.
2006-03-11 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_info):
reload folder if there is no content in it.
* camel-groupwise-store.c:
(groupwise_connect): Dont check for disconnected state while
connecting.
(groupwise_get_folder): set the correct total count so that
we get the actual progress on each folder when downloading
mail headers the first time.
2006-03-09 parthasarathi susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(camel_groupwise_store_connected):
(check_for_connection):
check if the status is online before trying to connect
to server.
* camel-groupwise-folder.c: (gw_update_cache):
assert lock, before continuing further.
2006-01-31 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug 329214
* camel-groupwise-utils.c:
(send_as_attachment): use text.htm for text files only
if there is no file name.
2006-01-24 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_sync):
(groupwise_transfer_messages_to):
(groupwise_append_message):
lookup for CNC only if we are connected.
* camel-groupwise-store.c:
(groupwise_auth_loop):
(groupwise_connect):
lookup for CNC only if we are connected
(groupwise_disconnect_cleanup): cleanup the priv
structure whenever we disconnect
2006-01-23 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(update_junk_list): do not contact the server each time we
add junk, just once, while marking not junk.
(groupwise_transfer_messages_to): fix a crash, have to use
destination->summary instead of destination.
** See bug 327376
* camel-groupwise-transport.c: (groupwise_send_to):
set the link info to NULL. Fixes a crash.
* camel-groupwise-utils.c: (send_as_attachment):
Based on encoding, check if we are sending non base64 data
to the server, if we are, do a base64 encode first.
2006-01-19 Andre Klapper <a9016009@gmx.de>
* camel-groupwise-transport.c: fixed a typo and improved an
error message. Fixes bug 325657.
2006-01-12 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_populate_details_from_item):
(gw_update_cache):
(gw_update_summary):
put the created date, in case of missing delivered date
** See bug 314841
(gw_update_summary): dont bold trash folder with number of
messsages
* camel-groupwise-storec.:(groupwise_get_folder):
request for created date too
** See bug 323570
* camel-groupwise-utils.c:
(do_multipart): a part can further be a multipart so have a
recurssive function
2006-01-04 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_sync_summary): saves the summary to the disk
(groupwise_sync): remove a lot of junk code
(groupwise_folder_item_to_msg): fixes the html with embedded
images issue. See bug 320898
* camel-groupwise-store.c: remove printfs everywhere
* camel-groupwise-utils.c:
(strip_lt_gt): strips the < and > characters based on the
given offsets
2005-12-14 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug 317794
* camel-groupwise-store-summary.c:
(camel_groupwise_store_summary_full_to_path):
(camel_groupwise_store_summary_path_to_full):
Do not convert folder names here, there are already converted
2005-12-13 Tor Lillqvist <tml@novell.com>
* camel-groupwise-store.c
* camel-groupwise-utils.c: Use gstdio wrappers. Use GDir instead
of dirent API.
2005-12-09 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug 321830
* camel-groupwise-folder.c: (gw_update_cache): Do not skip
caching sent items, they dont get displayed otherwise.
2005-11-09 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_sync): initialise mi and free some stuff
(groupwise_expunge): clear summary and cache and emptying trash
Fixes bug **320095
* camel-groupwise-store.c:
(groupwise_connect): do not attempt to connect when the service is
disconnected and the network is unavailable.
(groupwise_disconnect): check if priv is indeed available. Prevents
a violation
(groupwise_get_trash): fix up the state of the folder. Fixes the bug
**320095
* camel-groupwise-summary.[ch]:
(groupwise_summary_clear): clears the summary and cache of a groupwise
folder.
2005-11-09 Sankar P <psankar@novell.com>
* camel-groupwise-transport.c (groupwise_send_to):
Changed the string so as to be consistent with Win32 client error messages.
2005-11-09 Shreyas Srinivasan <sshreyas@novell.com>
* camel-groupwise-store.c (groupwise_connect): Uncomment
code which previously fixed offlining code.
2005-11-09 Sankar P <psankar@novell.com>
* camel-groupwise-transport.c (groupwise_send_to):
Added code to handle the Quota errors.
Fixes #314476
2005-11-07 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug #320736
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg):
Check if the attachment buffer is indeed valid. Prevents a possible
segment violation.
2005-10-21 Shreyas Srinivasan <sshreyas@novell.com>
* camel-groupwise-store.c:(groupwise_connect): Connect if store->state
is CAMEL_OFFLINE_STORE_NETWORK_UNAVAIL and not if
CAMEL_OFFLINE_STORE_NETWORK_AVAIL
2005-10-19 Vivek Jain <jvivek@novell.com>
**See bug #319045
* camel-groupwise-store.c:
(convert_to_folder_info)
(get_one_folder_offline): Don't set folder type as
CAMEL_FOLDER_JUNK, it assumes it as a search folder, which
it is not in groupwise
* camel-groupwise-folder.c: (transfer_messages_to):
set the flags correctly for GW_JUNK
2005-10-03 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug 314751
* camel-groupwise-utils.c:
(send_as_attachment): set file name as text.htm
(camel_groupwise_util_item_from_message): if its multipart/alternative
get the html and text parts independently
2005-09-30 Vivek Jain <jvivek@novell.com>
* camel-groupwise-store.c: (get_folder_info)
remove env check GROUPWISE_SHARED_FOLDER
to enable shared folder functionality
2005-09-28 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c (groupwise_refresh_folder):
Added peek to the view so that the unread status of mails doesnt get
changed during a proxy access.
Fixes #309993
2005-09-26 Veerapuram Varadhan <vvaradhan@novell.com>
* camel-groupwise-folder.c: (camel_gw_folder_new)
Memory leak fixes.
* camel-groupwise-store.c: (groupwise_store_construct)
(camel_groupwise_store_finalize): Memory leak fixes, use
g_hash_table_new_full instead of g_hash_table_new.
2005-09-26 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c :(update_junk_list)
initialize variables email and from.
**Fixes #314942
2005-09-18 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_info):
Save changes made to the folder counts to the store summary.
* camel-groupwise-store.c: (check_for_connection): Method
checks if we are really connected when online or not.
(groupwise_base_url_lookup): returns the base url of the store
2005-09-16 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug 310742
* camel-groupwise-folder.c: (groupwise_append_message):
Makes sure that messages can be copied only to Mailbox
or SentItems as per GW server specs
2005-09-16 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c: (match_path): method
matches the patch given a pattern and a path.
* camel-groupwise-utils.c: (gw_concat): concats the path
to the base_url
2005-09-15 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c: (groupwise_create_folder):
Does not allow creating subfolders under system folder
2005-09-15 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_folder_get_message): free message info
Dont cache messages in Sent Items folder.
(groupwise_populate_details_from_item):
(gw_update_cache):
(gw_update_summary):
Use the delivered time instead of the created time
in the summary and cache.
(groupwise_sync): Use folder Locks. This should fix
the summary corruption bug, logically.
* camel-groupwise-store.c:
(groupwise_connect): sync folders here when the user
creats the account the first time.
(groupwise_get_folder): destroy cursor when something
fails
(convert_to_folder_info): parse date in EGwcontainer
and create a corresponding CamelFolderInfo
(get_folders_sync): sync folder list with the server
(groupwise_get_folder_info): basically work from the
cache, and refresh only asynchronously.
(groupwise_get_folder_info_offline): Changed radically.
gets stuff from the StoreInfo and populates the folder
info.
(camel_groupwise_store_connected): checks if we are
really connected and online. Based on an equivalent
IMAP function.
* camel-groupwise-transport.c: (groupwise_send_to):
Free url.
Report a proper error message when the mail cannot be
sent.
2005-09-02 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg)
check contentType to be NULL before we set it.
**Fixes #310953
2005-08-25 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug # 312857
* camel-groupwise-folder.c:
(groupwise_sync):
(updata_update):
(gw_update_all_items):
(groupwise_expunge): Use folder locks while deleting mail.
2005-08-25 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c: put back the commit i did on
22-08-2005 not sure how it got reverted
2005-08-24 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug #310996
* camel-groupwise-store.c:
(groupwise_get_folder_info): unlock when returning
(groupwise_rename_folder): unlock on the groupwise_store
2005-08-24 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_folder_item_to_msg): show multipart/signed and
multipart/encrytepd messages
2005-08-24 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (update_update)
Moved from getQuickMessages to readCursor, while geting
list of all ids for syncing deleted items.
Fixes #306803
2005-08-24 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug #310996
* camel-groupwise-store.c:
(groupwise_get_folder_info): unlock when returning
(groupwise_rename_folder): unlock on the groupwise_store
2005-08-22 Not Zed <NotZed@Ximian.com>
* camel-groupwise-summary.c (gw_info_set_flags): return FALSE if
no flags were set.
* camel-groupwise-store.c (groupwise_get_folder): remove unused session.
(groupwise_get_folder_info): comment out unused msg.
* camel-groupwise-folder.c (move_to_mailbox): ugh, take an
exception argument, don't just make one up, and then not
initialise it!
(move_to_junk): same.
(gw_update_cache): initialise type.
(gw_update_summary): same.
(groupwise_folder_item_to_msg): use the right type for
container_id.
(groupwise_folder_item_to_msg): dont unref the as-yet-unset part.
2005-08-23 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (gw_update_all_items):
use cache lock before deleting items from cache.
Prevents a possibility of crash.
2005-08-22 Vivek Jain <jvivek@novell.com>
* camel-groupwise-store.c: (get_folder_info)
change SHARED_FOLDER to GROUPWISE_SHARED_FOLDER
to be specific
2005-08-22 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c:(update_junk_list)
check if 'from' or email is NULL
return otherwise
2005-08-22 Vivek Jain <jvivek@novell.com>
* camel-groupwise-store.c: (get_folder_info)
disabled support for shared folder temporarily
you have to export SHARED_FOLDER to see a shared folder
with diff icon.
2005-08-22 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_get_folder_info): Set Junk icon for Junk Mail
folder
2005-08-19 Parthasarathi Susarla <sparthasarathi@novell.com>
** see bug #313806
* camel-groupwise-utils.c:
(send_as_attachment): Encode the signature in base64. Thats
how the groupwise soap interface expects it.
2005-08-18 Parthasarathi Susarla <sparthasarathi@novell.com>
** see bug #312184
* camel-groupwise-folder.c:
(gw_update_cache): show signatures inline.
2005-08-18 Vivek Jain <jvivek@novell.com>
* camel-groupwise-store.c: (groupwise_create_folder):
disallow special folder names only when created at the top level
**Fixes #313058
2005-08-17 Parthasarathi Susarla <sparthasarathi@novell.com>
** see bug #310956
* camel-groupwise-store.c:
(groupwise_get_folder_info): if the selected folder is
a system folder, return data from the cache, since system
folders are not allowed to have sub folders.
2005-08-16 Parthasarathi Susarla <sparthasarathi@novell.com>
** see bug #3028355
* camel-groupwise-store.c:
(get_one_folder_offline): check if it is mailbox and set
the folder type.
2005-08-16 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c : (groupwise_folder_item_to_msg),
initialize container_id and assign this a valid value
**Fixes #313381
2005-08-12 Tor Lillqvist <tml@novell.com>
* Makefile.am: Use NO_UNDEFINED. Link with libcamel-provider,
libcamel and CAMEL_LIBS.
2005-08-11 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (gw_update_cache):
fix the message on the status bar when downloading
summary for new messages
* camel-groupwise-store.c: remove commented code.
2005-08-10 Parthasarathi Susarla <sparthasarathi@novell.com>
** see bug 300797
* camel-groupwise-folder.c: (groupwise_refresh_folder):
handle an error.
2005-08-09 Parthasarathi Susarla <sparthasarathi@novell.com>
** see bug #312857
* camel-groupwise-folder.c: (groupwise_refresh_folder):
update summary only if there are new/modified items
2005-08-09 Vivek Jain <jvivek@novell.com>
* camel-groupwise-utils.c : (camel_groupwise_util_item_from_message)
enable status tracking options by default, unless user modified them.
**Fixes #302963
2005-08-09 Vivek Jain <jvivek@novell.com>
* camel-groupwise-utils.c : (camel_groupwise_util_item_from_message)
check for the content type, Message can be none other than text/plain,
.(server doesn't support it). if its not, send as attachment,
Moved the code of handling attachment part into a new function
:(send_as_attachment).
**Fixes: #310325
2005-08-09: NotZed <notzed@ximian.com>
patch by:
(2005-04-17 Changwoo Ryu <cwryu@debian.org>)
** See bug #300891
* Makefile.am (INCLUDES): define
CAMEL_EXPLICIT_TRANSLATION_DOMAIN.
* camel-groupwise-provider.c (camel_provider_module_init):
set translation_domain in CamelProvider struct.
2005-08-04 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c
(groupwise_folder_item_to_msg): set the CamelMimeMsg into
a CamelMimePart and then into a CamelMultipart.
Fixes Bug ** #312535
2005-08-04 Dinesh Layek < LDinesh@novell.com >
Fixes #305304
* camel-groupwise-folder.c
(convert_to_calendar): encoded the new-line('\n') characters
of description-field as \n (two different characters'\','n').
2005-08-04 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_connect): set the service status flag to
connected.
* camel-groupwise-folder.c:
(groupwise_expunge): purge items if it is a Trash
Folder.
Fixes Bug ** 311887
2005-08-03 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(gw_update_all_items): compare item id only until the
first '@'. Fixes bug 311585
2005-08-03 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
* camel-groupwise-store.c:
* camel-groupwise-utils.c:
* camel-groupwise-transport.c:
Formatting code. Removed space between statement and ';'.
2005-08-03 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c:
* camel-groupwise-store.c: Don't use g_ascii_strncasecmp in all
the cases when lenght is going to be constant, replace it with
g_ascii_strcasecmp where we need case insensitive comparison,
and strcmp in others.
2005-08-02 Vivek Jain <jvivek@novell.com>
* camel-groupwise-transport.c: (groupwise_send_to)
if account is not even enabled we don't have that store.
g_error crashes evolution for that, use g_warning
2005-08-02 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c: (transfer_messages_to)
check for the flags to be reset while transferring to/from junk
folder.
**Fixes #312190
(groupwise_sync): make sure we never call mark_read when list is NULL
2005-08-02 Sankar P <psankar@novell.com>
* camel-groupwise-provider.c: (groupwise_url_equal)
Added code to check the protocol while comparing two URLs.
Fixes bug #312185
2005-08-01 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_is_system_folder):Check if a folder is a system
folder or not before deleting or renaming
(groupwise_store_construct):remove flag CAMEL_STORE_VTRASH
2005-07-30 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
formatted code, issues in coding style.
2005-07-29 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-utils.c :
(camel_groupwise_util_item_from_message): in case of
forwarded mails, do not populate data and size
Fixes bug 303065
2005-07-29 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c :(move_to_junk)
pass valid exception value in get_folder here NULL, so that clear
doesn't cause crash.
2005-07-28 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c: (groupwise_get_folder)
remove unwanted code.
* camel-groupwise-folder.c:
(groupwise_update_summary):
This function updates only the summary
(groupwise_update_cache):
This method updates the cache with the message body
and attachment
2005-07-27 Sankar P <psankar@novell.com>
* camel-groupwise-transport.c: (groupwise_send_to)
Setting an exception if delivery fails, so as to
retain unsent items in Outbox.
Fixes #302968
2005-07-27 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c
(groupwise_folder_get_message): remove some unnecessary locks
(gw_update_summary): remove unused code
* camel-groupwise-store.c
(groupwise_get_folder): remove locks
2005-07-25 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_item_to_msg)
fix a crash freeing attachment buffer
2005-07-24 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-provider.c:
string changes made. ** Fixes bug 272505
2005-07-20 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
** Fix for bug ** 310953
2005-07-19 Chenthill Palanisamy <pchenthill@novell.com>
* camel-groupwise-folder.c: (convert_to_calendar): Use the
recurrence key as the UID if it is non-zero.
2005-07-19 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(does_folder_exist): checks if a folder exists or not
** Fixes bug 310716
2005-07-19 Shreyas Srinivasan <sshreyas@novell.com>
* camel-groupwise-store.c: Remove some redundant code in
groupwise_get_folder which was crashing evolution on Mac.
2005-07-10 Shreyas Srinivasan <sshreyas@novell.com>
* camel-groupwise-store.c: Add check that uses parents password
for a proxy.
* camel-groupwise-folder.c: Use GetItems as GetQM is not valid on
proxy login.
2005-07-07 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (gw_update_summary):
do not insert ',' if there are no mail ids in 'TO'
field.
** Fixes bug 302965 **
2005-07-07 Vivek Jain <jvivek@novell.com>
* camel-groupwise-folder.c:(groupwise_sync)
check for the junk flags
(move_to_junk), (move_to_mailbox), (update_junk_list)
(free_node): are new utility functions
(gw_update_summary): ensure messages in "Junk Mail" folder
have JUNK flag set
* camel-groupwise-summary.c: implemented virtual function
(gw_info_set_flag): extends default (info_set_flag) to have
checks for junk flags
* came-groupwise-summary.h : added extra summary flags for junk
* camel-groupwise-store.[ch]: (create_junk_folder):creates a juk
folder by modifying the junk settings
2005-07-06 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_folder_item_to_msg): function to convert
an item to a CamelMimeMessage
(groupwise_refresh_folder): This calls get Item for
each id that is being update in the summary. This
operates in a new thread.
(gw_update_all_items): Free summary after working on
it
* camel-groupwise-store.c:
(store_refresh_refresh): This method works in a
thread. And refreshes the summary of all the 'open'
folders.
(folder_refresh_refresh): This method refreshes a
folder the first time it is opened. This works in a
new thread.
* camel-groupwise-transport.c:
(groupwise_send_to): set LinkInfo when a mail is
replied to.
* camel-groupwise-utils.c:
(camel_groupwise_util_item_from_message): set LinkInfo
when a mail is forwarded.
2005-06-16 Parthasarathi Susarla <sparthasarathi@novell.com>
* came-groupwise-folder.c:
(gw_update_summary): make appointments appear the
groupwise client way, which appear based on the
date of the appointment and not the received time.
2005-06-16 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_sync): reverting back the removeItemsRequest
patch since the server interface is not working as yet.
2005-06-07 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_transfer_messages_to): set the current_folder.
** Fixes bug #300599
2005-06-07 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_sync): use removeItemsRequest instead of
removeItemRequest. This syncs up mailbox faster.
2005-06-07 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_refresh_info): now updates all items on a
camel session thread
(update_update): the thread update operation function
(update_free): the thread free operation function
2005-05-24 Chenthill Palanisamy <pchenthill@novell.com>
Commiting for Daniel van Eeden <daniel_e@dds.nl>
* camel-groupwise-transport.c:
(groupwise_transport_get_name): naming consistency for
GroupWise.
Fixes bug #271901
2005-05-20 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-transport.c (groupwise_send_to):
Call the replyRequest api before replying to a message
2005-04-07 Sankar P <psankar@novell.com>
* camel-groupwise-provider.c
Added code so as to disable sent items button and prevent
copying of sent items to any folder, for a GroupWise account.
2005-05-06 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #272504
* camel-groupwise-store.c: (groupwise_auth_loop): GroupWise is
the right way to spell.
2005-05-06 Sarfraaz Ahmed <asarfraaz@novell.com>
* camel-groupwise-store.c : A typo. Fixes 272503. Patch submitted
by Thierry Moisan
2005-04-27 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(camel_gw_folder_new): set the 'CAMEL_FOLDER_FILTER_RECENT'
folder flag for the Mailbox folder
(gw_update_summary): add the new messages in the ChangeInfo
structure under 'recent' type. Only those uids which fall
under recent are filtered.
* camel-groupwise-store.c:
(groupwise_store_construct): set 'CAMEL_STORE_FILTER_INBOX'
to store flags, to enable filtering
** Fixes bug #274194
2005-04-27 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: code formatting done.
removed space between the statement and ';' as per
the coding style
2005-04-27 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_get_message):
** Fixes bug - 273246: the Mime.822 file would not be shown
anymore
** Fixes bug - 273243: HTML mail would be displayed inline
and not as an attachment
2005-04-15 Jeffrey Stedfast <fejj@novell.com>
* camel-groupwise-provider.c: s/offline_sync/sync_offline/. Fixes
bug #274257
2005-04-18 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c (groupwise_get_folder): Remove redundant
getQuickMessageRequest
2005-04-08 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_get_message)
Added code to handle the item type NOTIFICATION so as to
enable viewing notification mails such as Shared Folder Notification.
Fixes #74369
2005-04-07 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_refresh_info): get the ids of all items
in a folder from the server.
(gw_update_all_items): update summary with items
that have been deleted from the server.
Fixes bug **72302 **74381 **72303
2005-04-05 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_info):
The Trash folder in the groupwise server works well
only with getItems request. So we compare the folder
full name (?) and if it is a trash folder, we use
getItems instead of getQuickMessages.
Fixes bugs **72310 and **73318
2005-03-31 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
(groupwise_expunge) (groupwise_sync)
Pushed the index up one count on deletion of a summary item.
Fixes #74183
2005-03-31 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:(groupwise_transfer_messages_to):
deleting the messages only if the copy is successful
*** fixes bug 73897
2005-03-15 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #73421
* camel-groupwise-folder.c: (groupwise_folder_get_message),
(convert_to_task): Converts the groupwise item to task ical
string checking for the type.
2005-03-18 Gary Ekker <gekker@novell.com>
* camel-groupwise-folder.c: Added #include "camel-string-utils.h"
to prevent warnings that break 64-bit build in SuSE build system
2005-03-18 Vivek Jain <jvivek@novell.com>
**Fixes bug #73458
* camel-groupwise-utils.h: changed the X_RETURN_NOTIFY_DECLINE to
X_RETURN_NOTIFY_DELETE
* camel-groupwise-utils.c: check the property and then call
(e_gw_item_set_notify_deleted) instead of
(e_gw_item_set_notify_declined )
2005-03-17 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:(convert_to_calendar):
using GString for all string operations.
2005-03-11 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(gw_update_summary): using GString. An efficient way
for fixing bug #72145
2005-03-10 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_get_folder): add peek and status views to
the creatCursorRequest
* camel-groupwise-folder.c:
(gw_update_summary): initialise the status flag
variable.
*** Fixes bug #73308
2005-03-09 Sankar P <psankar@novell.com>
* camel-groupwise-utils.c:(camel_groupwise_util_item_from_message)
Added code to fix the problem of Priority not set in outgoing mails
2005-03-07 JP Rosevear <jpr@novell.com>
From Dave Malcolm <dmalcolm@redhat.com>
* camel-groupwise-store-summary.c
(camel_groupwise_store_summary_namespace_set): move forward
declaration out of block
2005-03-03 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_get_folder): added recipient view
for get quick messages
* camel-groupwise-folder.c:
(groupwise_refresh_info): added recipient view
for get quick messages
(gw_update_summary): parse the recipient list
for mail ids to be set in the "To" field of the
summary.
** Fixes # 72145
2005-03-03 Vivek Jain <jvivek@novell.com>
***Fixes # 72455
#73231
#73239
* camel-groupwise-folder.c :(gw_update_summary)
initialize status_flags to 0
2005-03-02 Vivek Jain <jvivek@novell.com>
***Fixes # 72373
* camel-groupwise-store.c :(groupwise_get_folder)
* camel-groupwise_folder.c :(groupwise_refresh_info)
pass types as NULL in the call of e_gw_connection_get_quick_messages
to retrieve all the items
2005-02-28 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_info):
* camel-groupwise-store.c: (groupwise_get_folder):
Removed unused variables which were causing compiler
warnings caused by the previous commit
2005-02-28 Harish Krishnaswamy <kharish@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_info):
* camel-groupwise-store.c: (groupwise_get_folder):
Use the timestamp from the summary as argument to the
getQuickMessagesRequest.
* camel-groupwise-summary.[ch] (gw_summary_header_load),
(gw_summary_header_save): read/write the timestamp returned
by the getQuickMessages 'New' request into/from the gw summary.
2005-02-28 Sankar P <psankar@novell.com>
* camel-groupwise-utils.c: (camel_groupwise_util_item_from_message):
Changed the way in which the recipients list is generated so as to
facilitate handling of CC and BCC addresses.
* camel-groupwise-utils.[ch]: (add_recipients)
Implemented the function add_recipients to prepare recipients list of
specified type.
Fixes bug #73008
2005-02-25 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_rename_folder),
(groupwise_get_folder_info) :
Fixes bug #72965
2005-02-25 Chenthill Palanisamy <pchenthill@novell.com>
* camel-groupwise-folder.c: (groupwise_refresh_info):
* camel-groupwise-store.c: (groupwise_get_folder),
(groupwise_get_folder_info): Made changes since the
getQm function has been changed to take the fourth
argument (startdate) as double pointer.
2005-02-25 Harish Krishnaswamy <kharish@novell.com>
* camel-groupwise-store.c: (groupwise_get_folder):
update calls to read_cursor request to use the
position argument. do not use the position cursor
calls anymore.
2005-02-23 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_get_message):
Changed handling of addresses by using _camel_header_address
to enable display of gwpoa generated messages.
Fix for #72285
2005-02-23 Sivaiah Nallagatla <snallagatla@novell.com.
* camel-groupwise-folder.c (groupwise_folder_get_message) :
cache message always irrespective of whehter receipent status
element is there or not.
Fix #72907
2005-02-22 Chenthill Palanisamy <pchenthill@novell.com>
* camel-groupwise-folder.c: (convert_to_calendar): Append
the UID to the ICAL string.
2005-02-17 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c: (groupwise_get_folder):
* camel-groupwise-folder.c: (groupwise_refresh_info):
the variable which holds the UTC time is not static
anymore.
2005-02-10 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_get_folder): fixed the percentage display problem
while fetching summary
* camel-groupwise-folder.c:
(groupwise_expunge): fixed the problem with deleting mails
using removeItemRequest instead of removeItemsrequest
2005-02-10 Vivek Jain <jvivek@novell.com>
* camel-groupwise-store.c:
(groupwise_get_folder):
* camel-groupwise-folder.c
(groupwise_refresh_info):
get the "Modified" items in the second_list and
append it to the "list"
2005-02-09 Vivek Jain <jvivek@novell.com>
* camel-groupwise-store.c:
(groupwise_auth_loop): make sure auth_domain is "Groupwise"
Fixes bug ** #71752
2005-02-08 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-utils.c:
(camel_groupwise_util_item_from_message):
set the message type even if it is not a multipart
Fixes bug ** #72339
2005-02-08 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_get_folder)
* camel-groupwise-folder.c:
(groupwise_refresh_info):
Fixes bug ** #72106
2005-02-08 Vivek Jain <jvivek@novell.com>
* camel-groupwise-store.c :
(groupwise_connect): fix the display of garbage in the
alert for server version
2005-02-08 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c:
(groupwise_folder_get_message): converting time to local
time-zone.
(groupwise_refresh_info): service unlock when getquick messages
fails
2005-02-07 JP Rosevear <jpr@novell.com>
* camel-gw-listener.[hc]: remove dead files
2005-02-06 Sivaiah Nallagatla <snallagatla@novell.com>
* camel-groupwise-provider.c : Change the "Address and Calendar"
section to "SOAP Settings"
2005-02-04 Chenthill Palanisamy <pchenthill@novell.com>
* camel-groupwise-folder.c: (groupwise_folder_get_message): Added
a string for Reply requested. Appended with the subject.
* camel-groupwise-utils.c:
(camel_groupwise_util_item_from_message): set reply requested to
true.
2005-02-04 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c:
(groupwise_get_folder_info): call refresh info
when Send/Recieve is clicked
* camel-groupwise-folder.c:
initialisation of variables and a little code
cleanup
2005-02-03 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c
(groupwise_get_folder): uncommented the position cursor
request
2005-02-03 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-folder.c
(groupwise_folder_get_message): fix for Bug #72142
resolved a deadlock
* camel-groupwise-store.c
(groupwise_get_folder_info): fix for Bug #71990
add a '/' whenever we find it missing
2005-02-02 Parthasarathi Susarla <sparthasarathi@novell.com>
* camel-groupwise-store.c
(groupwise_get_folder): camel flag for folder type
trash
(groupwise_rename_folder): fixed issue with renaming
subfolders. The summary was not being renamed.
2005-02-02 Vivek Jain <jvivek@novell.com>
* /providers/groupwise/camel-groupwise-store.c
(groupwise_connect): add an alert message if the server doesn't return
the version
2005-02-01 Chenthill Palanisamy <pchenthill@novell.com>
* camel-groupwise-folder.c: (convert_to_calendar): Remove
the container id, from the item id and set it to X-GWRECORD
id. Add temp to strconcat so that all attendees get appended
to the string.
2005-02-01 Vivek Jain <jvivek@novell.com>
** see bug #71758
* camel-groupwise-store.c
(groupwise_get_folder_info) : set the folder type of Inbox to Inbox using
flag
Refer to main changelog for earlier changes.
|