1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
|
/* -*-mode:c; c-style:k&r; c-basic-offset:4; -*- */
/* Balsa E-Mail Client
*
* Copyright (C) 1997-2002 Stuart Parmenter and others,
* See the file AUTHORS for a list.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#include "config.h"
#define _BSD_SOURCE 1
#define _POSIX_C_SOURCE 199309L
#include <fcntl.h>
#include <errno.h>
#include <stdlib.h>
#include <time.h>
#ifdef BALSA_USE_THREADS
#include <pthread.h>
#endif
#include <string.h>
#include "libbalsa.h"
#include "libbalsa_private.h"
#include "send.h"
#include "misc.h"
#include "information.h"
#if ENABLE_ESMTP
#include "smtp-server.h"
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#endif /* ESMTP */
#include <sys/utsname.h>
#include "i18n.h"
typedef struct _MessageQueueItem MessageQueueItem;
struct _MessageQueueItem {
char tempfile[_POSIX_PATH_MAX];
LibBalsaMessage *orig;
GMimeStream *stream;
LibBalsaFccboxFinder finder;
#if !ENABLE_ESMTP
MessageQueueItem *next_message;
enum {MQI_WAITING, MQI_FAILED,MQI_SENT} status;
#else
long message_size;
long sent;
long acc;
long update;
int refcount;
#endif
};
typedef struct _SendMessageInfo SendMessageInfo;
struct _SendMessageInfo{
LibBalsaMailbox* outbox;
#if ENABLE_ESMTP
/* [BCS] - The smtp_session_t structure holds all the information
needed to transfer the message to the SMTP server. This structure
is opaque to the application. */
smtp_session_t session;
#else
LibBalsaFccboxFinder finder;
#endif
gboolean debug;
};
/* Variables storing the state of the sending thread.
* These variables are protected in MT by send_messages_lock mutex */
#if ENABLE_ESMTP
#else
static MessageQueueItem *message_queue;
#endif
static int sending_threads = 0; /* how many sending threads are active? */
/* end of state variables section */
gboolean
libbalsa_is_sending_mail(void)
{
return sending_threads>0;
}
/* libbalsa_wait_for_sending_thread:
wait for the sending thread but not longer than max_time seconds.
-1 means wait indefinetely (almost).
*/
void
libbalsa_wait_for_sending_thread(gint max_time)
{
gint sleep_time = 0;
#define DOZE_LENGTH (20*1000)
static const struct timespec req = { 0, DOZE_LENGTH*1000 };/*nanoseconds*/
if(max_time<0) max_time = G_MAXINT;
else max_time *= 1000000; /* convert to microseconds */
while(sending_threads>0 && sleep_time<max_time) {
while(gtk_events_pending())
gtk_main_iteration_do(FALSE);
nanosleep(&req, NULL);
sleep_time += DOZE_LENGTH;
}
}
static MessageQueueItem *
msg_queue_item_new(LibBalsaFccboxFinder finder)
{
MessageQueueItem *mqi;
mqi = g_new(MessageQueueItem, 1);
mqi->finder = finder;
#if !ENABLE_ESMTP
mqi->next_message = NULL;
mqi->status = MQI_WAITING;
#endif
mqi->stream=NULL;
mqi->tempfile[0] = '\0';
return mqi;
}
static void
msg_queue_item_destroy(MessageQueueItem * mqi)
{
if (*mqi->tempfile)
unlink(mqi->tempfile);
if (mqi->stream)
g_object_unref(mqi->stream);
if (mqi->orig)
g_object_unref(mqi->orig);
g_free(mqi);
}
#if ENABLE_ESMTP
static SendMessageInfo *
send_message_info_new(LibBalsaMailbox* outbox, smtp_session_t session,
gboolean debug)
{
SendMessageInfo *smi;
smi=g_new(SendMessageInfo,1);
smi->session = session;
smi->outbox = outbox;
smi->debug = debug;
return smi;
}
#else
static SendMessageInfo *
send_message_info_new(LibBalsaMailbox* outbox,
LibBalsaFccboxFinder finder, gboolean debug)
{
SendMessageInfo *smi;
smi=g_new(SendMessageInfo,1);
smi->outbox = outbox;
smi->finder = finder;
smi->debug = debug;
return smi;
}
#endif
static void
send_message_info_destroy(SendMessageInfo *smi)
{
g_free(smi);
}
#if HAVE_GPGME
static gint
libbalsa_create_rfc2440_buffer(LibBalsaMessageBody *body, GMimePart *mime_part,
GtkWindow * parent);
static LibBalsaMsgCreateResult
do_multipart_crypto(LibBalsaMessage * message, GMimeObject ** mime_root,
GtkWindow * parent);
#endif
static guint balsa_send_message_real(SendMessageInfo* info);
static LibBalsaMsgCreateResult
libbalsa_message_create_mime_message(LibBalsaMessage* message,
gboolean flow, gboolean postponing);
static LibBalsaMsgCreateResult libbalsa_create_msg(LibBalsaMessage * message,
gboolean flow);
static LibBalsaMsgCreateResult
libbalsa_fill_msg_queue_item_from_queu(LibBalsaMessage * message,
MessageQueueItem *mqi);
#ifdef BALSA_USE_THREADS
void balsa_send_thread(MessageQueueItem * first_message);
GtkWidget *send_progress_message = NULL;
GtkWidget *send_dialog = NULL;
GtkWidget *send_dialog_bar = NULL;
static void
send_dialog_response_cb(GtkWidget* w, gint response)
{
if(response == GTK_RESPONSE_CLOSE)
gtk_widget_destroy(w);
}
static void
send_dialog_destroy_cb(GtkWidget* w)
{
send_dialog = NULL;
send_progress_message = NULL;
send_dialog_bar = NULL;
}
/* ensure_send_progress_dialog:
ensures that there is send_dialog available.
*/
static void
ensure_send_progress_dialog()
{
GtkWidget* label;
if(send_dialog) return;
send_dialog = gtk_dialog_new_with_buttons(_("Sending Mail..."),
NULL,
GTK_DIALOG_DESTROY_WITH_PARENT,
_("_Hide"),
GTK_RESPONSE_CLOSE,
NULL);
gtk_window_set_wmclass(GTK_WINDOW(send_dialog), "send_dialog", "Balsa");
label = gtk_label_new(_("Sending Mail..."));
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(send_dialog)->vbox),
label, FALSE, FALSE, 0);
send_progress_message = gtk_label_new("");
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(send_dialog)->vbox),
send_progress_message, FALSE, FALSE, 0);
send_dialog_bar = gtk_progress_bar_new();
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(send_dialog)->vbox),
send_dialog_bar, FALSE, FALSE, 0);
gtk_window_set_default_size(GTK_WINDOW(send_dialog), 250, 100);
gtk_widget_show_all(send_dialog);
g_signal_connect(G_OBJECT(send_dialog), "response",
G_CALLBACK(send_dialog_response_cb), NULL);
g_signal_connect(G_OBJECT(send_dialog), "destroy",
G_CALLBACK(send_dialog_destroy_cb), NULL);
/* Progress bar done */
}
/* define commands for locking and unlocking: it makes deadlock debugging
* easier. */
#define send_lock() pthread_mutex_lock(&send_messages_lock);
#define send_unlock() pthread_mutex_unlock(&send_messages_lock);
#else
#define ensure_send_progress_dialog()
#define send_lock()
#define send_unlock()
#endif
static void
lbs_set_content(GMimePart * mime_part, gchar * content)
{
GMimeStream *stream;
GMimeDataWrapper *wrapper;
stream = g_mime_stream_mem_new();
g_mime_stream_write(stream, content, strlen(content));
wrapper =
g_mime_data_wrapper_new_with_stream(stream,
GMIME_PART_ENCODING_DEFAULT);
g_object_unref(stream);
g_mime_part_set_content_object(mime_part, wrapper);
g_object_unref(wrapper);
}
static GMimeObject *
add_mime_body_plain(LibBalsaMessageBody *body, gboolean flow)
{
GMimePart *mime_part;
const gchar * charset;
g_return_val_if_fail(body, NULL);
charset=body->charset;
if (body->content_type) {
/* Use the suplied mime type */
gchar *type, *subtype;
/* FIXME: test sending with different mime types */
g_message("path active");
type = g_strdup (body->content_type);
if ((subtype = strchr (type, '/'))) {
*subtype++ = 0;
mime_part = g_mime_part_new_with_type(type, subtype);
} else {
mime_part = g_mime_part_new_with_type("text", "plain");
}
g_free (type);
} else {
mime_part = g_mime_part_new_with_type("text", "plain");
}
g_mime_part_set_content_disposition(mime_part, GMIME_DISPOSITION_INLINE);
g_mime_part_set_encoding(mime_part, GMIME_PART_ENCODING_QUOTEDPRINTABLE);
g_mime_object_set_content_type_parameter(GMIME_OBJECT(mime_part),
"charset",
charset ? charset :
"us-ascii");
if (flow) {
g_mime_object_set_content_type_parameter(GMIME_OBJECT(mime_part),
"DelSp", "Yes");
g_mime_object_set_content_type_parameter(GMIME_OBJECT(mime_part),
"Format", "Flowed");
}
if (charset &&
g_ascii_strcasecmp(charset, "UTF-8")!=0 &&
g_ascii_strcasecmp(charset, "UTF8")!=0)
{
GMimeStream *stream, *filter_stream;
GMimeFilter *filter;
GMimeDataWrapper *wrapper;
stream = g_mime_stream_mem_new();
filter_stream = g_mime_stream_filter_new_with_stream(stream);
filter = g_mime_filter_charset_new("UTF-8", charset);
g_mime_stream_filter_add(GMIME_STREAM_FILTER(filter_stream), filter);
g_object_unref(G_OBJECT(filter));
g_mime_stream_write(filter_stream, body->buffer, strlen(body->buffer));
g_object_unref(filter_stream);
wrapper =
g_mime_data_wrapper_new_with_stream(stream,
GMIME_PART_ENCODING_DEFAULT);
g_object_unref(stream);
g_mime_part_set_content_object(mime_part, wrapper);
g_object_unref(G_OBJECT(wrapper));
} else
lbs_set_content(mime_part, body->buffer);
return GMIME_OBJECT(mime_part);
}
#if 0
/* you never know when you will need this one... */
static void dump_queue(const char*msg)
{
MessageQueueItem *mqi = message_queue;
printf("dumping message queue at %s:\n", msg);
while(mqi) {
printf("item: %p\n", mqi);
mqi = mqi->next_message;
}
}
#endif
/* libbalsa_message_queue:
places given message in the outbox.
*/
static void libbalsa_set_message_id(GMimeMessage * mime_message);
LibBalsaMsgCreateResult
libbalsa_message_queue(LibBalsaMessage * message, LibBalsaMailbox * outbox,
LibBalsaMailbox * fccbox,
#if ENABLE_ESMTP
LibBalsaSmtpServer * smtp_server,
#endif /* ESMTP */
gboolean flow)
{
LibBalsaMsgCreateResult result;
#if ENABLE_ESMTP
guint big_message;
#endif /* ESMTP */
gboolean rc;
GError *err = NULL;
g_return_val_if_fail(message, LIBBALSA_MESSAGE_CREATE_ERROR);
if ((result = libbalsa_create_msg(message, flow)) !=
LIBBALSA_MESSAGE_CREATE_OK)
return result;
if (fccbox)
g_mime_message_set_header(message->mime_msg, "X-Balsa-Fcc",
fccbox->url);
#if ENABLE_ESMTP
g_mime_message_set_header(message->mime_msg, "X-Balsa-SmtpServer",
libbalsa_smtp_server_get_name(smtp_server));
big_message = libbalsa_smtp_server_get_big_message(smtp_server);
if (big_message > 0) {
GMimeMessage *mime_msg;
GMimeMessage **mime_msgs;
size_t nparts;
guint i;
mime_msg = message->mime_msg;
mime_msgs =
g_mime_message_partial_split_message(mime_msg, big_message,
&nparts);
rc = TRUE;
for (i = 0; i < nparts; ++i) {
if (nparts > 1) {
/* RFC 2046, 5.2.2: "...it is specified that entities of
* type "message/partial" must always have a content-
* transfer-encoding of 7bit (the default)" */
g_mime_part_set_encoding(GMIME_PART
(mime_msgs[i]->mime_part),
GMIME_PART_ENCODING_7BIT);
libbalsa_set_message_id(mime_msgs[i]);
}
if (rc) {
message->mime_msg = mime_msgs[i];
rc = libbalsa_message_copy(message, outbox, &err);
}
g_object_unref(mime_msgs[i]);
}
g_free(mime_msgs);
message->mime_msg = mime_msg;
} else
rc = libbalsa_message_copy(message, outbox, &err);
#else /* ESMTP */
rc = libbalsa_message_copy(message, outbox, &err);
#endif /* ESMTP */
if (!rc) {
libbalsa_information(LIBBALSA_INFORMATION_WARNING,
_("Copying message to outbox failed: %s"),
err ? err->message : "?");
g_clear_error(&err);
}
return rc ? LIBBALSA_MESSAGE_CREATE_OK : LIBBALSA_MESSAGE_QUEUE_ERROR;
}
static void
lbs_change_flags(LibBalsaMessage * msg, LibBalsaMessageFlag set,
LibBalsaMessageFlag clear)
{
GArray *array = g_array_new(FALSE, FALSE, sizeof(guint));
g_array_append_val(array, msg->msgno);
libbalsa_mailbox_messages_change_flags(msg->mailbox, array, set,
clear);
g_array_free(array, TRUE);
}
/* libbalsa_message_send:
send the given messsage (if any, it can be NULL) and all the messages
in given outbox.
*/
#if ENABLE_ESMTP
static gboolean lbs_process_queue(LibBalsaMailbox * outbox,
LibBalsaFccboxFinder finder,
LibBalsaSmtpServer * smtp_server,
gboolean debug);
LibBalsaMsgCreateResult
libbalsa_message_send(LibBalsaMessage * message, LibBalsaMailbox * outbox,
LibBalsaMailbox * fccbox,
LibBalsaFccboxFinder finder,
LibBalsaSmtpServer * smtp_server,
gboolean flow, gboolean debug)
{
LibBalsaMsgCreateResult result = LIBBALSA_MESSAGE_CREATE_OK;
g_return_val_if_fail(smtp_server != NULL,
LIBBALSA_MESSAGE_SERVER_ERROR);
if (message != NULL)
result = libbalsa_message_queue(message, outbox, fccbox,
smtp_server, flow);
if (result == LIBBALSA_MESSAGE_CREATE_OK
&& !lbs_process_queue(outbox, finder, smtp_server, debug))
return LIBBALSA_MESSAGE_SEND_ERROR;
return result;
}
#else /* ENABLE_ESMTP */
LibBalsaMsgCreateResult
libbalsa_message_send(LibBalsaMessage* message, LibBalsaMailbox* outbox,
LibBalsaMailbox* fccbox, LibBalsaFccboxFinder finder,
gboolean flow, gboolean debug)
{
LibBalsaMsgCreateResult result = LIBBALSA_MESSAGE_CREATE_OK;
if (message != NULL)
result = libbalsa_message_queue(message, outbox, fccbox, flow);
if (result == LIBBALSA_MESSAGE_CREATE_OK)
if (!libbalsa_process_queue(outbox, finder, debug))
return LIBBALSA_MESSAGE_SEND_ERROR;
return result;
}
#endif /* ENABLE_ESMTP */
#if ENABLE_ESMTP
/* [BCS] - libESMTP uses a callback function to read the message from the
application to the SMTP server.
*/
#define BUFLEN 8192
static const char *
libbalsa_message_cb (void **buf, int *len, void *arg)
{
MessageQueueItem *current_message = arg;
GMimeStreamMem *mem_stream = GMIME_STREAM_MEM(current_message->stream);
char *ptr;
if (len == NULL) {
g_mime_stream_reset(current_message->stream);
return NULL;
}
*len = g_mime_stream_length(current_message->stream)
- g_mime_stream_tell(current_message->stream);
ptr = (char *) mem_stream->buffer->data
+ g_mime_stream_tell(current_message->stream);
g_mime_stream_seek(current_message->stream, *len, GMIME_STREAM_SEEK_CUR);
return ptr;
}
static void
add_recipients(smtp_message_t message, smtp_message_t bcc_message,
InternetAddressList *recipient_list, const char *header)
{
for (; recipient_list; recipient_list = recipient_list->next) {
InternetAddress *ia = recipient_list->address;
if (ia->type == INTERNET_ADDRESS_NAME)
smtp_add_recipient (message, ia->value.addr);
else if (ia->type == INTERNET_ADDRESS_GROUP)
add_recipients(message, bcc_message, ia->value.members, header);
/* XXX - this is where to add DSN requests. It would be
cool if LibBalsaAddress could contain DSN options
for a particular recipient. */
}
}
/* libbalsa_process_queue:
treats given mailbox as a set of messages to send. Loads them up and
launches sending thread/routine.
NOTE that we do not close outbox after reading. send_real/thread message
handler does that.
*/
/* This version uses libESMTP. It has slightly different semantics than
sendmail version so don't get fooled by similar variable names.
*/
static gboolean
lbs_process_queue(LibBalsaMailbox * outbox, LibBalsaFccboxFinder finder,
LibBalsaSmtpServer * smtp_server, gboolean debug)
{
LibBalsaServer *server = LIBBALSA_SERVER(smtp_server);
MessageQueueItem *new_message;
SendMessageInfo *send_message_info;
LibBalsaMessage *msg;
smtp_session_t session;
smtp_message_t message, bcc_message;
const gchar *phrase, *mailbox, *subject;
long estimate;
guint msgno;
gchar *host_with_port;
send_lock();
if (!libbalsa_mailbox_open(outbox, NULL)) {
send_unlock();
return FALSE;
}
if (!libbalsa_mailbox_total_messages(outbox)) {
libbalsa_mailbox_close(outbox, TRUE);
send_unlock();
return TRUE;
}
/* We create here the progress bar */
ensure_send_progress_dialog();
/* Create the libESMTP session. Loop over the out box and add the
messages to the session. */
/* FIXME - check for failure returns in the smtp_xxx() calls */
host_with_port = strchr(server->host, ':') ?
g_strdup(server->host) : g_strconcat(server->host, ":smtp", NULL);
session = smtp_create_session ();
smtp_set_server (session, host_with_port);
g_free(host_with_port);
/* Tell libESMTP how to use the SMTP STARTTLS extension. */
smtp_starttls_enable (session, server->tls_mode);
/* Now tell libESMTP it can use the SMTP AUTH extension. */
smtp_auth_set_context(session,
libbalsa_smtp_server_get_authctx(smtp_server));
/* At present Balsa can't handle one recipient only out of many
failing. Make libESMTP require all specified recipients to
succeed before transferring a message. */
smtp_option_require_all_recipients (session, 1);
for (msgno = libbalsa_mailbox_total_messages(outbox);
msgno > 0; msgno--) {
const gchar *smtp_server_name;
LibBalsaMsgCreateResult created;
msg = libbalsa_mailbox_get_message(outbox, msgno);
if (LIBBALSA_MESSAGE_HAS_FLAG(msg,
(LIBBALSA_MESSAGE_FLAG_FLAGGED |
LIBBALSA_MESSAGE_FLAG_DELETED))) {
g_object_unref(msg);
continue;
}
libbalsa_message_body_ref(msg, TRUE, TRUE);
smtp_server_name =
libbalsa_message_get_user_header(msg, "X-Balsa-SmtpServer");
if (!smtp_server_name)
smtp_server_name = libbalsa_smtp_server_get_name(NULL);
if (strcmp(smtp_server_name,
libbalsa_smtp_server_get_name(smtp_server)) != 0) {
libbalsa_message_body_unref(msg);
g_object_unref(msg);
continue;
}
new_message = msg_queue_item_new(finder);
created = libbalsa_fill_msg_queue_item_from_queu(msg, new_message);
libbalsa_message_body_unref(msg);
if (created != LIBBALSA_MESSAGE_CREATE_OK) {
msg_queue_item_destroy(new_message);
} else {
InternetAddress *ia;
lbs_change_flags(msg, LIBBALSA_MESSAGE_FLAG_FLAGGED, 0);
/*
The message needs to be filtered and the newlines converted to
\r\n because internally the lines foolishly terminate with the
Unix \n despite RFC 2822 calling for \r\n. Furthermore RFC 822
states that bare \n and \r are acceptable in messages and that
individually they do not constitute a line termination. This
requirement cannot be reconciled with storing messages with Unix
line terminations. RFC 2822 relieves this situation slightly by
prohibiting bare \r and \n.
The following code cannot therefore work correctly in all
situations. Furthermore it is very inefficient since it must
search for the \n.
*/
{
GMimeStream *mem_stream;
GMimeStream *filter_stream;
GMimeFilter *filter;
mem_stream = new_message->stream;
filter_stream =
g_mime_stream_filter_new_with_stream(mem_stream);
filter =
g_mime_filter_crlf_new( GMIME_FILTER_CRLF_ENCODE,
GMIME_FILTER_CRLF_MODE_CRLF_ONLY);
g_mime_stream_filter_add(GMIME_STREAM_FILTER(filter_stream),
filter);
g_object_unref(G_OBJECT(filter));
mem_stream = g_mime_stream_mem_new();
g_mime_stream_write_to_stream(filter_stream, mem_stream);
g_object_unref(filter_stream);
g_mime_stream_reset(mem_stream);
g_object_unref(new_message->stream);
new_message->stream = mem_stream;
}
/* If the Bcc: recipient list is present, add a additional
copy of the message to the session. The recipient list
for the main copy of the message is generated from the
To: and Cc: recipient list and libESMTP is asked to strip
the Bcc: header. The BCC copy of the message recipient
list is taken from the Bcc recipient list and the Bcc:
header is preserved in the message. */
if (!msg->headers->bcc_list)
bcc_message = NULL;
else
bcc_message = smtp_add_message (session);
new_message->refcount = bcc_message ? 2 : 1;
/* Add this after the Bcc: copy. */
message = smtp_add_message (session);
if (bcc_message)
smtp_set_header_option (message, "Bcc", Hdr_PROHIBIT, 1);
smtp_message_set_application_data (message, new_message);
smtp_set_messagecb (message, libbalsa_message_cb, new_message);
if (bcc_message) {
smtp_message_set_application_data (bcc_message, new_message);
smtp_set_messagecb (bcc_message,
libbalsa_message_cb, new_message);
}
#define LIBESMTP_ADDS_HEADERS
#ifdef LIBESMTP_ADDS_HEADERS
/* XXX - The following calls to smtp_set_header() probably
aren't necessary since they should already be in the
message. */
smtp_set_header (message, "Date", &msg->headers->date);
if (bcc_message)
smtp_set_header (bcc_message, "Date", &msg->headers->date);
/* RFC 2822 does not require a message to have a subject.
I assume this is NULL if not present */
subject = LIBBALSA_MESSAGE_GET_SUBJECT(msg);
if (subject) {
smtp_set_header (message, "Subject", subject);
if (bcc_message)
smtp_set_header (bcc_message, "Subject", subject);
}
/* Add the sender info */
if (msg->headers->from
&& (ia = msg->headers->from->address)
&& ia->type != INTERNET_ADDRESS_NONE) {
phrase = ia->name;
while (ia->type == INTERNET_ADDRESS_GROUP)
ia = ia->value.members->address;
mailbox = ia->value.addr;
} else
phrase = mailbox = "";
smtp_set_reverse_path (message, mailbox);
smtp_set_header (message, "From", phrase, mailbox);
if (bcc_message) {
smtp_set_reverse_path (bcc_message, mailbox);
smtp_set_header (bcc_message, "From", phrase, mailbox);
}
if (msg->headers->reply_to
&& (ia = msg->headers->reply_to->address)
&& ia->type != INTERNET_ADDRESS_NONE) {
phrase = ia->name;
while (ia->type == INTERNET_ADDRESS_GROUP)
ia = ia->value.members->address;
mailbox = ia->value.addr;
smtp_set_header (message, "Reply-To", phrase, mailbox);
if (bcc_message)
smtp_set_header (bcc_message, "Reply-To", phrase, mailbox);
}
if (msg->headers->dispnotify_to
&& (ia = msg->headers->dispnotify_to->address)
&& ia->type != INTERNET_ADDRESS_NONE) {
phrase = ia->name;
while (ia->type == INTERNET_ADDRESS_GROUP)
ia = ia->value.members->address;
mailbox = ia->value.addr;
smtp_set_header (message, "Disposition-Notification-To",
phrase, mailbox);
if (bcc_message)
smtp_set_header (bcc_message, "Disposition-Notification-To",
phrase, mailbox);
}
#endif
/* Now need to add the recipients to the message. The main
copy of the message gets the To and Cc recipient list.
The bcc copy gets the Bcc recipients. */
add_recipients(message, bcc_message, msg->headers->to_list, "To");
add_recipients(message, bcc_message, msg->headers->cc_list, "Cc");
add_recipients(bcc_message, NULL, msg->headers->bcc_list, "Cc");
/* Prohibit status headers. */
smtp_set_header_option(message, "Status", Hdr_PROHIBIT, 1);
smtp_set_header_option(message, "X-Status", Hdr_PROHIBIT, 1);
/* ... and FCC header. */
smtp_set_header_option(message, "X-Balsa-Fcc", Hdr_PROHIBIT, 1);
smtp_set_header_option(message, "X-Balsa-SmtpServer",
Hdr_PROHIBIT, 1);
/* Estimate the size of the message. This need not be exact
but it's better to err on the large side since some message
headers may be altered during the transfer. */
new_message->message_size = g_mime_stream_length(new_message->stream);
if (new_message->message_size > 0) {
estimate = new_message->message_size;
estimate += 1024 - (estimate % 1024);
smtp_size_set_estimate (message, estimate);
if (bcc_message)
smtp_size_set_estimate (bcc_message, estimate);
}
/* Set up counters for the progress bar. Update is the byte
count when the progress bar should be updated. This is
capped around 5k so that the progress bar moves about once
per second on a slow line. On small messages it is smaller
to allow smooth progress of the bar. */
new_message->update = new_message->message_size / 20;
if (new_message->update < 100)
new_message->update = 100;
else if (new_message->update > 5 * 1024)
new_message->update = 5 * 1024;
new_message->sent = 0;
new_message->acc = 0;
}
g_object_unref(msg);
}
/* At this point the session is ready to be sent. As I've written the
code, a new smtp session is created for every call here. Therefore
a new thread is always required to dispatch it.
*/
send_message_info=send_message_info_new(outbox, session, debug);
#ifdef BALSA_USE_THREADS
sending_threads++;
pthread_create(&send_mail, NULL,
(void *) &balsa_send_message_real, send_message_info);
/* Detach so we don't need to pthread_join
* This means that all resources will be
* reclaimed as soon as the thread exits
*/
pthread_detach(send_mail);
send_unlock();
#else /*non-threaded code */
balsa_send_message_real(send_message_info);
#endif
return TRUE;
}
gboolean
libbalsa_process_queue(LibBalsaMailbox * outbox,
LibBalsaFccboxFinder finder,
GSList * smtp_servers,
gboolean debug)
{
for (; smtp_servers; smtp_servers = smtp_servers->next) {
LibBalsaSmtpServer *smtp_server =
LIBBALSA_SMTP_SERVER(smtp_servers->data);
if (!lbs_process_queue(outbox, finder, smtp_server, debug))
return FALSE;
}
return TRUE;
}
static void
disp_recipient_status(smtp_recipient_t recipient,
const char *mailbox, void *arg)
{
const smtp_status_t *status = smtp_recipient_status (recipient);
if(status->code != 0 && status->code != 250) {
libbalsa_information(
LIBBALSA_INFORMATION_ERROR,
_("Could not send the message to %s:\n"
"%d: %s\n"
"Message left in your outbox.\n"),
mailbox, status->code, status->text);
(*(int*)arg)++;
}
}
static void
handle_successful_send(smtp_message_t message, void *be_verbose)
{
MessageQueueItem *mqi;
const smtp_status_t *status;
send_lock();
/* Get the app data and decrement the reference count. Only delete
structures if refcount reaches zero */
mqi = smtp_message_get_application_data (message);
if (mqi != NULL)
mqi->refcount--;
if(mqi != NULL && mqi->orig != NULL && mqi->orig->mailbox)
lbs_change_flags(mqi->orig, 0, LIBBALSA_MESSAGE_FLAG_FLAGGED);
else printf("mqi: %p mqi->orig: %p mqi->orig->mailbox: %p\n",
mqi, mqi ? mqi->orig : NULL,
mqi&&mqi->orig ? mqi->orig->mailbox : NULL);
status = smtp_message_transfer_status (message);
if (status->code / 100 == 2) {
if (mqi != NULL && mqi->orig != NULL && mqi->refcount <= 0 &&
mqi->orig->mailbox) {
gboolean remove = TRUE;
const gchar *fccurl =
libbalsa_message_get_user_header(mqi->orig, "X-Balsa-Fcc");
if (mqi->orig->mailbox && fccurl) {
LibBalsaMailbox *fccbox = mqi->finder(fccurl);
GError *err = NULL;
lbs_change_flags(mqi->orig, 0, LIBBALSA_MESSAGE_FLAG_NEW |
LIBBALSA_MESSAGE_FLAG_FLAGGED);
libbalsa_mailbox_sync_storage(mqi->orig->mailbox, FALSE);
remove = libbalsa_message_copy(mqi->orig, fccbox, &err);
if(!remove) {
libbalsa_information
(LIBBALSA_INFORMATION_ERROR,
_("Saving sent message to %s failed: %s"),
fccbox->url, err ? err->message : "?");
g_clear_error(&err);
}
}
/* If copy failed, mark the message again as flagged -
otherwise it will get resent again. And again, and
again... */
lbs_change_flags(mqi->orig, remove ?
LIBBALSA_MESSAGE_FLAG_DELETED :
LIBBALSA_MESSAGE_FLAG_FLAGGED, 0);
}
} else {
/* Check whether it was a problem with transfer. */
if(*(gboolean*)be_verbose) {
int cnt = 0;
if(status->code != 250 && status->code != 0) {
libbalsa_information(
LIBBALSA_INFORMATION_WARNING,
_("Relaying refused:\n"
"%d: %s\n"
"Message left in your outbox.\n"),
status->code, status->text);
cnt++;
}
smtp_enumerate_recipients (message, disp_recipient_status, &cnt);
if(cnt==0) { /* other error, maybe sender or message size? */
status = smtp_reverse_path_status(message);
if(status->code != 250 && status->code != 0) {
libbalsa_information
(LIBBALSA_INFORMATION_WARNING,
_("Relaying refused:\n"
"%d: %s\n"
"Message left in your outbox.\n"),
status->code, status->text);
} else
libbalsa_information
(LIBBALSA_INFORMATION_ERROR,
_("Message submission problem, placing it into your outbox.\n"
"System will attempt to resubmit the message until you delete it."));
}
}
}
if (mqi != NULL && mqi->refcount <= 0)
msg_queue_item_destroy(mqi);
send_unlock();
}
#ifdef BALSA_USE_THREADS
static void
libbalsa_smtp_event_cb (smtp_session_t session, int event_no, void *arg, ...)
{
SendThreadMessage *threadmsg;
MessageQueueItem *mqi;
char buf[1024];
va_list ap;
const char *mailbox;
smtp_message_t message;
smtp_recipient_t recipient;
const smtp_status_t *status;
int len;
float percent;
va_start (ap, arg);
switch (event_no) {
case SMTP_EV_CONNECT:
MSGSENDTHREAD(threadmsg, MSGSENDTHREADPROGRESS,
_("Connected to MTA"),
NULL, NULL, 0);
break;
case SMTP_EV_MAILSTATUS:
mailbox = va_arg (ap, const char *);
message = va_arg (ap, smtp_message_t);
status = smtp_reverse_path_status (message);
/* status code, mailbox */
snprintf (buf, sizeof buf, _("From: %d <%s>"), status->code, mailbox);
MSGSENDTHREAD(threadmsg, MSGSENDTHREADPROGRESS, buf, NULL, NULL, 0);
/* mailbox, status code, status text */
snprintf (buf, sizeof buf, _("From %s: %d %s"),
mailbox, status->code, status->text);
g_strchomp(buf);
libbalsa_information(LIBBALSA_INFORMATION_MESSAGE, buf);
break;
case SMTP_EV_RCPTSTATUS:
mailbox = va_arg (ap, const char *);
recipient = va_arg (ap, smtp_recipient_t);
status = smtp_recipient_status (recipient);
/* status code, mailbox */
snprintf (buf, sizeof buf, _("To: %d <%s>"), status->code, mailbox);
MSGSENDTHREAD(threadmsg, MSGSENDTHREADPROGRESS, buf, NULL, NULL, 0);
/* mailbox, status code, status text */
snprintf (buf, sizeof buf, _("To %s: %d %s"),
mailbox, status->code, status->text);
g_strchomp(buf);
libbalsa_information(LIBBALSA_INFORMATION_MESSAGE, buf);
break;
case SMTP_EV_MESSAGEDATA:
message = va_arg (ap, smtp_message_t);
len = va_arg (ap, int);
mqi = smtp_message_get_application_data (message);
if (mqi != NULL && mqi->message_size > 0) {
mqi->acc += len;
if (mqi->acc >= mqi->update) {
mqi->sent += mqi->acc;
mqi->acc = 0;
percent = (float) mqi->sent / (float) mqi->message_size;
if(percent>1) percent = 1;
MSGSENDTHREAD(threadmsg, MSGSENDTHREADPROGRESS, "", NULL, NULL,
percent);
}
}
break;
case SMTP_EV_MESSAGESENT:
message = va_arg (ap, smtp_message_t);
status = smtp_message_transfer_status (message);
snprintf (buf, sizeof buf, "%d %s", status->code, status->text);
g_strchomp(buf);
MSGSENDTHREAD(threadmsg, MSGSENDTHREADPROGRESS, buf, NULL, NULL, 0);
libbalsa_information(LIBBALSA_INFORMATION_MESSAGE, buf);
/* Reset 'mqi->sent' for the next message (i.e. bcc copy) */
mqi = smtp_message_get_application_data (message);
if (mqi != NULL) {
mqi->sent = 0;
mqi->acc = 0;
}
break;
case SMTP_EV_DISCONNECT:
MSGSENDTHREAD(threadmsg, MSGSENDTHREADPROGRESS,
_("Disconnected"),
NULL, NULL, 0);
break;
#ifdef USE_TLS
/* SMTP_TLS related things. Observe that we need to have SSL
* enabled in balsa to properly interpret libesmtp
* messages. */
case SMTP_EV_INVALID_PEER_CERTIFICATE: {
long vfy_result;
SSL *ssl;
X509 *cert;
int *ok;
vfy_result = va_arg(ap, long); ok = va_arg(ap, int*);
ssl = va_arg(ap, SSL*);
cert = SSL_get_peer_certificate(ssl);
if(cert) {
*ok = libbalsa_is_cert_known(cert, vfy_result);
X509_free(cert);
}
break;
}
case SMTP_EV_NO_PEER_CERTIFICATE:
case SMTP_EV_WRONG_PEER_CERTIFICATE:
#if LIBESMTP_1_0_3_AVAILABLE
case SMTP_EV_NO_CLIENT_CERTIFICATE:
#endif
{
int *ok;
printf("SMTP-TLS event_no=%d\n", event_no);
ok = va_arg(ap, int*);
*ok = 1;
break;
}
#endif /* USE_TLS */
}
va_end (ap);
}
#else /* BALSA: USE_THREADS */
static void
libbalsa_smtp_event_cb_serial(smtp_session_t session, int event_no,
void *arg, ...)
{
va_list ap;
va_start (ap, arg);
switch (event_no) {
#ifdef USE_TLS
/* SMTP_TLS related things. Observe that we need to have SSL
* enabled in balsa to properly interpret libesmtp
* messages. */
case SMTP_EV_INVALID_PEER_CERTIFICATE: {
long vfy_result;
SSL *ssl;
X509 *cert;
int *ok;
vfy_result = va_arg(ap, long); ok = va_arg(ap, int*);
ssl = va_arg(ap, SSL*);
cert = SSL_get_peer_certificate(ssl);
if(cert) {
*ok = libbalsa_is_cert_known(cert, vfy_result);
X509_free(cert);
}
break;
}
case SMTP_EV_NO_PEER_CERTIFICATE:
case SMTP_EV_WRONG_PEER_CERTIFICATE:
#if LIBESMTP_1_0_3_AVAILABLE
case SMTP_EV_NO_CLIENT_CERTIFICATE:
#endif
{
int *ok;
ok = va_arg(ap, int*);
*ok = 1;
break;
}
#endif /* USE_TLS */
}
va_end (ap);
}
#endif /* BALSA_USE_THREADS */
#else /* ESMTP */
/* CHBM: non-esmtp version */
/* libbalsa_process_queue:
treats given mailbox as a set of messages to send. Loads them up and
launches sending thread/routine.
NOTE that we do not close outbox after reading. send_real/thread message
handler does that.
*/
gboolean
libbalsa_process_queue(LibBalsaMailbox* outbox, LibBalsaFccboxFinder finder,
gboolean debug)
{
MessageQueueItem *mqi = NULL, *new_message;
SendMessageInfo *send_message_info;
LibBalsaMessage *msg;
guint msgno;
/* We do messages in queue now only if where are not sending them already */
send_lock();
#ifdef BALSA_USE_THREADS
if (sending_threads>0) {
send_unlock();
return TRUE;
}
sending_threads++;
#endif
ensure_send_progress_dialog();
if (!libbalsa_mailbox_open(outbox, NULL)) {
#ifdef BALSA_USE_THREADS
sending_threads--;
send_unlock();
#endif
return FALSE;
}
for (msgno = libbalsa_mailbox_total_messages(outbox);
msgno > 0; msgno--) {
LibBalsaMsgCreateResult created;
msg = libbalsa_mailbox_get_message(outbox, msgno);
if (LIBBALSA_MESSAGE_HAS_FLAG(msg,
(LIBBALSA_MESSAGE_FLAG_FLAGGED |
LIBBALSA_MESSAGE_FLAG_DELETED)))
continue;
libbalsa_message_body_ref(msg, TRUE, TRUE); /* FIXME: do we need
* all headers? */
new_message = msg_queue_item_new(finder);
created = libbalsa_fill_msg_queue_item_from_queu(msg, new_message);
libbalsa_message_body_unref(msg);
if (created != LIBBALSA_MESSAGE_CREATE_OK) {
msg_queue_item_destroy(new_message);
} else {
lbs_change_flags(msg, LIBBALSA_MESSAGE_FLAG_FLAGGED, 0);
if (mqi)
mqi->next_message = new_message;
else
message_queue = new_message;
mqi = new_message;
}
}
send_message_info=send_message_info_new(outbox, finder, debug);
#ifdef BALSA_USE_THREADS
pthread_create(&send_mail, NULL,
(void *) &balsa_send_message_real, send_message_info);
/* Detach so we don't need to pthread_join
* This means that all resources will be
* reclaimed as soon as the thread exits
*/
pthread_detach(send_mail);
#else /*non-threaded code */
balsa_send_message_real(send_message_info);
#endif
send_unlock();
return TRUE;
}
static void
handle_successful_send(MessageQueueItem *mqi, LibBalsaFccboxFinder finder)
{
if (mqi->orig->mailbox) {
gboolean remove = TRUE;
const gchar *fccurl =
libbalsa_message_get_user_header(mqi->orig, "X-Balsa-Fcc");
lbs_change_flags(mqi->orig, 0, LIBBALSA_MESSAGE_FLAG_NEW |
LIBBALSA_MESSAGE_FLAG_FLAGGED);
libbalsa_mailbox_sync_storage(mqi->orig->mailbox, FALSE);
if (mqi->orig->mailbox && fccurl) {
LibBalsaMailbox *fccbox = mqi->finder(fccurl);
remove =
libbalsa_message_copy(mqi->orig, fccbox, NULL)>=0;
}
/* If copy failed, mark the message again as flagged -
otherwise it will get resent again. And again, and
again... */
lbs_change_flags(mqi->orig, remove ?
LIBBALSA_MESSAGE_FLAG_DELETED :
LIBBALSA_MESSAGE_FLAG_FLAGGED, 0);
}
mqi->status = MQI_SENT;
}
/* get_msg2send:
returns first waiting message on the message_queue.
*/
static MessageQueueItem* get_msg2send()
{
MessageQueueItem* res = message_queue;
send_lock();
while(res && res->status != MQI_WAITING)
res = res->next_message;
send_unlock();
return res;
}
#endif /* ESMTP */
#if ENABLE_ESMTP
static void
monitor_cb (const char *buf, int buflen, int writing, void *arg)
{
FILE *fp = arg;
if (writing == SMTP_CB_HEADERS)
{
fputs ("H: ", fp);
if (fwrite (buf, 1, buflen, fp) != (size_t) buflen)
/* FIXME */ return;
return;
}
fputs (writing ? "C: " : "S: ", fp);
if (fwrite (buf, 1, buflen, fp) != (size_t) buflen)
/* FIXME */ return;
if (buf[buflen - 1] != '\n')
putc ('\n', fp);
}
/* balsa_send_message_real:
does the actual message sending.
This function may be called as a thread and should therefore do
proper gdk_threads_{enter/leave} stuff around GTK or libbalsa calls.
Also, structure info should be freed before exiting.
*/
/* [BCS] radically different since it uses the libESMTP interface.
*/
static guint
balsa_send_message_real(SendMessageInfo* info)
{
gboolean session_started;
#ifdef BALSA_USE_THREADS
SendThreadMessage *threadmsg;
/* The event callback is used to write messages to the the progress
dialog shown when transferring a message to the SMTP server.
This callback is only used in MT build, we do not show any
feedback in non-MT version.
*/
smtp_set_eventcb (info->session, libbalsa_smtp_event_cb, NULL);
#else
smtp_set_eventcb (info->session, libbalsa_smtp_event_cb_serial, NULL);
#endif
/* Add a protocol monitor when debugging is enabled. */
if(info->debug)
smtp_set_monitorcb (info->session, monitor_cb, stderr, 1);
/* Kick off the connection with the MTA. When this returns, all
messages with valid recipients have been sent. */
if ( !(session_started = smtp_start_session (info->session)) ){
char buf[256];
int smtp_err = smtp_errno();
switch(smtp_err) {
case -ECONNREFUSED:
libbalsa_information
(LIBBALSA_INFORMATION_ERROR,
_("SMTP server refused connection.\n"
"Check your internet connection."));
case -EHOSTUNREACH:
libbalsa_information
(LIBBALSA_INFORMATION_ERROR,
_("SMTP server cannot be reached.\n"
"Check your internet connection."));
break;
case SMTP_ERR_NOTHING_TO_DO: /* silence this one? */
break;
case SMTP_ERR_EAI_AGAIN:
/* this is really problem with DNS but it is nowadays
caused by general connection problems. */
libbalsa_information(LIBBALSA_INFORMATION_MESSAGE,
_("Message left in Outbox (try again later)"));
break;
default:
libbalsa_information (LIBBALSA_INFORMATION_ERROR,
_("SMTP server problem (%d): %s\n"
"Message is left in outbox."),
smtp_errno(),
smtp_strerror (smtp_errno (),
buf, sizeof buf));
}
}
/* We give back all the resources used and delete the sent messages */
/* Quite a bit of status info has been gathered about messages and
their recipients. The following will do a libbalsa_message_delete()
on the messages with a 2xx status recorded against them. However
its possible for individual recipients to fail too. Need a way to
report it all. */
smtp_enumerate_messages (info->session, handle_successful_send,
&session_started);
libbalsa_mailbox_close(info->outbox, TRUE);
/*
* gdk_flush();
* gdk_threads_leave();
*/
#ifdef BALSA_USE_THREADS
send_lock();
MSGSENDTHREAD(threadmsg, MSGSENDTHREADFINISHED, "", NULL, NULL, 0);
sending_threads--;
send_unlock();
#endif
smtp_destroy_session (info->session);
send_message_info_destroy(info);
return TRUE;
}
#else /* ESMTP */
/* balsa_send_message_real:
does the actual message sending.
This function may be called as a thread and should therefore do
proper gdk_threads_{enter/leave} stuff around GTK,libbalsa or
libmutt calls. Also, structure info should be freed before exiting.
*/
static guint
balsa_send_message_real(SendMessageInfo* info)
{
MessageQueueItem *mqi, *next_message;
#ifdef BALSA_USE_THREADS
SendThreadMessage *threadmsg;
send_lock();
if (!message_queue) {
sending_threads--;
send_unlock();
MSGSENDTHREAD(threadmsg, MSGSENDTHREADFINISHED, "", NULL, NULL, 0);
send_message_info_destroy(info);
return TRUE;
}
send_unlock();
#else
if(!message_queue){
send_message_info_destroy(info);
return TRUE;
}
#endif
while ( (mqi = get_msg2send()) != NULL) {
GPtrArray *args = g_ptr_array_new();
LibBalsaMessage *msg = LIBBALSA_MESSAGE(mqi->orig);
InternetAddressList *list;
const gchar *mailbox;
gchar *cmd;
FILE *sendmail;
GMimeStream *out;
g_ptr_array_add(args, SENDMAIL);
g_ptr_array_add(args, "--");
for (list = msg->headers->to_list; list; list = list->next) {
mailbox = libbalsa_address_get_mailbox_from_list(list);
g_ptr_array_add(args, (char*)mailbox);
}
for (list = msg->headers->cc_list; list; list = list->next) {
mailbox = libbalsa_address_get_mailbox_from_list(list);
g_ptr_array_add(args, (char*)mailbox);
}
for (list = msg->headers->bcc_list; list; list = list->next) {
mailbox = libbalsa_address_get_mailbox_from_list(list);
g_ptr_array_add(args, (char*)mailbox);
}
g_ptr_array_add(args, NULL);
cmd = g_strjoinv(" ", (gchar**)args->pdata);
g_ptr_array_free(args, FALSE);
if ( (sendmail=popen(cmd, "w")) == NULL) {
/* Error while sending */
mqi->status = MQI_FAILED;
} else {
out = g_mime_stream_file_new(sendmail);
g_mime_stream_file_set_owner(GMIME_STREAM_FILE(out), FALSE);
if (g_mime_stream_write_to_stream(mqi->stream, out) == -1)
mqi->status = MQI_FAILED;
g_object_unref(out);
if (pclose(sendmail) != 0)
mqi->status = MQI_FAILED;
if (mqi->status != MQI_FAILED)
mqi->status = MQI_SENT;
}
g_free(cmd);
}
/* We give back all the resources used and delete the sent messages */
send_lock();
mqi = message_queue;
while (mqi != NULL) {
if (mqi->status == MQI_SENT)
handle_successful_send(mqi, info->finder);
next_message = mqi->next_message;
msg_queue_item_destroy(mqi);
mqi = next_message;
}
gdk_threads_enter();
libbalsa_mailbox_close(info->outbox, TRUE);
gdk_threads_leave();
message_queue = NULL;
#ifdef BALSA_USE_THREADS
sending_threads--;
MSGSENDTHREAD(threadmsg, MSGSENDTHREADFINISHED, "", NULL, NULL, 0);
#endif
send_message_info_destroy(info);
send_unlock();
return TRUE;
}
#endif /* ESMTP */
static void
message_add_references(LibBalsaMessage * message, GMimeMessage * msg)
{
/* If the message has references set, add them to the envelope */
if (message->references != NULL) {
GList *list = message->references;
GString *str = g_string_new(NULL);
do {
if (str->len > 0)
g_string_append_c(str, ' ');
g_string_append_printf(str, "<%s>", (gchar *) list->data);
} while ((list = list->next) != NULL);
g_mime_message_set_header(msg, "References", str->str);
g_string_free(str, TRUE);
}
if (message->in_reply_to)
/* There's no specific header function for In-Reply-To */
g_mime_message_set_header(msg, "In-Reply-To",
message->in_reply_to->data);
}
#ifdef HAVE_GPGME
static GList *
get_mailbox_names(GList *list, const InternetAddressList *address_list)
{
for (; address_list; address_list = address_list->next) {
InternetAddress *ia = address_list->address;
if (ia->type == INTERNET_ADDRESS_NAME)
list = g_list_append(list, g_strdup(ia->value.addr));
else if (ia->type == INTERNET_ADDRESS_GROUP)
list = get_mailbox_names(list, ia->value.members);
}
return list;
}
#endif
/* We could have used g_strsplit_set(s, "/;", 3) but it is not
* available in older glib. */
static gchar**
parse_content_type(const char* content_type)
{
gchar ** ret = g_new0(gchar*, 3);
char *delim, *slash = strchr(content_type, '/');
if(!slash) {
ret[0] = g_strdup(content_type);
return ret;
}
ret[0] = g_strndup(content_type, slash-content_type);
slash++;
for(delim=slash; *delim && *delim != ';' && *delim != ' '; delim++);
ret[1] = g_strndup(slash, delim-slash);
return ret;
}
/* get_tz_offset() returns tz offset in minutes. NOTE: not all hours
have 60 seconds! Once in a while they get corrected. */
#define MIN_SEC 60 /* seconds in a minute */
#define HOUR_MIN 60 /* minutes in an hour */
#define DAY_MIN (24 * HOUR_MIN) /* minutes in a day */
static int
get_tz_offset(time_t *t)
{
struct tm gmt, lt;
int off;
gmtime_r(t, &gmt);
localtime_r(t, <);
off = (lt.tm_hour - gmt.tm_hour) * HOUR_MIN + lt.tm_min - gmt.tm_min;
if (lt.tm_year < gmt.tm_year) off -= DAY_MIN;
else if (lt.tm_year > gmt.tm_year) off += DAY_MIN;
else if (lt.tm_yday < gmt.tm_yday) off -= DAY_MIN;
else if (lt.tm_yday > gmt.tm_yday) off += DAY_MIN;
/* special case: funny minutes */
if (lt.tm_sec <= gmt.tm_sec - MIN_SEC) off -= 1;
else if (lt.tm_sec >= gmt.tm_sec + MIN_SEC) off += 1;
return (off*100)/60; /* time zone offset in hundreds of hours (funny
* unit required by gmime) */
}
static LibBalsaMsgCreateResult
libbalsa_message_create_mime_message(LibBalsaMessage* message, gboolean flow,
gboolean postponing)
{
gchar **mime_type;
GMimeObject *mime_root = NULL;
GMimeMessage *mime_message;
LibBalsaMessageBody *body;
gchar *tmp;
GList *list;
GtkWindow * parent;
body = message->body_list;
if (body && body->next)
mime_root=GMIME_OBJECT(g_mime_multipart_new_with_subtype(message->subtype));
parent = g_object_get_data(G_OBJECT(message), "parent-window");
while (body) {
GMimeObject *mime_part;
mime_part=NULL;
if (body->filename) {
if (body->content_type) {
mime_type = parse_content_type(body->content_type);
} else {
gchar* mt = libbalsa_lookup_mime_type(body->filename);
mime_type = g_strsplit(mt,"/", 2);
g_free(mt);
}
if (body->attach_mode == LIBBALSA_ATTACH_AS_EXTBODY) {
GMimeContentType *content_type =
g_mime_content_type_new("message", "external-body");
mime_part=g_mime_object_new_type("message", "external-body");
g_mime_object_set_content_type(mime_part, content_type);
g_mime_part_set_encoding(GMIME_PART(mime_part),
GMIME_PART_ENCODING_7BIT);
if(!strncmp( body->filename, "URL", 3 )) {
g_mime_object_set_content_type_parameter(mime_part,
"access-type", "URL");
g_mime_object_set_content_type_parameter(mime_part,
"URL", body->filename + 4);
} else {
g_mime_object_set_content_type_parameter(mime_part,
"access-type", "local-file");
g_mime_object_set_content_type_parameter(mime_part,
"name", body->filename);
}
lbs_set_content(GMIME_PART(mime_part),
"Note: this is _not_ the real body!\n");
} else if (g_ascii_strcasecmp(mime_type[0], "message") == 0) {
int fd;
GMimeStream *stream;
GMimeParser *parser;
GMimeMessage *mime_message;
fd = open(body->filename, O_RDONLY);
stream = g_mime_stream_fs_new(fd);
parser = g_mime_parser_new_with_stream(stream);
g_object_unref(stream);
mime_message = g_mime_parser_construct_message(parser);
g_object_unref(parser);
mime_part =
GMIME_OBJECT(g_mime_message_part_new_with_message
(mime_type[1], mime_message));
g_object_unref(mime_message);
} else {
const gchar *charset = NULL;
GMimeStream *stream;
GMimeDataWrapper *content;
int fd;
gchar *utf8name;
if (!strcasecmp(mime_type[0], "text")
&& !(charset = body->charset)) {
charset = libbalsa_file_get_charset(body->filename);
if (!charset) {
static const gchar default_type[] =
"application/octet-stream";
libbalsa_information(LIBBALSA_INFORMATION_WARNING,
_("Cannot determine charset "
"for text file `%s'; "
"sending as mime type `%s'"),
body->filename, default_type);
g_strfreev(mime_type);
mime_type = g_strsplit(default_type, "/", 2);
}
}
/* use BASE64 encoding for non-text mime types
use 8BIT for message */
mime_part =
GMIME_OBJECT(g_mime_part_new_with_type(mime_type[0],
mime_type[1]));
g_mime_part_set_content_disposition(GMIME_PART(mime_part),
body->attach_mode == LIBBALSA_ATTACH_AS_INLINE ?
GMIME_DISPOSITION_INLINE : GMIME_DISPOSITION_ATTACHMENT);
if(strcasecmp(mime_type[0],"text") != 0)
{
g_mime_part_set_encoding(GMIME_PART(mime_part),
GMIME_PART_ENCODING_BASE64);
} else {
/* is text */
g_mime_object_set_content_type_parameter(mime_part,
"charset",
charset);
}
tmp = g_path_get_basename(body->filename);
utf8name = g_filename_to_utf8(tmp, -1, NULL, NULL, NULL);
g_free(tmp);
g_mime_part_set_filename(GMIME_PART(mime_part), utf8name);
g_free(utf8name);
fd = open(body->filename, O_RDONLY);
stream = g_mime_stream_fs_new(fd);
content = g_mime_data_wrapper_new_with_stream(stream,
GMIME_PART_ENCODING_DEFAULT);
g_object_unref(stream);
g_mime_part_set_content_object(GMIME_PART(mime_part),
content);
g_object_unref(content);
}
g_strfreev(mime_type);
} else if (body->buffer) {
#ifdef HAVE_GPGME
mime_part = add_mime_body_plain(body, flow);
/* in '2440 mode, touch *only* the first body! */
if (!postponing && body == body->message->body_list &&
message->gpg_mode > 0 &&
(message->gpg_mode & LIBBALSA_PROTECT_OPENPGP) != 0) {
gint result =
libbalsa_create_rfc2440_buffer(body,
GMIME_PART(mime_part),
parent);
if (result != LIBBALSA_MESSAGE_CREATE_OK) {
g_object_unref(G_OBJECT(mime_part));
if (mime_root)
g_object_unref(G_OBJECT(mime_root));
return LIBBALSA_MESSAGE_CREATE_ERROR;
}
}
#else
mime_part = add_mime_body_plain(body, flow);
#endif /* HAVE_GPGME */
}
if (mime_root) {
g_mime_multipart_add_part(GMIME_MULTIPART(mime_root),
GMIME_OBJECT(mime_part));
g_object_unref(G_OBJECT(mime_part));
} else {
mime_root = mime_part;
}
body = body->next;
}
#ifdef HAVE_GPGME
if (message->body_list != NULL && !postponing) {
LibBalsaMsgCreateResult crypt_res =
do_multipart_crypto(message, &mime_root, parent);
if (crypt_res != LIBBALSA_MESSAGE_CREATE_OK)
return crypt_res;
}
#endif
mime_message = g_mime_message_new(TRUE);
if (mime_root) {
GList *param = message->parameters;
while (param) {
gchar **vals = (gchar **)param->data;
g_mime_object_set_content_type_parameter(GMIME_OBJECT(mime_root),
vals[0], vals[1]);
param = param->next;
}
g_mime_message_set_mime_part(mime_message, mime_root);
g_object_unref(G_OBJECT(mime_root));
}
message_add_references(message, mime_message);
if (message->headers->from) {
tmp = internet_address_list_to_string(message->headers->from,
TRUE);
if (tmp) {
g_mime_message_set_sender(mime_message, tmp);
g_free(tmp);
}
}
if (message->headers->reply_to) {
tmp = internet_address_list_to_string(message->headers->reply_to,
TRUE);
if (tmp) {
g_mime_message_set_reply_to(mime_message, tmp);
g_free(tmp);
}
}
if (LIBBALSA_MESSAGE_GET_SUBJECT(message))
g_mime_message_set_subject(mime_message,
LIBBALSA_MESSAGE_GET_SUBJECT(message));
g_mime_message_set_date(mime_message, message->headers->date,
get_tz_offset(&message->headers->date));
tmp = internet_address_list_to_string(message->headers->to_list, TRUE);
g_mime_message_add_recipients_from_string(mime_message,
GMIME_RECIPIENT_TYPE_TO, tmp);
g_free(tmp);
tmp = internet_address_list_to_string(message->headers->cc_list, TRUE);
g_mime_message_add_recipients_from_string(mime_message,
GMIME_RECIPIENT_TYPE_CC, tmp);
g_free(tmp);
tmp = internet_address_list_to_string(message->headers->bcc_list, TRUE);
g_mime_message_add_recipients_from_string(mime_message,
GMIME_RECIPIENT_TYPE_BCC, tmp);
g_free(tmp);
if (message->headers->dispnotify_to) {
tmp = internet_address_to_string(message->headers->dispnotify_to->
address, TRUE);
if (tmp) {
g_mime_message_add_header(mime_message,
"Disposition-Notification-To", tmp);
g_free(tmp);
}
}
for (list = message->headers->user_hdrs; list; list = list->next) {
gchar **pair = list->data;
g_strchug(pair[1]);
g_mime_message_add_header(mime_message, pair[0], pair[1]);
#if DEBUG_USER_HEADERS
printf("adding header '%s:%s'\n", pair[0], pair[1]);
#endif
}
tmp = g_strdup_printf("Balsa %s", VERSION);
g_mime_message_add_header(mime_message, "X-Mailer", tmp);
g_free(tmp);
message->mime_msg = mime_message;
return LIBBALSA_MESSAGE_CREATE_OK;
}
/* When we postpone a message in the compose window, we lose track of
* the message we were replying to. We *could* save some identifying
* information in a dummy header, but it could still be hard to track it
* down: it might have been filed in another mailbox, for instance. For
* now, we'll just let it go...
*/
gboolean
libbalsa_message_postpone(LibBalsaMessage * message,
LibBalsaMailbox * draftbox,
LibBalsaMessage * reply_message,
gchar ** extra_headers, gboolean flow)
{
gboolean retval;
GError *err = NULL;
if (!message->mime_msg
&& libbalsa_message_create_mime_message(message, flow,
TRUE) !=
LIBBALSA_MESSAGE_CREATE_OK)
return FALSE;
if (extra_headers) {
gint i;
for (i = 0; extra_headers[i] && extra_headers[i + 1]; i += 2)
g_mime_message_set_header(message->mime_msg, extra_headers[i],
extra_headers[i + 1]);
}
retval = libbalsa_message_copy(message, draftbox, &err);
if (!retval) {
libbalsa_information(LIBBALSA_INFORMATION_WARNING,
_("Postponing message failed: %s"),
err ? err->message : "?");
g_clear_error(&err);
}
return retval;
}
/* Create a message-id and set it on the mime message.
*/
static void
libbalsa_set_message_id(GMimeMessage * mime_message)
{
struct utsname utsbuf;
gchar *host = "localhost";
gchar *message_id;
#ifdef _GNU_SOURCE
gchar *fqdn;
gchar *domain = "localdomain";
/* In an ideal world, uname() allows us to make a FQDN. */
if (uname(&utsbuf) == 0) {
if (*utsbuf.nodename)
host = utsbuf.nodename;
if (*utsbuf.domainname)
domain = utsbuf.domainname;
}
fqdn = g_strconcat(host, ".", domain, NULL);
message_id = g_mime_utils_generate_message_id(fqdn);
g_free(fqdn);
#else /* _GNU_SOURCE */
if (uname(&utsbuf) == 0 && *utsbuf.nodename)
host = utsbuf.nodename;
message_id = g_mime_utils_generate_message_id(host);
#endif /* _GNU_SOURCE */
g_mime_message_set_message_id(mime_message, message_id);
g_free(message_id);
}
/* balsa_create_msg:
copies message to msg.
*/
static LibBalsaMsgCreateResult
libbalsa_create_msg(LibBalsaMessage * message, gboolean flow)
{
if (!message->mime_msg) {
LibBalsaMsgCreateResult res =
libbalsa_message_create_mime_message(message, flow,
FALSE);
if (res != LIBBALSA_MESSAGE_CREATE_OK)
return res;
}
libbalsa_set_message_id(message->mime_msg);
return LIBBALSA_MESSAGE_CREATE_OK;
}
static LibBalsaMsgCreateResult
libbalsa_fill_msg_queue_item_from_queu(LibBalsaMessage * message,
MessageQueueItem *mqi)
{
mqi->orig = message;
g_object_ref(mqi->orig);
if (message->mime_msg) {
g_mime_object_remove_header(GMIME_OBJECT(message->mime_msg),
"Status");
g_mime_object_remove_header(GMIME_OBJECT(message->mime_msg),
"X-Status");
g_mime_object_remove_header(GMIME_OBJECT(message->mime_msg),
"X-Balsa-Fcc");
g_mime_object_remove_header(GMIME_OBJECT(message->mime_msg),
"X-Balsa-SmtpServer");
mqi->stream = g_mime_stream_mem_new();
libbalsa_mailbox_lock_store(message->mailbox);
g_mime_object_write_to_stream(GMIME_OBJECT(message->mime_msg),
mqi->stream);
libbalsa_mailbox_unlock_store(message->mailbox);
g_mime_stream_reset(mqi->stream);
} else
mqi->stream = libbalsa_message_stream(message);
if (mqi->stream == NULL)
return LIBBALSA_MESSAGE_CREATE_ERROR;
return LIBBALSA_MESSAGE_CREATE_OK;
}
#ifdef HAVE_GPGME
static const gchar *
lb_send_from(LibBalsaMessage *message)
{
InternetAddress *ia = message->headers->from->address;
if (ia->type == INTERNET_ADDRESS_NONE)
return NULL;
while (ia->type == INTERNET_ADDRESS_GROUP)
ia = ia->value.members->address;
if (ia->type == INTERNET_ADDRESS_NONE)
return NULL;
return ia->value.addr;
}
static gint
libbalsa_create_rfc2440_buffer(LibBalsaMessageBody *body, GMimePart *mime_part,
GtkWindow * parent)
{
LibBalsaMessage *message = body->message;
gint mode = message->gpg_mode;
gboolean always_trust = (mode & LIBBALSA_PROTECT_ALWAYS_TRUST) != 0;
switch (mode & LIBBALSA_PROTECT_MODE)
{
case LIBBALSA_PROTECT_SIGN: /* sign only */
if (!libbalsa_rfc2440_sign_encrypt(mime_part,
lb_send_from(message),
NULL, FALSE,
parent))
return LIBBALSA_MESSAGE_SIGN_ERROR;
break;
case LIBBALSA_PROTECT_ENCRYPT:
case LIBBALSA_PROTECT_SIGN | LIBBALSA_PROTECT_ENCRYPT:
{
GList *encrypt_for = NULL;
gboolean result;
/* build a list containing the addresses of all to:, cc:
and the from: address. Note: don't add bcc: addresses
as they would be visible in the encrypted block. */
encrypt_for = get_mailbox_names(encrypt_for,
message->headers->to_list);
encrypt_for = get_mailbox_names(encrypt_for,
message->headers->cc_list);
encrypt_for = get_mailbox_names(encrypt_for,
message->headers->from);
if (message->headers->bcc_list)
libbalsa_information(LIBBALSA_INFORMATION_WARNING,
_("This message will not be encrypted for the BCC: recipient(s)."));
if (mode & LIBBALSA_PROTECT_SIGN)
result =
libbalsa_rfc2440_sign_encrypt(mime_part,
lb_send_from(message),
encrypt_for,
always_trust,
parent);
else
result =
libbalsa_rfc2440_sign_encrypt(mime_part,
NULL,
encrypt_for,
always_trust,
parent);
g_list_foreach(encrypt_for, (GFunc) g_free, NULL);
g_list_free(encrypt_for);
if (!result)
return LIBBALSA_MESSAGE_ENCRYPT_ERROR;
}
break;
default:
g_error("illegal gpg_mode %d (" __FILE__ " line %d)",
mode, __LINE__);
}
return LIBBALSA_MESSAGE_CREATE_OK;
}
/* handle rfc2633 and rfc3156 signing and/or encryption of a message */
static LibBalsaMsgCreateResult
do_multipart_crypto(LibBalsaMessage * message, GMimeObject ** mime_root,
GtkWindow * parent)
{
gpgme_protocol_t protocol;
gboolean always_trust;
/* check if we shall do any protection */
if (!(message->gpg_mode & LIBBALSA_PROTECT_MODE))
return LIBBALSA_MESSAGE_CREATE_OK;
/* check which protocol should be used */
if (message->gpg_mode & LIBBALSA_PROTECT_RFC3156)
protocol = GPGME_PROTOCOL_OpenPGP;
#ifdef HAVE_SMIME
else if (message->gpg_mode & LIBBALSA_PROTECT_SMIMEV3)
protocol = GPGME_PROTOCOL_CMS;
#endif
else if (message->gpg_mode & LIBBALSA_PROTECT_OPENPGP)
return LIBBALSA_MESSAGE_CREATE_OK; /* already done... */
else
return LIBBALSA_MESSAGE_ENCRYPT_ERROR; /* hmmm.... */
always_trust = (message->gpg_mode & LIBBALSA_PROTECT_ALWAYS_TRUST) != 0;
/* sign and/or encrypt */
switch (message->gpg_mode & LIBBALSA_PROTECT_MODE)
{
case LIBBALSA_PROTECT_SIGN: /* sign message */
if (!libbalsa_sign_mime_object(mime_root,
lb_send_from(message),
protocol, parent))
return LIBBALSA_MESSAGE_SIGN_ERROR;
break;
case LIBBALSA_PROTECT_ENCRYPT:
case LIBBALSA_PROTECT_ENCRYPT | LIBBALSA_PROTECT_SIGN:
{
GList *encrypt_for = NULL;
gboolean success;
/* build a list containing the addresses of all to:, cc:
and the from: address. Note: don't add bcc: addresses
as they would be visible in the encrypted block. */
encrypt_for = get_mailbox_names(encrypt_for,
message->headers->to_list);
encrypt_for = get_mailbox_names(encrypt_for,
message->headers->cc_list);
encrypt_for = g_list_append(encrypt_for,
g_strdup(lb_send_from(message)));
if (message->headers->bcc_list)
libbalsa_information(LIBBALSA_INFORMATION_WARNING,
_("This message will not be encrypted for the BCC: recipient(s)."));
if (message->gpg_mode & LIBBALSA_PROTECT_SIGN)
success =
libbalsa_sign_encrypt_mime_object(mime_root,
lb_send_from(message),
encrypt_for, protocol,
always_trust, parent);
else
success =
libbalsa_encrypt_mime_object(mime_root, encrypt_for,
protocol, always_trust,
parent);
g_list_free(encrypt_for);
if (!success)
return LIBBALSA_MESSAGE_ENCRYPT_ERROR;
break;
}
default:
g_error("illegal gpg_mode %d (" __FILE__ " line %d)",
message->gpg_mode, __LINE__);
}
return LIBBALSA_MESSAGE_CREATE_OK;
}
#endif
|