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
|
0.75
2008-05-24 Mr. Sam <mrsam@courier-mta.com>
* all: Add missing includes, fixes compilation errors w/glibc+gcc 4.3
2008-03-12 Gordon Messmer <yinyang@eburg.com>
* tcpd/libcouriertls.c (tls_create): Default TLS_PROTOCOL=SSL23,
TLS_CIPHER_LIST=SSLv3:TLSv1:!SSLv2:HIGH:!LOW:!MEDIUM:!EXP:!NULL@STRENGTH
0.74
2007-11-21 Mr. Sam <mrsam@courier-mta.com>
* tcpd/libcouriergnutls.c (tls_connect): TLS_MIN_DH_BITS setting,
invokes gnutls_dh_set_prime_bits(). Fix some bugs.
2007-11-18 Mr. Sam <mrsam@courier-mta.com>
* tcpd/libcouriergnutls.c (tls_transfer): Fix some bugs.
2007-11-18 Mr. Sam <mrsam@courier-mta.com>
* tcpd/libcouriergnutls.c: Fix SSL session caching bug.
0.73
2007-11-05 Mr. Sam <mrsam@courier-mta.com>
* tls: Implement GnuTLS as an alternative to OpenSSL.
2007-10-23 Mr. Sam <mrsam@courier-mta.com>
* tls: code cleanup.
0.72
2007-09-24 Mr. Sam <mrsam@courier-mta.com>
* addressbook.C: Implement LDAP search from LDAP servers that
require authentication.
2007-07-26 Mr. Sam <sam@email-scan.com>
* COPYING: Updated to GPL 3
0.71
2007-07-03 Mr. Sam <mrsam@courier-mta.com>
* Drop the automake fixup -- too much trouble to maintain.
* gpglib/gpg.c: Fix signing of multipart messages that contain
8 bit content.
0.70
2007-04-06 Martin Michlmayr <tbm@cyrius.com>
* Several gcc 4.3 fixes.
2007-04-04 Mr. Sam <mrsam@courier-mta.com>
* Update all docs to Docbook XML V4.4. Update configure script
and makefile to current automake syntax.
2007-02-03 Mr. Sam <mrsam@courier-mta.com>
* cone/myserverremoteconfig.C (saveconfig2): Skip updating of the
remote configuration if the configuration settings are unchanged.
0.69
2006-11-18 Mr. Sam <mrsam@courier-mta.com>
* all: Fix many gcc 4.1 warnings. Update LDAP code to OpenLDAP 2.3
* all: Rebuilt against the latest gettext, autoconf, and automake
2006-10-31 Mr. Sam <mrsam@courier-mta.com>
* cone/spellcheckerAspell.C (endif): Fix wrong aspell key.
2006-07-28 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessage.C (reply): Fix Followup-To: processing.
2006-06-04 Mr. Sam <mrsam@courier-mta.com>
* libmail/fd.C: Add missing #include <errno.h>
2006-05-28 Mr. Sam <mrsam@courier-mta.com>
* all: Fix many compiler warnings.
0.68
2006-05-23 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesedit.H: Compilation fix.
2006-04-10 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesindexdisplay.C: New folder index screen command,
"show blobs", toggles on/off removal of mailing list [blobs] in the
subject line, which has limited display real estate.
0.67
2006-02-16 Mr. Sam <mrsam@courier-mta.com>
* Implemented LDAP address books.
2006-02-07 Mr. Sam <mrsam@courier-mta.com>
* cone/myserver.H: Fix compiler error.
* cone/spellcheckerAspell.H: Ditto.
2006-02-04 Mr. Sam <mrsam@courier-mta.com>
* cone/mymessage.C (getDefaultHeaders): "Write" from the main menu
populates message headers with defaults from the first defined mail
account.
2006-02-03 Mr. Sam <mrsam@courier-mta.com>
* cone/myserverconfig.C (save), cone/cursesmessage.C (getSendFolder):
When using master passwords, also save passwords for the SMTP server.
2006-02-02 Mr. Sam <mrsam@courier-mta.com>
* cone/configure.in: Forgot to bump release to 0.66
* curses/mycurses.H: Drop redundant namespace reference.
0.66
2006-01-29 Mr. Sam <mrsam@courier-mta.com>
* Fix various gcc warnings.
2005-11-23 Mr. Sam <mrsam@courier-mta.com>
* htmlparser.C: Generate more readable results from <li> tags.
2005-11-20 Mr. Sam <mrsam@courier-mta.com>
* gpglib/gpg.c (dosignencode): Sign the entire message in its entirety,
instead of signing each MIME part separately. Some E-mail clients
cannot handle individually-signed multipart/alternative content.
* Toolchain update.
2005-11-15 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045rewrite.c: Cleanup. Remove duplicate quoted-printable
implementation, use one in rfc822/encode.c
* gpglib/gpg.c: Ditto.
* rfc822/encode.c (quoted_printable): encode spaces that precede a
newline.
0.65
2005-07-06 Mr. Sam <mrsam@courier-mta.com>
* libmail/mboxmultilock.C: Fix a double-free error.
2005-06-30 Mr. Sam <mrsam@courier-mta.com>
* libmail/generic.C: Generic parser was folding headers when it
shouldn't, and not folding headers when it should.
2005-06-29 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessage.C: Find http/https/mailto URLs in text/plain
content, and attribute them, so that Enter activates those URLs.
When showing full headers, URLs in RFC 2369 headers are marked up
as well.
* gpglib/gpg.c: gnupg returns non-zero exit even if succesfully
unencrypted, when just the signature is bad.
2005-06-18 Mr. Sam <mrsam@courier-mta.com>
* all: Cleaned up libtool scripts.
2005-06-17 Mr. Sam <mrsam@courier-mta.com>
* Various: Enter key activates URLs in HTML mail.
2005-06-16 Mr. Sam <mrsam@courier-mta.com>
* cone/myfolder.C (markDeleted): Overload "Undelete" key to mark
a message that's already not deleted as unread.
* cone/cursesindexdisplay.C: Group "UNREAD" command marks msgs as
unread.
* cone/cursesmessagedisplay.C: "S" in message view is a shortcut
to save the message's contents in a file.
* cone/cursesindexdisplay.C: Folder index: "N" and "P" are aliases
for cursor down/up.
0.64
2005-02-23 Mr. Sam <mrsam@courier-mta.com>
* cone/addressbook.C (processKey): Import/export address book.
* libmail/addressbook.C (setIndex): Fix corruption caused by blank
nicknames, which now show up as (none)s in address book index.
* cone/addressbook.C (renameEntry): New function - rename address
book entry nickname.
2005-02-20 Mr. Sam <mrsam@courier-mta.com>
* libmail/imaphmac.C: Added SASL CRAM-SHA256 support. Fixed
CRAM-SHA1 (which never worked!).
2004-11-29 Mr. Sam <mrsam@courier-mta.com>
* cone: Spurious "Ambiguous filename pattern" message when aborting
out of file selection dialog.
* cone/cursesmessagedisplay.C: Added rudimentary print command.
0.63
2004-11-19 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesedit.C: Autodetect if glob() is available, and if so
use it to attach multiple files and process filename patterns in
the file requester dialogs.
2004-11-05 Mr. Sam <mrsam@courier-mta.com>
* cone/ctrlchandler.C: Remove spurious include of curses.h
2004-10-23 Mr. Sam <mrsam@courier-mta.com>
* cone/Makefile.am: Refresh from Courier tree.
2004-08-29 Mr. Sam <mrsam@courier-mta.com>
* rfc822/imapsubj.c (rfc822_coresubj_keepblobs): New function to strip
non-core subject appendages. Now keep [blobs] when generating
subjects for replies and forwards.
0.62
2004-08-29 Mr. Sam <mrsam@courier-mta.com>
* cone/init.C (init): Added textdomain() call.
2004-08-21 Mr. Sam <mrsam@courier-mta.com>
* libmail/fd.C: Implement Socks 5 proxying using the courier-sox
API toolkit.
2004-08-20 Mr. Sam <mrsam@courier-mta.com>
* libmail/pop3.C: Don't run out of file descriptors when downloading
a huge pop3 maildrop. Download a huge pop3 maildrop 200 messages
at a time.
* libmail/maildiradd.C (addmessage): Fix check of tmpcreate exit code.
(addmessage): Fix error recovery.
0.61
2004-07-18 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesedit.C (getPostFolder): Answering "N" to "Post message"
prompt when posting and mailing and encrypting wasn't working right.
2004-07-08 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessagedisplay.C (processKeyInFocus): If showing
a message/rfc822 attachment, the 'take addresses' command looks for
the addresses in the attachment, not the main message.
2004-06-26 Mr. Sam <mrsam@courier-mta.com>
* automake: mkinstalldirs script is obsolete.
* cone/cursesmessage.C (grok): Cone couldn't properly show multiply
nested message/rfc822 attachment, from the view attachment screen.
(forward): When forwarding a message/rfc822 attachment, the default
subject is taken from the attachment, not the whole message.
2004-06-22 Mr. Sam <mrsam@courier-mta.com>
* cone: Implement option to remove individual attachments from
messages. Implemented using a bunch of new APIs in the
mail::addMessage object (copiously documented, of course).
2004-06-13 Mr. Sam <mrsam@courier-mta.com>
* libmail: API change: replace justHeader and justContents parameters
to readMessageContent with a single enumerated parameter. Add option
to request unfolded headers.
2004-06-12 Mr. Sam <mrsam@courier-mta.com>
* man: Move misplaced section 5 man pages to section 3.
* libmail/attachments.C: New class: mail::Attachment, for creating
MIME content. A single mail::Attachment object represents a single
MIME entity, headers+body. A wide variety of constructors is available
that create content-containing MIME objects, with the content coming
from a file or a memory buffer. The transfer encoding may be specified
or autodetected. Even more constructors create composite, multipart,
MIME objects, from other mail::Attachment classes.
* libmail/headers.C: New classes for creating various message headers.
mail::Header - common superclass. Defines common methods: toString() -
convert to text form. clone() create a copy of the subclassed object.
wrap() - protected method to word-wrap the header string.
mail::Header::plain - subclass that creates a plain, 7bit-only header.
mail::Header::encoded - subclass that creates an unstructured header,
with non-USASCII text encoded according to RFC 2047.
mail::Header::addresslist - subclass that creates a header that
contains addresses.
mail::Header::mime - a structured MIME header, such as Content-Type:
and Content-Disposition:
mail::Header::list - an object that pulls together a list of
headers (any combination of the above-defined subclasses), and
converts the whole thing to text.
* libmail/structure.H: Hide the map with the MIME header parameters
privately, provide the set_simple() method to initialize a parameter
(converting the parameter's name to uppercase). Also provide the
erase() method. New toString() method converts the parameter list
to text. Updated the affected code elsewhere accordingly.
* libmail/addressbookget.C: Another gcc 3.4 fix.
* libmail/addmessage.C: New mail::addMessage::API. New methods:
assembleContent(), assembleMessageRfc822(), and assembleMultipart()
use mail::Attachment classes to build the new message one MIME
section at a time. After the new message is defined, the assemble()
method generates it, and uses the existing saveMessageContents()
which takes the message's contents in raw form.
* libmail/addressbookadd.C (go): Convert address book entry
generation to use the new mail::addMessage() API.
* cone/myserverremoteconfig.C (saveconfig2): Use the mail::Attachment
and mail::Header-based API to generate the MIME message containing
the remote configuration file.
* cone/cursesedit.C (attach): Use mail::mimestruct::parameterList
object's toString() method to convert it to text form.
(init): Remove extraneous whitespace from folded header lines.
(save): Convert Message-ID: generation to use the new mail::Header
classes.
(save): Convert Newsgroups:,Followup-To: and Subject: header
generation to use the new mail::Header classes.
(saveheaders): Convert address header generation to use the new
mail::Header classes.
2004-06-10 Mr. Sam <mrsam@courier-mta.com>
* libmail/smapfetchattr.C (go): Initialize class members earlier,
to prevent wild pointer dereference.
2004-06-06 Mr. Sam <mrsam@courier-mta.com>
* libmail/smapfetchattr.C (checkMimeVersion): Fixed bug parsing
message/rfc822 attachments that themselves do not have a Mime-Version:
header (mime_id is lost).
2004-06-03 Mr. Sam <mrsam@courier-mta.com>
* libmail/addressbookget.C: Another gcc 3.4 compilation fix.
0.60
2004-05-30 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessage.C (decode): Use mail::emailAddress class for
MIME decoding.
2004-05-29 Mr. Sam <mrsam@courier-mta.com>
* cone/addressbook.C: Convert address book take screen to use
mail::emailAddress.
* libmail: subclass mail::address as mail::emailAddress, providing
methods to MIME encode and decode name portions of addresses.
Convert mail::address::fromString and mail::address::toString to
templates and provide definitions for both mail::address and
mail::emailAddress vectors. Also redefine mail::addressbook class
to also use templates, and provide definitions for both mail::address
and mail::emailAddress-based implementations.
Change the address book format so that the address lists are saved
in their MIME-encoded format, so that they may be consistently
processed by the templated fromString/toString implementations.
* rfc2047.c (rfc2047_encode_callback): Use base64 to MIME-encode
instead of quoted-printable, where it's more efficient to do so.
2004-05-27 Mr. Sam <mrsam@courier-mta.com>
* libmail/rfc2047encode.C (encodeAddrName): Logic to determine whether
to encode is now in rfc2047_encode_str().
2004-05-02 Mr. Sam <mrsam@courier-mta.com>
* libmail/rfcaddr.C: make name and addr fields in mail::address
private. Provide getName(), getAddr(), setName(), and setAddr()
methods. Rename getAddress() as getCanonAddress().
* libmail/rfc2047decode.C (decode): Remove the extra unicode_info
parameter that designates a "native" character set, which is now
always the same character set that's being decoded to. Impact on
folder index where subject/names will now always silently leave out
chars not translatable into the current charset. Even with the
[charset] prefix, because folder index metadata is cached switching
display charsets was broken neverhteless. Might as well give up
this extra complexity if it doesn't really fix anything.
2004-05-01 Mr. Sam <mrsam@courier-mta.com>
* libmail/smtp.C (smtp): Fix segfault if connect() fails immediately.
2004-04-30 Mr. Sam <mrsam@courier-mta.com>
* cone: Implement macro shortcuts: assign block of text to a function
key or a shortcut. Auto-insert the block when the function key is
pressed or the shortcut text is typed. Mark a section of text then
press CTRL-N to assign it to a function key or a shortcut.
2004-04-27 Jim Gifford <maillist@jg555.com>
* all: various fixes for gcc 3.4
2004-04-26 Mr. Sam <mrsam@courier-mta.com>
* cursesmoronize.C: 1/2, 1/4, and 3/4 must be followed by a space
in order for them to be replaced by their corresponding UTF-8
character (entering dates is annoying otherwise).
0.59
2004-04-24 Mr. Sam <mrsam@courier-mta.com>
* gpglib/list.c (libmail_gpg_listgroups): strip trailing spaces from
group name read from .gnupg/options.
* cone/myserver.C (eventloop): Fix an obscure race condition that's
seen with maildirs (and mailboxes), by making sure that
mail::account::process gets invoked at least once per main event loop.
* libmail: move several functions to the mail:: namespace,
and to a new misc.H.
2004-04-20 Brian Candler <B.Candler@pobox.com>
* maildir/maildirgetnew.c (do_maildir_getnew): Fix infinite loop if
rename() syscall fails.
2004-04-17 Matthias Andree <matthias.andree@gmx.de>
* libmail: Explicit conversion to FILE *(), fileno
may be a macro.
2004-04-17 Mr. Sam <mrsam@commodore.email-scan.com>
* cone.spec.in: Clean up sysconfdir/cone when uninstalling Cone.
2004-04-16 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2231encode.c: clean up rfc 2231 encoding.
Corresponding changes in various bits of code.
2004-04-14 Mr. Sam <mrsam@courier-mta.com>
* cone.spec.in: Spec file fixes.
* cone/sgml/cone.sgml: Typo fixes.
* rfc2047.c (rfc2047_encode_callback): Fix bug introduced in 0411.
2004-04-12 Mr. Sam <mrsam@courier-mta.com>
* gpglib/list.c (libmail_gpg_listgroups): New function - read
.gnupg/options and pick out the recipient groups.
2004-04-11 Mr. Sam <mrsam@courier-mta.com>
* rfc822/rfc2047.c (a_rfc2047_encode_str): Improve compliance with
RFC 2047 for MIME-encoded recipient lists.
(rfc2047_encode_callback): New argument: qp_allow - function that
indicates acceptable characters in QP-encoded words.
(rfc2047_encode_str): Ditto.
(rfc2047_qp_allow_any, rfc2047_qp_allow_comment)
(rfc2047_qp_allow_word): Possible arguments to qp_allow for various
situations.
2004-04-09 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045cdecode.c (do_decode_base64): Long overdue - use
a precomputed base64 decoding table.
* rfc822/encode.c: Moved rfc2045/rfc2045encode.c here, renamed all
functions to use the libmail_ prefix.
0.58
2004-04-05 Mr. Sam <mrsam@courier-mta.com>
* libmail: refactor libmail to use poll() instead of select().
2004-03-28 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessage.C (reply): Allow the default setting for
post-and-mail to be specified on the setup screen.
* cone/cursesmessagedisplay.C (processKeyInFocus): Implemented
intra-message search.
2004-03-27 Mr. Sam <mrsam@courier-mta.com>
* cone/cone.C (folderIndexScreen): Fix error recovery when message
copy fails.
* cone/acl.C: Technicolor for the ACL screens.
2004-03-22 Mr. Sam <mrsam@courier-mta.com>
* cone/sgml: Document mail::ACCOUNT ACL functions.
Document Cone's user interface.
2004-03-21 Mr. Sam <mrsam@courier-mta.com>
* cone/sgml: Document mail::account ACL functions.
* libmail/smapacl.C: Implement SMAP ACLs.
* cone/sgml/smap.sgml: Document SMAP implementation of access control
lists.
* libmail/mail.C (getmyrights): Not implemented by default.
(getrights): Ditto.
(setrights): Ditto.
(delrights): Ditto.
* libmail/imaplisthandler.C (get_name): Implement extended LIST
response.
* libmail/imapfolders.C (createSubFolder): Error handling cleanup
(also in several other funcs).
(getmyrights/getrights/setrights/delrights): Implement IMAP ACLs
(new module, imapacl.C/imapacl.H).
* libmail/imap.C (hasCapability): Special handling for "ACL"
capability.
(getCapability): Ditto.
* curses/cursesmultilinelabel.C: New gadget - a multiline label that
word-wraps to a given width (used to display folder permissions).
2004-02-21 Mr. Sam <mrsam@courier-mta.com>
* tcpd/tlspasswordcache.c (tlspassword_load): Fix memory leak.
* libmail/imapparsefmt.C (operator): Fix missing parent link.
* libmail/fd.C (socketConnect): IPv6 fix.
* cone/cone.C (main): Cleanup logout handling.
* cone/Makefile.am (libmail.a): Portability fix.
2004-02-18 Mr. Sam <mrsam@commodore.email-scan.com>
* curses/configure.in: Check for ncursesw/curses.h.
2004-02-09 IKEDA Soji <nezumi@jca.apc.org>
* Big5, euc-jp, gb2312, ksx1001, shiftjis: let these functions handle
their own conversion errors.
2004-02-07 IKEDA Soji <nezumi@jca.apc.org>
* Big5: Add non-hanzi maps. Add ETen extension. Add Big5-HKSCS
charset.
* Gb2312: Add non-hanzi maps.
* Let iso2022-jp functions handle their own conversion errors.
2004-02-02 IKEDA Soji <nezumi@jca.apc.org>
* iso2022jp.h: Maps for CJK Compatibility Ideographs has been added.
* ksx1001.c: New character sets: ISO-2022-KR, EUC-KR, CP949,
ISO-2022-JP-1.
2004-02-01 Mr. Sam <mrsam@courier-mta.com>
* unicode/iso88597.c: Updated from unicode.org.
* unicode/unicode_ultcasetab.c: Updated from unicode.org
2004-02-01 IKEDA Soji <nezumi@jca.apc.org>
* iso2022jp.pl / iso2022jp.h: JIS X 0208 mapping has been updated
based on latest regional standard (JIS X 0208:1997) and some vendor
standards. Errorneous (lacking or false) mappings has been fixed.
Support for older JIS X 0208 (JIS C 6226:1978) mapping was added.
JIS X 0212:1990 mapping was added.
* iso2022jp.c: Converters became (upper-)compatible with ISO-2022-JP
(RFC1468 / JIS X 0208:1997 Annex 2) and ISO-2022-JP-1 (RFC2237).
Buffer overflow vulnerability (when Unicode character is out
of BMP range) has been closed. Convert error handling was implemented.
* shiftjis.c: Broken SHIFT_JIS converters has been fixed and became
(upper-)compatible with Shifted Encoding Method (JIS X 0208:1997
Annex 1). Buffer overflow vulnerability (when Unicode character is out
of BMP range) has been closed. Convert error handling was implemented.
* eucjp.c: New converters for EUC-JP.
0.57
2004-01-01 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesedit.C (archiveSentFolder): Happy New Year! Automatic
rename of last month's sent folder is broken on a year change.
2003-12-18 Mr. Sam <mrsam@courier-mta.com>
* cone/sgml/cone-localmail.sgml: Documentation changes. Custom
ncurses build not required for FC1.
* libmail/generic.C (genericReadMessageContent): Only mark the
message as read if not peeking (fix search header marking unread
messages as read).
2003-12-19 Mr. Sam <mrsam@courier-mta.com>
* unicode: Fix toupper_func/tolower_func/totitle_func for shiftjis,
big5, utf8, utf7, iso2022jp: function may return a NULL even when
requested to ignore conversion errors.
2003-12-09 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirrename.c (validrename): Rename foo to foo.bar is not
kosher. Compile list of directories to rename first, sort, then
rename.
2003-12-04 Mr. Sam <mrsam@courier-mta.com>
* libmail/pop3.C (doNextDownload): Messages downloaded from a POP3
maildrop are new messages.
2003-11-30 Matthias Andree <matthias.andree@gmx.de>
* libmail/pop3maildrop.C: Freebsd needs some include files here.
0.56
2003-11-27 Mr. Sam <mrsam@courier-mta.com>
* cone/sgml/index.sgml: Document the UIDL issue in the FAQ.
2003-11-16 Mr. Sam <mrsam@courier-mta.com>
* cone/leaf.C (saveTo): Preserve mode when saving a file.
2003-11-15 Mr. Sam <mrsam@courier-mta.com>
* cone: Implement the pop3 maildrop mode. The pop3 maildrop mode
works with old POP3 servers that do not implement UIDL.
* libmail/pop3.C (stlsHandler): Fix error recovery.
* Update to automake 1.7.8, autoconf 2.57, libtool-1.5, gettext-0.12.1
* curseshierarchy.C (processKey): After deleting an account,
explicitly delete its newsrc file or maildir (where appropriate)
instead of leaving the task to myServer::loadconfig()
2003-11-12 Mr. Sam <mrsam@courier-mta.com>
* cone/filtereditscreen.C (filterEditScreen): Cone terminated after
saving a folder filter, when remote configuration was in effect.
2003-11-08 Mr. Sam <mrsam@courier-mta.com>
* cone/curseseditmessage.C (yank): Fix autocorrect.
* curses/cursesfield.C (processKeyInFocus): Dottp/
* cone/myserverconfig.C: Memorized passwords may get un-memorized when
remote configuration file is being used, sometimes.
2003-11-06 Mr. Sam <mrsam@courier-mta.com>
* cone/cone.C (main): Fix import of custom colors from saved
configuration.
0.55
2003-10-21 Mr. Sam <mrsam@courier-mta.com>
* libmail/nntplogin.C: New authentication logic. Authentication
auto-detection didn't work with some news server. Get rid of
auto-detection logic. Now, authentication is done if the userid
at login time is set; if so, the password is prompted for.
* tcpd: Respect $(EXEEXT)
* libhmac: Respect $(EXEEXT)
* rfc2045/testsuite: Fix enable-mimecharset breaking make check.
2003-10-12 Mr. Sam <mrsam@courier-mta.com>
* libmail/mbox.C (genericMarkRead): Mark the current folder as
dirty, after implicitly turning of the unseen flag.
* curses/cursesmoronize.C: Provide "auto-correct" type of a framework.
2003-10-11 Mr. Sam <mrsam@courier-mta.com>
* all: More Technicolor.
* maildir/maildirgetnew.c (do_maildir_getnew): Workaround for
filesystems that keel over if files are deleted in the directory
that's being read at the same time.
2003-10-10 Brian Candler <B.Candler@pobox.com>
* maildir/loginexec.c (maildir_loginexec): Hook for Maildir/loginexec,
if exists it's executed, then removed. Used for migration-type
situations. (NOT USED BY CONE)
2003-09-30 Mr. Sam <mrsam@courier-mta.com>
* cone/gettext.C: Toggle (on the curses index screen) conflicts with
Tag.
* cone/cursesedit.C: Add some color to the write message screen.
2003-09-29 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessage.C (addHeader): Add some color to the message
display screen.
2003-09-28 Mr. Sam <mrsam@courier-mta.com>
* libmail/nntpxpat.C (processXpatResponse): Fix: filtering in a
newsgroup may cause an infinite loop.
2003-09-21 Mr. Sam <mrsam@courier-mta.com>
* curses/cursesscreen.C (writeText): Use termattrs() to check if
the terminal can underline. If not, replace spaces with underscores.
2003-09-17 Mr. Sam <mrsam@courier-mta.com>
* cone/gettext.C (defaultCharsetName): Check MM_CHARSET environment
variable in addition to CHARSET.
* libmail/smtp.C (starttls): Re-issue EHLO after STARTTLS.
* curses/cursesscreen.C (runCommand): Correctly hand off terminal
stop signal to the child process.
2003-09-15 Mr. Sam <mrsam@courier-mta.com>
* Makefile.am (distrelease): make distrelease make sure cone.pot is
up to date.
* cone/colors.C: New framework for setting colors of various things.
Colors are set from the setup screen. Implemented color selection
for the folder listing screen.
* curses/cursesscreen.C (CursesScreen): Initialize color pairs in a
manner that allows arbitrary fore/bg color selection.
* curses/mycurses.H: Clean up CursesAttr: highlight/reverse/uline
attrs are now bools, separate fore/bg color attributes.
* all: Use consistent format for yes/no prompts.
* cone/globalkeys.C (processKey): Optional prompt - are you sure you
want to quit?
* cone/curseseditmessage.C (processKeyInFocus): Added ^U - invoke
external editor.
* all: major cleanup with how keyboard input is handled. Should be
more efficient, and faster on slow machines.
2003-09-13 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesindexdisplay.C (processKeyInFocus): Move message is
essentially a copy followed by an expunge.
0.54
2003-09-13 Mr. Sam <mrsam@courier-mta.com>
* cone/sgml/cone-folderindex.sgml (prompt): Document the new
behavior of the copy command (split into non-batch, and batch
versions).
* cone/sgml/cone-folderindex.sgml: To clear things up,
searching/marking messages with the spacebar is now called "flagging";
highlighting messages with a background color is called "tagging".
2003-09-01 Mr. Sam <mrsam@courier-mta.com>
* cone/myfolder.C (setTag): Use Tags::getTagName(); do not erase any
foreign keywords.
* cone/tags.C (getTagName): Formalize $LabelN convention.
* cone/myfolderfilter.C (doStep): Implement filter_step_tag in two
steps: first remove any existing tags, then add the new tag.
* cone/filtereditscreen.C (add): New filter option: Tag.
* cone/filter.C: Add filter_step_tag, store tag number in name_utf8.
* cone/cursesindexdisplay.C (getTag): Make this a static function,
accessible by Filter::editScreen().
* libmail/imapfolder.C (saveflags): Fix FETCH FLAGS.
2003-08-27 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesindexdisplay.C: Dis-ambiguate the copy command.
C)opy issued from the folder index screen copies only the message
under the cursor. To copy all selected messages, select C)opy from
the batch menu, ";". Former clear selected option now uses "R"
instead of "C". Now all batch commands are consistently issued from
the batch menu.
* cone: Configure tags from the setup screen, save them.
* cone/cursesmessage.C (reformat): Use tagged color for MIME section
separators.
* curses/cursesscreen.C (getColorCount): Return # of colors supported
by device.
* libmail/nntp.C: Add mail::keywords::Message to the new index array,
thus implementing keywords.
* libmail/nntp.H: Combine idxMsgNums and idxFlags array into
the new index array.
* libmail/pop3.C (pop3MessageInfo): New subclass of messageInfo for
POP3. Added extra field, mail::keywords::Message, that holds
keywords.
(getFolderKeywordInfo): Get keywords.
(updateKeywords): Update keywords, generically. Afterwards, take
a snapshot.
(pop3): Manually clear currentFolderIndex, to release any remaining
references to keywordHashtable.
2003-08-26 Mr. Sam <mrsam@courier-mta.com>
* libmail/mboxmagictag.C (mboxMagicTag): The magic mbox tag now
includes a list of keywords set for this message. The mboxMagicTag
object now includes a mail::keywords::Message, which is initialized
from the magic mbox tag string. ::toString() recreates it,
getKeywords() and setKeywords() access it/
* libmail/mbox.C (getFolderKeywordInfo): Retrieve keywords.
(updateKeywords): Update keywords using a generic implementation,
which marks the folder as dirty (will eventually be written out).
* libmail/generic.C: Create a generic implementation of keyword updates
which is going to be used by mbox, pop3, and nntp.
* maildir/maildirkeywords.h: Optimize the C++ wrapper for keyword
support. Allocate a libmail_kwMessage only upon demand, and
autodestroy it accordingly. Implement a C++-friendly
maildir_kwSave().
* libmail/generic.C: Remove genericGetFolderKeywordInfo and
genericSetFolderKeywordInfo - superceded by mail::keyword::Message
methods. Appropriate adjustments to the rest of the code.
* cone/configscreen.C: Add SMTP tunneled over SSL option to the
configuration screen.
2003-08-24 Mr. Sam <mrsam@courier-mta.com>
* libmail/smap.C (processLine): Process FETCH KEYWORDS replies.
* libmail/nntpgroupopen.C (restoreKeywords): Temporary stub.
* libmail/pop3.C (restoreKeywords): Temporary stub.
* libmail/maildir.C (getFolderKeywordInfo): Now superceded, mostly,
by genericGetFolderKeywordInfo().
(updateKeywords): Partially superceded by genericSetFolderKeywordInfo.
* libmail/imapfolder.H: Convert index, which was a vector of
mail::messageInfo, to a vector of a new object, indexInfo, that's
publicly derived from mail::messageInfo, and includes an additional
member object, keywords, which thusly holds keywords set for the given
message. Adjust a few references that need more than an implicit
conversion to effect the upgrade.
* libmail/imapfolder.C (installed): Make sure to clear folderFlags
and permanentFlags immediately after issuing a SELECT.
imapSELECT_FLAGS no longer needs a ptr to its imapSELECT object.
(saveflags): Process IMAP keywords during FETCH FLAGS.
(keywordAllowed): Indicate whether the given keyword is supported by
the IMAP server.
(saveFolderIndexInfo): When updating IMAP FLAGS, leave any keywords
intact.
(updateKeywords): Update KEYWORDS for multiple messages. For IMAP
it's tricky, since STORE FLAGS (but not STORE +FLAGS or STORE -FLAGS)
would also reset any IMAP flags set for each message. Punt by
converting a keyword store into a STORE -FLAGS, naming all keywords
used by the listed messages, then a STORE +FLAGS, naming all new
keywords to help. Use a new helper object, updateImapKeywordHelper,
to glue the two operations together.
* libmail/imap.H: Keep track of IMAP PERMANENTFLAGS in permanentFlags,
added keywordHashtable for keyword support.
* libmail/imap.C (socketRead): OK [PERMANENTFLAGS] - invoke
setPermanentFlags(), OK [ALERT] - alert, other OKs - ignore.
(setPermanentFlags): Initialize mail::imap.permanentFlags (new
set<string>).
* libmail/generic.C (genericGetFolderKeywordInfo): Convert keyword list
to a set<string>.
(genericSetFolderKeywordInfo): Convert set<string> to a keyword list.
* cone/myfolder.C (restoreSnapshot): Restore keywords from a snapshot.
(saveSnapshot): Save keywords in a snapshot.
2003-08-23 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessage.C (reply): Remove misplaced break (reply might
result in from/newsgroups: header not being set, in some cases).
2003-08-21 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesindexdisplay.C (processKeyInFocus): Display tag
shortcuts in all their glory.
* curses/cursesstatusbar.C (draw): Ugly hack: shortcut name that
starts with /n is drawn with the color set to color #n.
* curses/cursesscreen.C (CursesScreen): A smarter heuristic for
initializing color pairs.
2003-08-20 Mr. Sam <mrsam@courier-mta.com>
* cone/myfolder.C (newMessagesReceivedAndFiltered): Read keywords
on newly-delivered mail.
(messageChanged): Read updated keywords.
(init): Initialize keywords of messages in an opened folder.
(setTag): Look for a $LabelN keyword in order to tag a message.
* cone/cursesindexdisplay.C (drawLine): Use $LabelN keywords to tag
messages, like Mozilla. Show tagged messages with different BG color.
* curses/cursesscreen.C (CursesScreen): Change the initialization
function to cycle the available background colors, instead of
the foreground colors.
* libmail/maildir.C: Added keyword support to the maildir driver.
A default implementation for keyword methods is temporarily supplied
by the mail::account superclass. Will be removed when keyword
support is added to all drivers.
* maildir/maildirkeywords4.cpp: Added C++ wrappers for some keyword-
related classes.
2003-08-18 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesedit.C (save): Set the character set to US-ASCII if
message is 7-bit only, and the character set is a US-ASCII superset.
* cone/myserverconfig.C (getCachedFilename): Make sure newly-created
cache/index file is added to cacherc.
2003-08-13 Mr. Sam <mrsam@courier-mta.com>
* libmail/nntpchecknew.C (processXhdrStatus): Ignore 420 replies to
an XHDR.
* libmail/nntpgroupopen.C (processLISTGROUP): Ignore 420 replies to
an XHDR.
0.53
2003-08-12 Mr. Sam <mrsam@courier-mta.com>
* libmail/base64.C (callback_func): Fix base64 encoding, affects
authenticated ESMTP.
* libmail/pop3.C (searchMessages): Manually disable inefficient POP3
search types.
2003-07-31 Mr. Sam <mrsam@courier-mta.com>
* libmail/nntp.C (searchMessages): Disable unreasonable searches.
* cone/myserver.C (serverLogout): Make sure all background processing
stops before the account is closed.
* cone/sgml/cone-filters.sgml (killfile): Document searching
and filtering.
2003-07-30 Mr. Sam <mrsam@courier-mta.com>
* libmail/maildirfolder.C (moveMessagesTo): Implement native message
move.
* cone/sgml: Document new libmail functions that move messages.
* libmail/nntpxpat.C (done): Fix NNTP XPAT lo-hi search.
* libmail/smapstatus.C (processLine): Fix unsolicited msgs in SMAP
STATUS.
* libmail/smapsearch.C (processLine): Fix unsolicited msgs in SMAP
SEARCH.
* libmail/smaplist.C (processLine): Fix unsolicited msgs in SMAP LIST.
* libmail/smapcopy.C (processLine): Fix SMAP MOVE.
* cone/myfolderfilter.C (doStep2): Implement MOVE filter.
* libmail/mail.H: Added mail::account::moveMessagesTo(), implemented
natively by SMAP, and manually in all other situations (copy, followed
by remove).
* libmail/imapfolder.C (moveMessagesTo): Use SMAP MOVE to move messages
via SMAP, use generic implementation in all other cases.
* libmail/smapcopy.C (go): Implement SMAP MOVE.
* cone/myfolder.C (resort): Fix an obscure race condition. If
the sorting order is changed to threading while Cone is reading
headers of messages that's just been added to the mailbox, and are
not yet part of the sorted folder index, the thread sort will
re-sort the entire folder index, including the new messages.
The consequences are undefined. Change resort() to only rethread
the existing messages, by simply looking at the size of the
sorted_index array. Consequently, in newMessagesReceived(), which
gets invoked after the headers are read, and the messages may be
shown in the index now, manually updated sorted_index() so that
resort() can now rethread the entire index.
There might be other execution paths that result in rethreading
occuring while new messages are being processed. This is the Right
Thing To Do in any case.
* cone/myfolder.C: (init): Implemented folder filtering on the
initial folder open. "Move messages" does not yet work. Filtering
of new messages received while the folder is open does not yet work.
2003-07-28 Mr. Sam <mrsam@courier-mta.com>
* Save/load filters automatically, as a folder parameter.
2003-07-27 Mr. Sam <mrsam@courier-mta.com>
* cone/filtereditscreen.C, cone/filter.C: new screen for entering
folder filters. Nothing's actually so far, just a new screen
(and copy/move options are stubbed out), and the filter is not
saved.
* cone/cone.C (folderIndexScreen): Clean up message copying code.
Rip it out of CursesHierarchy (and the CopyInProgress class). Replace
it with a general flag that, if set, disables folder open and replaces
it with a stub that terminates the current event loop, and returning
to the caller with a saved pointer to which folder was selected.
Now, the command to copy messages terminates the folder index event
loop. The parent function, after closing the screen, saves the
UIDs of selected messages, then manually invokes openHierarchyScreen
with the magic flag set. When openHierarchyScreen returns, it checks
if the folder has been selected. If so, the messages are copied,
and the original folder index screen is reopened.
2003-07-23 Mr. Sam <mrsam@courier-mta.com>
* cone/searchprompt.C: Moved all search criteria prompting into
a separate class.
* libmail/search.C (searchParams): Implement serialize/deserialize
of the searchParams object (to be tested).
* libmail/search.H: Implement search_range.
* cone/sgml/smap.sgml: Document updated SEARCH command.
* cone/myserver.C (eventloop): Memorize typeahead keystrokes while
a server request is pending.
* cone/myfolder.C (newMessagesReceived): Get rid of a duplicate
call to saveFolderIndex().
2003-07-22 Mr. Sam <mrsam@courier-mta.com>
* libmail/search.C: Fix SEARCH NOT [STATUS].
* libmail/search.H: Replace broaden flag with a tristate flag:
search all, search marked, search unmarked.
* libmail/nntpxpat.C: Use XPAT to search NetNews folders.
2003-07-21 Mr. Sam <mrsam@courier-mta.com>
* cone/sgml/index.sgml: Properly generate a link to the Sourceforge
logo, and remove the hack in the Makefile
2003-07-19 Mr. Sam <mrsam@courier-mta.com>
* libmail/maildir.C (open): Create courierimapkeywords directory,
for compatibility.
* cone/sgml/smap.sgml: Add KEYWORDS extension.
* cone/sgml/mailtoolman.sgml: Typo.
2003-07-09 Mr. Sam <mrsam@courier-mta.com>
* cone/myserverconfig.C: save and restore default watch intervals,
watch database's contents.
(loadFolderIndex): Invoke myFolder::Index::checkwatch() after
restoring a folder index record.
* cone/myfolder.H: Keep a watchList, the watch database, in the
folder object.
* cone/myfolder.C (messageEnvelopeCallback): Remove the last bits
of references-related processing in messageEnvelopeCallback, and
have it invoke messageReferencesCallback instead; so that all
References:-related processing is now handled in
messageReferencesCallback. Invoke myFolder::Index::checkwatch(),
just in case.
(messageReferencesCallback): Check the watched list of all
message IDs in the references header, and compute the watch level
for this message. If messageReferencesCallback() is called with
the rest of the envelope already set up,
call myFolder::Index::checkwatch().
(checkwatch): If this message is not currently being watched,
supposedly, check the watch database, because it might've just been
updated.
* Implement thread watching. Save watched message IDs in the
folder cache file. Watch threads for up to X days, and Y levels
of replies. Mark Yth level of reply with a different character,
as a prompt to renew the thread, if it's still on topic. Setup screen
defines the default X and Y.
2003-07-08 Mr. Sam <mrsam@courier-mta.com>
* rfc822/imaprefs.c (rfc822_threadmsgrefs): New function takes
an array of References: headers, instead of a single References:
string.
* cone/myreferences.C: We're going to be working with message IDs more.
Instead of storing a message id and a references header for every
message in the folder's index, store all known message Id in a
myMessageIds object. Each message id is represented by a messageId
object, that refers to the actual string in myMessageIds, which is
reference-counted. Therefore, even if the underlying std::string
implementation does not use reference-counted strings, we do, and
we'll be very efficient in doing so.
* cone/myfolder.H: Replace Index::messageid with a myMessageId object,
and Index::references with a vector<myMessageId>. Corresponding
changes to myfolder.C
* cone/myfolder.C (resort): Feed Index::references to the new
rfc822_threadmsgrefs function. Should speed up threading.
0.52
2003-07-06 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesattachmentdisplay.C (download): Report an error if
unable to open a file for saving an attachment.
2003-07-04 Mr. Sam <mrsam@courier-mta.com>
* libmail/imap.C (disconnect): Correctly report SSL-related errors
on a failed connection attempt.
2003-07-02 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesedit.C (postpone): Fix encryption error recovery path.
2003-07-01 Mr. Sam <mrsam@courier-mta.com>
* cone/myfolder.C (resort_layout): Fix threading of large folders.
2003-06-29 Mr. Sam <mrsam@courier-mta.com>
* cone/cursesmessage.C (reply): Post-and-mail option put recipient's
address into the Cc: header, instead of the To: header.
* cone/cursesindexdisplay.C (draw): Number of messages on the right
margin of the title bar, folder name has all the space on the left
margin of the title bar, now.
2003-06-27 Mr. Sam <mrsam@courier-mta.com>
* libmail/imapfolders.C (go): Fix APPEND date format.
2003-06-26 Mr. Sam <mrsam@courier-mta.com>
* cone/Makefile.am (libmail.a): Speed up script that creates libmail.a
* cone/cursesmessage.C (reply): Fix reply-to selecting wrong
addresses to reply to.
* Makefile.am: Forgot to have mailtool installed to bindir.
* cone/cone.C (main): Add undocumented -C option that dumps the
config file in a readable format.
* cone/sgml: Tweak screen dumps to fit within alloted screen width;
other minor tweaks.
* cone/cursesindexdisplay.C (processKeyInFocus): Cursor left/right
keys move the cursor to the previos/next tagged message. Very useful
after a search.
* cone/cursesmessage.C (reformat): Abbreviated headers use locale
strings in the Date: header. Clean up RFC 2047 decoding (do not
decode RFC 2047-encoded strings when showing full headers, only
do the decoding where it's appropriate).
2003-06-25 Mr. Sam <mrsam@courier-mta.com>
* Try to figure out whether locale uses a 12 or a 24 hour clock;
adjust dates in the folder's index accordingly.
* cone/cursesmessage.C (grok): When selecting to view a specific
attachment, other message/rfc822 attachments in the original message
were also shown.
2003-06-24 Mr. Sam <mrsam@courier-mta.com>
* libmail/smapadd.C (fillWriteBuffer): Progress report indication.
* libmail/fd.C (debug_io): Fix broken cerr flushing in gcc 3.2.2
* cone/curseshierarchy.C (processKey): ^R on folder listing screen
resets memorized headers for the highlighted folder.
2003-06-22 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045reply.c (mkforward): Fix MIME decoding of forwarded
text.
* cone.spec.in: Compile against latest Rawhide curses build.
... not (just leave a placeholder).
2003-06-21 Mr. Sam <mrsam@courier-mta.com>
* cone/spellcheckerAspell.C: New aspell API (0.50+) support.
2003-06-20 Matthias Andree <ma@dt.e-technik.uni-dortmund.de>
* libmail/sync.C (getFolderFromPath): Remove EPROTO usage.
* libmail/smtp.C: Add include signal.h
* libmail/smapadd.C: Add include sys/types.h, sys/stat.h
* libmail/mboxgetmessage.C: Add include sys/types.h, sys/stat.h
2003-06-18 Mr. Sam <mrsam@courier-mta.com>
* libmail/fd.C (establishtls): Fix incorrect callback usage when
SSL negotiation fails.
* libmail/generic.C (genericBuildEnvelope): Fix correct capture of
Cc: and Bcc: headers in manually-parsed message envelope.
2003-06-17 Mr. Sam <mrsam@courier-mta.com>
* cone/cone.C (main): mail::account::resume() after ^Z.
* cone/encryptionmenu.C (editkey_s): mail::account::resume() after
running GnuPG.
* libmail: Added mail::account::resume, invoked after resuming from
a suspend, to prevent bogus timeouts.
* cone/encryptionmenu.C (EncryptionMenu): Fix bad keyboard shortcut
for "EDIT KEY".
2003-06-16 Mr. Sam <mrsam@courier-mta.com>
* cone/Makefile.am (onlinehelp): Rename help file to cone.hlp
* cone/encryptionmenu.C: Direct implementation of generating,
deleting, and signing keys, via gpglib.
2003-06-15 Mr. Sam <mrsam@courier-mta.com>
* gpglib/genkey.c (mkcmdbuf): Deal with empty name.
* cone/mainmenu.C: Separate menu handling code into new MenuScreen
superclass.
* cone/gpg.C: Sort keys by address.
2003-06-13 Mr. Sam <mrsam@courier-mta.com>
* cursesattachmentdisplay.C (open): Implement key import.
* curses/cursesstatusbar.C (resetRow): Fix display of excessively
long status message.
* gpglib/export.c (libmail_gpg_exportkey): Fix bug that exports all
keys, not just the selected key.
* cursesmessage.C (bool): Do not autoopen inline attachments that run
an external filter. Require an explicit selection.
2003-06-12 Mr. Sam <mrsam@courier-mta.com>
* gpg.C (draw): Fix keylist display, add title.
* gpglib/gpg.c (dogpgsign): Fix occasional invalid signature when
signing 8-bit content (bug in conversion to quoted-printable).
* tcpd/tlspasswordcache.c (tlspassword_save): Use EIO instead of
EPROTO (which is not defined everywhere).
* tcpd/configure.in: More thorough check for OpenSSL 0.9.7.
2003-06-11 Mr. Sam <mrsam@courier-mta.com>
* cone: Added basic GnuPG support.
* gpglib/gpglib.h: Added errstatus to libmail_gpg_info
* libmail/fdtls.C: Fix compile without OpenSSL.
* htmlparser.C: Indent <TABLE> tags.
2003-06-09 Mr. Sam <mrsam@courier-mta.com>
* savedialog.H/opendialog.H: fix error recovery if server connection
breaks while the dialog is shown.
2003-06-08 Mr. Sam <mrsam@courier-mta.com>
* myserver.C (disconnected): Suppress disconnect error message on
intentional disconnects.
2003-06-07 Mr. Sam <mrsam@courier-mta.com>
* libmail/sync.H: Redefine iterator in a manner that, hopefully,
older gcc's will understand.
* libmail: removed the name parameter from mail::folder::getSubFolders
and mail::folder::getParentFolder. mail::folder::getName() will now
always return the folder's native name. Made according changes to
Cone mainline (removing the additional prompt to <U>se/<T>oplevel
folder). Documented getParentFolder().
* libmail/smtp.C (pipelinedResponse): Fix wild ptr dereference.
* curses/configure.in: Add AC_GNU_SOURCE (RH 7.3)
2003-06-04 Mr. Sam <mrsam@courier-mta.com>
* Added master passwords.
* libmail/smapadd.C (fillWriteBuffer): Keep long SMAP uploads from
timing out.
2003-06-03 Mr. Sam <mrsam@courier-mta.com>
* libmail/maildir.C (handler): Fix maildir breakage on platforms
that do not have FAM.
0.51
2003-06-03 Mr. Sam <mrsam@courier-mta.com>
* sgml/index.sgml: Fix typo.
2003-06-01 Mr. Sam <mrsam@courier-mta.com>
* cursesedit.C: Prompt before memorizing new custom headers, making
it optional, instead of automatic.
2003-05-31 Mr. Sam <mrsam@courier-mta.com>
* configscreen.C (doSave): Only call setDictionary() for
non-empty dictionary names.
* myserverconfig.C (loadconfig): Only call setDictionary() for
non-empty dictionary names.
* leaf.C (main): Only call setDictionary() for non-empty dictionary
names.
* configure.in: Fix online help in development builds.
2003-05-30 Mr. Sam <mrsam@courier-mta.com>
* cone/myfolder.C: Implement threaded folder display.
* myserverconfig.C (getConfigDir): Prepend curdir if -c option
specified an absolute path (fixes address book bug).
* cone/sgml/smap.sgml: LOGOUT instead of QUIT.
2003-05-29 Mr. Sam <mrsam@courier-mta.com>
* gettext.C (defaultCharsetName): Fix CHARSET initialization.
* spellcheckerNone.C (setDictionary): stub setDictionary(), so that
spellcheckerNone.C actually compiles.
* libmail: added references to mail::envelope, added
messageReferencesCallback() to mail::callback::message. Documentation
updated, Cone updated to save the threading information (other than
that nothing's done with threading just yet).
2003-05-28 Mr. Sam <mrsam@courier-mta.com>
* libmail/objectmonitor.H: Fix definition of mail::obj.
* libmail/mail.H: More portable definition of LIBMAIL_THROW_DEBUG
* configure.in: Fix --with-certdb default.
* curses/cursesmainscreen.H: A friend declaration makes old gcc
happy.
* sgml/index.sgml: Typos.
* cone/configure.in: Fix search for xml-config.
0.50
2003-05-27 Mr. Sam <mrsam@courier-mta.com>
* Initial release.
2002-10-13 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.am (ACLOCAL_AMFLAGS): New variable.
2002-07-08 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.am (SUBDIRS): Add intl.
* configure.in (AC_OUTPUT): Add intl/Makefile.
2002-07-08 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.am (SUBDIRS): Add m4.
(ACLOCAL_AMFLAGS): New variable.
(EXTRA_DIST): New variable.
* configure.in (AC_OUTPUT): Add po/Makefile.in, m4/Makefile.
|