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
|
2006-06-20 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Email address should appear only once
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>
Fix for Novell bug #179350
* camel-groupwise-folder.c (groupwise_folder_get_message): Don't
use a cache_lock, simply use the service::connect_lock. Also, no
need to write the cached disk stream to a memory stream before
parsing it into a CamelMimeMessage object, this is just a waste of
resources.
(groupwise_folder_rename): Same.
(groupwise_folder_search_by_expression): Same.
(groupwise_folder_search_by_uids): Here too.
(groupwise_folder_search_free): And here.
(groupwise_sync): Simplified and corrected by only using the
connect_lock around the entire block of code.
(gw_update_cache): No longer need to grab a cache_lock, we already
have the connect_lock.
(gw_update_all_items): Only use connect_lock.
(groupwise_expunge): Simplified by only using the connect_lock.
(camel_groupwise_folder_init): No need to malloc priv.
(camel_groupwise_folder_finalize): No need to free priv.
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-04-24 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Deletes items in a bulk instead of 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 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-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: (groupwise_folders_sync):
sync current folder before refreshing 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-23 Sankar P <psankar@novell.com>
* camel-groupwise-folder.c:
Syncs-up externally deleted items only when there are 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-folder.c: (groupwise_folder_get_message):
mark a message as read when seen for the first time.
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()
* 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-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.
|