1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660
|
head 1.20;
access;
symbols;
locks; strict;
comment @# @;
1.20
date 2002.04.27.15.49.50; author az; state Exp;
branches;
next 1.19;
1.19
date 2002.04.26.02.11.33; author az; state Exp;
branches;
next 1.18;
1.18
date 2002.04.25.14.31.58; author az; state Exp;
branches;
next 1.17;
1.17
date 2002.03.05.13.18.49; author az; state Exp;
branches;
next 1.16;
1.16
date 2002.03.05.13.02.53; author az; state Exp;
branches;
next 1.15;
1.15
date 2002.02.16.12.02.54; author az; state Exp;
branches;
next 1.14;
1.14
date 2002.02.05.23.44.47; author az; state Exp;
branches;
next 1.13;
1.13
date 2002.01.30.14.23.21; author az; state Exp;
branches;
next 1.12;
1.12
date 2002.01.30.13.36.38; author az; state Exp;
branches;
next 1.11;
1.11
date 2002.01.27.12.32.31; author az; state Exp;
branches;
next 1.10;
1.10
date 2002.01.02.06.59.22; author az; state Exp;
branches;
next 1.9;
1.9
date 2002.01.02.06.42.48; author az; state Exp;
branches;
next 1.8;
1.8
date 2002.01.02.06.39.34; author az; state Exp;
branches;
next 1.7;
1.7
date 2001.12.12.13.31.02; author az; state Exp;
branches;
next 1.6;
1.6
date 2001.11.25.11.39.53; author az; state Exp;
branches;
next 1.5;
1.5
date 2001.11.11.11.41.05; author az; state Exp;
branches;
next 1.4;
1.4
date 2001.11.11.10.28.53; author az; state Exp;
branches;
next 1.3;
1.3
date 2001.11.10.04.55.38; author az; state Exp;
branches;
next 1.2;
1.2
date 2001.11.06.13.00.27; author az; state Exp;
branches;
next 1.1;
1.1
date 2001.11.06.12.53.15; author az; state Exp;
branches;
next ;
desc
@@
1.20
log
@fixed stupid typo
@
text
@#!/usr/bin/perl
#
# this file is part of kuvert, a wrapper around sendmail that
# does pgp/gpg signing/signing+encrypting transparently, based
# on the content of your public keyring(s) and your preferences.
#
# copyright (c) 1999-2001 Alexander Zangerl <az@@snafu.priv.at>
#
# 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 of the License, or
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# $Id: kuvert,v 1.19 2002/04/26 02:11:33 az Exp az $
#--
use strict;
use Sys::Syslog qw(setlogsock openlog syslog closelog);
use Fcntl qw(:flock);
use Getopt::Std;
use MIME::Parser; # for parsing the mime-stream
use Mail::Address; # for parsing to and cc-headers
use FileHandle;
my %options;
if (!getopts("dkrnv",\%options) || @@ARGV)
{
print "usage: $0 [-n] [-d] [-v] | [-k] | [-r] \n-k: kill running $0\n"
."-d: debug mode\n-r: reload keyrings and configfile\n-n don't fork\n-v: output version and exit\n";
exit 1;
}
# the version number is inserted by make install
my $version="INSERT_VERSION";
if ($options{'v'})
{
print STDERR "kuvert $version\n";
exit 0;
}
# who are we gonna pretend to be today?
my($name,$home)=(getpwuid($<))[0,7];
# where is our in-queue
my $queuedir="$home/.kuvert_queue";
# which mta to use
my $mta="/usr/lib/sendmail -om -oi -oem";
# where to put temp files for parsing mime
my $tempdir="/tmp/kuvert.$<.$$";
# where to put pgp/gpg in- and output
my $tempfile_in="input.tmp";
my $tempfile_out="output.tmp";
# interval to check the queue
my $interval=60; # seconds
# where is the configuration file
my $config="$home/.kuvert";
# list of addresses and -regexps to be handles specially
my %config=();
my @@configkeys=();
# adresses and keyids
my (%ngkeys,%stdkeys);
# the name of program for logging
my $progname="kuvert";
# where to put the pid of the running process
my $pidf="/tmp/kuvert.pid.$<";
# header to check for bounce request
# bounces are not signed or encrypted but simply passed to $mta
my $resend_indicator="resent-to";
# with this header one can override the configuration options wrt.
# signing for all recipients of the current mail
my $conf_header="x-kuvert";
# pgp path
my $PGP='/usr/bin/pgp';
# gpg path
my $GPG='/usr/bin/gpg';
# cat
my $CAT="/bin/cat";
# quintuple-client path
my $client;
# quintuple-agent path and args
my $agent;
# the passphrases are stored here if agent support is switched off
my %secrets=();
# 0 if gpg should try to mimickry as pgp2
# 0 means, that both keys are assumed to reside in one keyring
my $use_pgp=0;
# set this to 1 if this module should store the secrets with
# secret-agent rather than storing them itself.
my $use_agent=0;
# whether we need a separate agent-process
my $private_agent=0;
# if use_agent:
# set this to 0 if the secret should be loaded on demand by
# client if possible: this demand asking works only if
# $DISPLAY is set, so this option is ignored if no $DISPLAY is a/v
# if not set, the secret is asked & stored when kuvert starts.
my $secret_on_demand=0;
# add --always-trust to the gpg-parameters: this makes gpg
# encrypt to non fully trusted keys, too.
my $alwaystrust=0;
# set this to 1 for more verbose debugging output to syslog
my $debug=0;
# default keyid(s) for std and ng
# not really needed if you run separate keyrings, but if you
# want to run only gpg (in normal and "compat" mode),
# you've got to specify your default key because you've got more than
# one secret key in your secret keyring...
my ($ng_defkey,$std_defkey);
# usually this program logs to syslog, but it can log to a file as well
my ($lf,$logfile);
$debug=1 if ($options{"d"});
# kill a already running process
# TERM for kill or HUP for rereading
if ($options{"k"} || $options{"r"})
{
my $pid;
my $sig=($options{"r"}?'USR1':'TERM');
open(PIDF,"$pidf") || die "cant open $pidf: $!\n";
$pid=<PIDF>;
close(PIDF);
chomp $pid;
die "no valid pid found, cant kill any process.\n"
if (!$pid);
if (!kill $sig, $pid)
{
die "cant kill -$sig $pid: $!\n";
}
unlink $pidf if ($options{"k"});
exit 0;
}
logit("version $version starting");
# and now for some real work...
if (-f "$pidf") # retain content of pidf, in case we cant lock it
{
open(PIDF,"+<$pidf") || die "cant open <+$pidf: $!\n";
}
else
{
open(PIDF,">$pidf") || die "cant open >$pidf: $!\n";
}
if (!flock(PIDF,LOCK_NB|LOCK_EX))
{
logit("cant lock $pidf ($!), another process running?, exiting");
die "cant lock $pidf ($!), another process running?, exiting\n";
}
# get the list of known keys and the configuration-stuff,
# setup the queuedir and tempdir
# the hup-handler does this
handle_reload();
# cleanup tempdir
my $res;
if ($res=cleanup($tempdir,0))
{
logit("cant clean $tempdir: $res");
die "cant clean $tempdir: $res\n";
}
# get the passphrase(s) and setup secret-agent if wanted
# this has to be done before any fork, because the environment
# vars for secret-agent must be retained
$res=&get_verify_secrets;
die "secrets could not be initialized properly: $res\n" if ($res);
if (!$options{"d"} && !$options{"n"})
{
my $res=fork;
die "fork failed: $!\n"
if ($res == -1);
exit 0
if ($res);
}
# the lockfile is ours, lets write the current pid
print PIDF "$$\n";
PIDF->flush;
truncate PIDF,tell(PIDF); # and make sure there's nothing else in there...
# install the handler for conf reread
$SIG{'USR1'}=\&handle_reload;
# and the termination-handler
$SIG{'HUP'}=\&handle_term;
$SIG{'INT'}=\&handle_term;
$SIG{'QUIT'}=\&handle_term;
$SIG{'TERM'}=\&handle_term;
# the main loop, left only via signal handler handle_term
while (1)
{
if (!opendir(D,"$queuedir"))
{
logit("cant open $queuedir: $!");
die "cant open $queuedir: $!";
}
my $file;
foreach $file (readdir(D))
{
my $res;
# dont try to handle any files starting with "."
next if ($file =~ /^\./);
# open the file
next if (!open(FH,"$queuedir/$file"));
# lock it if possible
if (!flock(FH,LOCK_NB|LOCK_EX))
{
close(FH);
logit("$file is locked, skipping.");
next;
}
#ok, open & locked, let's proceed
logit("processing $file for $name");
$res=process_file(*FH,"$queuedir/$file");
if ($res)
{
send_bounce($res,$file);
logit("problem \"$res\" processing $file,"
." leaving as \".$file\".\n");
$res=rename("$queuedir/$file","$queuedir/.$file");
}
else
{
logit("done with file $file");
$res=unlink("$queuedir/$file");
logit("problem removing $queuedir/$file: $!")
if (!$res);
}
# and clean up the cruft left behind, please!
$res=&cleanup("$tempdir",0);
logit("problem cleaning $tempdir: $res")
if ($res);
# unlock the file
logit("problem unlocking $queuedir/$file: $!")
if (!flock(FH,LOCK_UN));
close(FH);
}
closedir(D);
&handle_term("debug mode") if ($options{"d"});
sleep($interval);
}
# returns 0 if ok
# stuff in the temp directory is removed by the main loop
sub process_file
{
my ($fh,$file)=@@_;
my ($res);
my @@sent;
my $parser = new MIME::Parser;
# set output to tempdir
$parser->output_dir($tempdir);
# everything less than 100k goes to core mem
$parser->output_to_core(100000);
# retain rfc1522-encoded headers, please
$parser->decode_headers(0);
my $in_ent = $parser->read(\$fh);
if (!$in_ent)
{
logit("could not parse MIME stream, last header was "
.$parser->last_head);
return ("mail was not sent anywhere: could not parse MIME stream, "
."last header was ".$parser->last_head);
}
# extract and delete instruction header
my $custom_conf=lc($in_ent->head->get($conf_header));
$in_ent->head->delete($conf_header);
# strip trailing and leading whitespace from the custom header
$custom_conf =~ s/^\s*(\S*)\s*$/$1/;
# check the custom header for validity
undef $custom_conf
unless ($custom_conf=~/^(none|std(sign)?|ng(sign)?|fallback)(-force)?$/);
# extract a possible resend-request-header
# if a/v, call $mta immediately
if ($custom_conf eq "none" || $in_ent->head->get($resend_indicator))
{
if ($custom_conf eq "none" )
{
logit("all sign/encrypt disabled for this mail, calling $mta -t");
}
else
{
logit("resending mail, sign/encrypt disabled, calling $mta -t");
}
# we do not send the original file here because this file possibly
# holds the instruction header...
$res=&send_entity($in_ent,"-t");
$in_ent->purge;
if ($res)
{
return "mail was not sent to anybody: $res";
}
else
{
return 0;
}
}
my (@@recip_none,@@recip_sign_std,@@recip_sign_ng,
@@recip_crypt_std,@@recip_crypt_ng,@@recip_all);
# get the recipients
# note: bcc handling is not implemented.
map { push @@recip_all, lc($_->address); } Mail::Address->parse($in_ent->head->get("To"),
$in_ent->head->get("Cc"));
# cry out loud if there is a problem with the submitted mail
# and no recipients were distinguishable...
# happens sometimes, with mbox-style 'From bla' lines in the headers...
if (!@@recip_all)
{
return "no recipients found! the mail headers seem to be garbled.";
}
# figure out what to do for specific recipients
my %actions=findaction($custom_conf,@@recip_all);
# translate that into arrays
@@recip_none=grep($actions{$_} eq "none",keys %actions);
@@recip_sign_std=grep($actions{$_} eq "stdsign",keys %actions);
@@recip_sign_ng=grep($actions{$_} eq "ngsign",keys %actions);
@@recip_crypt_std=grep($actions{$_} eq "std",keys %actions);
@@recip_crypt_ng=grep($actions{$_} eq "ng",keys %actions);
# if there are recipients in recip_none, send the message to them
# without any further action
if (@@recip_none)
{
logit("sending mail (raw) to ".join(",",@@recip_none));
$res=&send_entity($in_ent,join(" ",@@recip_none));
if ($res)
{
$in_ent->purge; # only if the sending went wrong
return ("mail was not sent to anybody: $res");
}
push @@sent,@@recip_none;
}
# shortcut if just recipients without crypt/sign
# and no other recipients are given
return 0
if (!@@recip_sign_std && !@@recip_sign_ng
&& !@@recip_crypt_std && !@@recip_crypt_ng);
# copy (mail)header, split header info
# in mime-related (remains with the entity) and non-mime
# (is saved in the new header-object)
my $orig_header=$in_ent->head->dup;
my $headername;
# content-* stays with the entity and the rest moves to orig_header
foreach $headername ($in_ent->head->tags)
{
if ($headername !~ /^content-/i)
{
# remove the stuff from the entity
$in_ent->head->delete($headername);
}
else
{
# remove this stuff from the orig_header
$orig_header->delete($headername);
}
}
# any text/plain parts of the entity have to be fixed with the
# correct content-transfer-encoding (qp), since any transfer 8->7bit
# on the way otherwise will break the signature.
# this is not necessary if encrypting, but done anyways since
# it doesnt hurt and we want to be on the safe side.
qp_fix_parts($in_ent);
# now we've got a $in_entity which is ready to be encrypted/signed
# and the mail-headers are saved in $orig_header
# since the old pgp has problems with stuff signed/encrypted
# by newer software that uses partial-length headers when fed
# data via pipe, we write out our $in_entity to $tempfile_in
# which is then fed through the relevant signing/encryption and sent on.
if (!open(F,">$tempdir/$tempfile_in"))
{
logit("cant open >$tempdir/$tempfile_in: $!");
return ("mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to anybody else: ".
"cant open >$tempdir/$tempfile_in: $!");
}
$in_ent->print(\*F);
close(F);
if (@@recip_sign_std)
{
return ("no std key known, can't sign! mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to anybody else")
if (!$std_defkey);
logit("sending mail (sign,std) to ".join(",",@@recip_sign_std));
$res=sign_send($in_ent,"$tempdir/$tempfile_in",\@@recip_sign_std,
\&std_sign,
"md5",$orig_header,"std");
return ("mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to ".join(",",@@recip_sign_std).": $res")
if ($res);
push @@sent,@@recip_sign_std;
}
if (@@recip_sign_ng)
{
return ("no ng key known, can't sign! mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to anybody else")
if (!$ng_defkey);
logit("sending mail (sign,ng) to ".join(",",@@recip_sign_ng));
$res=sign_send($in_ent,"$tempdir/$tempfile_in",\@@recip_sign_ng,
\&ng_sign,
"sha1",$orig_header,"ng");
return ("mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to ".join(",",@@recip_sign_ng).": $res")
if ($res);
push @@sent,@@recip_sign_ng;
}
if (@@recip_crypt_std)
{
my @@keys;
return ("no std key known, can't encrypt! mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to anybody else")
if (!$std_defkey);
logit("sending mail (crypt,std) to ".join(",",@@recip_crypt_std));
map { push @@keys,$stdkeys{$_}; } @@recip_crypt_std;
$res=crypt_send($in_ent,"$tempdir/$tempfile_in",\@@recip_crypt_std,
\@@keys,\&std_crypt,
$orig_header);
return ("mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to ".join(",",@@recip_crypt_std).": $res")
if ($res);
push @@sent,@@recip_crypt_std;
}
if (@@recip_crypt_ng)
{
my @@keys;
return ("no ng key known, can't encrypt! mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to anybody else")
if (!$ng_defkey);
logit("sending mail (crypt,ng) to ".join(",",@@recip_crypt_ng));
map { push @@keys,$ngkeys{$_}; } @@recip_crypt_ng;
$res=crypt_send($in_ent,"$tempdir/$tempfile_in",\@@recip_crypt_ng,
\@@keys,\&ng_crypt,$orig_header);
return ("mail was sent to ".
(@@sent?join(",",@@sent):"nobody")
.",\nnot to ".join(",",@@recip_crypt_ng).": $res")
if ($res);
push @@sent,@@recip_crypt_ng;
}
# done, return
return 0;
}
# return 0 if ok, errortext otherwise
sub sign_send
{
my ($ent,$ent_file,$rec,$cmd,$micalg,$header,$type)=@@_;
my $res;
# generate a new top-entity to be mailed
my $newent=new MIME::Entity;
# make a private copy of the passed header and set this one
$newent->head($header->dup);
# make it a multipart/signed
# and set the needed content-type-fields on this top entity
$newent->head->mime_attr("MIME-Version"=>"1.0");
$newent->head->mime_attr("Content-Type"=>"multipart/signed");
$newent->head->mime_attr("Content-Type.Boundary"=>
&MIME::Entity::make_boundary);
$newent->head->mime_attr("Content-Type.Protocol"=>
"application/pgp-signature");
$newent->head->mime_attr("content-Type.Micalg" => "pgp-$micalg");
$newent->preamble(["This is a multi-part message in MIME format.\n",
"It has been signed conforming to RFC2015.\n",
"You'll need PGP or GPG to check the signature.\n"]);
# add the passed entity as part
$newent->add_part($ent);
# make sure outfile is not existing
unlink("$tempdir/$tempfile_out");
# generate the signature
$res=&$cmd($ent_file,"$tempdir/$tempfile_out");
return $res if ($res);
# attach the signature
$newent->attach(Type => "application/pgp-signature",
Path => "$tempdir/$tempfile_out",
Filename => "signature.$type",
Disposition => "inline",
Encoding => "7bit");
# and send the resulting thing, not cleaning up
return &send_entity($newent,@@{$rec});
}
# return 0 if ok, errortext otherwise
sub crypt_send
{
my ($ent,$ent_file,$rec,$rec_keys,$cmd,$header)=@@_;
my $res;
# generate a new top-entity to be mailed
my $newent=new MIME::Entity;
# make a private copy of the passed header and set this one
$newent->head($header->dup);
# make it a multipart/encrypted
# and set the needed content-type-fields on this top entity
$newent->head->mime_attr("MIME-Version"=>"1.0");
$newent->head->mime_attr("Content-Type"=>"multipart/encrypted");
$newent->head->mime_attr("Content-Type.Boundary"=>
&MIME::Entity::make_boundary);
$newent->head->mime_attr("Content-Type.Protocol"=>
"application/pgp-encrypted");
# set the new preamble
$newent->preamble(["This is a multi-part message in MIME format.\n",
"It has been encrypted conforming to RFC2015.\n",
"You'll need PGP or GPG to view the content.\n"]);
# attach the needed dummy-part
$newent->attach(Type=>"application/pgp-encrypted",
Data=>"Version: 1\n",
Encoding=>"7bit");
# make sure tempfile is not existing
unlink("$tempdir/$tempfile_out");
# generate the encrypted data
$res=&$cmd($ent_file,"$tempdir/$tempfile_out",@@{$rec_keys});
return $res if ($res);
# attach the encrypted data
$newent->attach(Type => "application/octet-stream",
Path => "$tempdir/$tempfile_out",
Filename => undef,
Disposition => "inline",
Encoding=>"7bit");
# and send the resulting thing
return &send_entity($newent,@@{$rec});
}
# log the msg(s) to syslog or the logfile
sub logit
{
my $msg = shift(@@_);
if ($lf)
{
# logfile is opened with autoflush set to 1,
# so no extra flushing needed
# we're more or less emulating the syslog format here...
print $lf scalar(localtime)." $0\[$$\] $msg\n";
}
else
{
setlogsock('unix');
openlog($progname,"pid,cons","mail");
syslog("notice","$msg");
closelog;
}
}
# send entity to $mta, passing $args to $mta
# ent is a MIME::Entity and args is either "-t" or a list of recipients
# returns 0 if ok or an errortext
sub send_entity
{
my ($ent,@@args)=@@_;
open(TOMTA,("|$mta ".join(" ",@@args)))
|| return "cant open pipe to $mta: $!";
$ent->print(\*TOMTA);
close(TOMTA);
return "error when calling $mta: $!"
if ($?);
return "";
}
# remove temporary stuff left behind in directory $what
# remove_what set: remove the dir, too.
# returns: "" or errormsg
sub cleanup
{
my ($what,$remove_what)=@@_;
my ($name,$res);
opendir(F,$what) || return "cant opendir $what: $!";
foreach $name (readdir(F))
{
next if ($name =~ /^\.{1,2}$/); # dont touch the dir-entries...
if (-d "$what/$name")
{
$res=&cleanup("$what/$name");
return $res if ($res);
rmdir ("$what/$name") || return "cant rmdir $what/$name: $!";
}
else
{
unlink("$what/$name") || return "cant unlink $what/$name: $!";
}
}
closedir(F);
if ($remove_what)
{
rmdir("$what") || return "cant rmdir $what: $!";
}
return 0;
}
# log termination, cleanup, exit
sub handle_term
{
my ($sig)=@@_;
my $res;
logit("got termination signal SIG$sig, cleaning up");
$res=&cleanup($tempdir,1);
logit("problem cleaning up $tempdir: $res")
if ($res);
$res=&wipe_keys;
logit("problem doing the module cleanup routine: $res")
if ($res);
close $lf if ($lf);
exit 0;
}
# reread configuration file and keyrings
sub handle_reload
{
my (@@tmp,$lastkey);
# get the list of special adresses and adress-regexps
if (!open (F,$config))
{
logit("cant open $config: $!\n");
}
else
{
logit("reading config file");
%config=();
@@configkeys=();
while (<F>)
{
chomp;
next if (/^\#/ || /^\s*$/); # strip comments and empty lines
# if the keyid given is 0, don't do ng pgp at all
if (/^NGKEY\s+(\S.*)$/)
{
$ng_defkey=$1;
logit("set default ng key ng to $1") if ($options{"d"});
next;
}
# if the keyid given is 0, don't do std pgp at all
if (/^STDKEY\s+(\S.*)$/)
{
$std_defkey=$1;
logit("set default std key to $1") if ($options{"d"});
next;
}
if (/^PGPPATH\s+(\S.+)\s*$/)
{
$PGP=$1;
logit("set pgppath to $1") if ($options{"d"});
next;
}
if (/^GPGPATH\s+(\S.+)\s*$/)
{
$GPG=$1;
logit("set gpgpath to $1") if ($options{"d"});
next;
}
if (/^USEPGP\s+(\d)/)
{
$use_pgp=$1;
logit("set use_pgp to $1") if ($options{"d"});
next;
}
if (/^AGENTPATH\s+(\S.+)\s*$/) #
{
$agent=$1;
logit("set agent to $1") if ($options{"d"});
next;
}
if (/^CLIENTPATH\s+(\S.+)\s*$/)
{
$client=$1;
logit("set client to $1") if ($options{"d"});
next;
}
if (/^SECRETONDEMAND\s+(\d)/)
{
$secret_on_demand=$1;
logit("set secret_on_demand to $1") if ($options{"d"});
next;
}
if (/^ALWAYSTRUST\s+(\d)/)
{
$alwaystrust=$1;
logit("set alwaystrust to $1") if ($options{"d"});
next;
}
if (/^QUEUEDIR\s+(\S+)\s*$/)
{
logit("set queuedir to $1") if ($options{"d"});
$queuedir=$1;
next;
}
if (/^INTERVAL\s+(\d+)\s*$/)
{
logit("set interval to $1") if ($options{"d"});
$interval=$1;
next;
}
if (/^TEMPDIR\s+(\S+)\s*$/)
{
logit("set tempdir to $1") if ($options{"d"});
$tempdir=$1;
next;
}
if (/^LOGFILE\s+(\S+)\s*$/)
{
# close old logfile if there is one
close $lf
if ($logfile && $logfile ne $1);
$logfile=$1;
# we append to the logfile
if (!open($lf,">>$logfile"))
{
logit("cant open logfile $logfile: $!");
die("cant open logfile $logfile: $!\n");
}
$lf->autoflush(1);
logit("set logfile to $1") if ($options{"d"});
next;
}
if (/^(\S+)\s+(\S+)\s*$/)
{
my ($key,$action)=(lc($1),lc($2));
if ($action=~/^(none|std(sign)?|ng(sign)?|fallback)(-force)?$/)
{
$config{$key}=$action;
push @@configkeys, $key;
logit("got conf $action for $key") if ($options{"d"});
}
else
{
logit("ignoring bad action \"$action\" for $key");
}
}
}
close F;
# generate queuedir if not existing
if (!-d $queuedir)
{
unlink "$queuedir";
if (!mkdir($queuedir,0700))
{
logit("cant mkdir $queuedir: $!");
die "cant mkdir $queuedir: $!\n";
}
}
# check queuedir owner & perm
elsif ((stat($queuedir))[4] != $<)
{
logit("$queuedir is not owned by you - refusing to run");
die "$queuedir is not owned by you - refusing to run";
}
elsif ((stat($queuedir))[2]&0777 != 0700)
{
logit("$queuedir does not have mode 0700 - refusing to run");
die "$queuedir does not have mode 0700 - refusing to run";
}
# gen tempdir for storing mime-stuff
if (!-d $tempdir)
{
unlink "$tempdir";
if (!mkdir($tempdir,0700))
{
logit("cant mkdir $tempdir: $!");
die "cant mkdir $tempdir: $!\n";
}
}
elsif ((stat($tempdir))[4] != $<)
{
logit("$tempdir is not owned by you - refusing to run");
die "$tempdir is not owned by you - refusing to run";
}
elsif ((stat($tempdir))[2]&0777 != 0700)
{
logit("$tempdir does not have mode 0700 - refusing to run");
die "$tempdir does not have mode 0700 - refusing to run";
}
}
# consistency checks
$use_agent=$client && $agent;
$secret_on_demand=0 if (!$use_agent);
logit("reading std keyring.");
%stdkeys=&std_listkeys;
logit("reading ng keyring.");
%ngkeys=&ng_listkeys;
return;
}
# traverses the entity and sets all parts with
# type == text/plain, charset != us-ascii, transfer-encoding 8bit
# to transfer-encoding qp.
sub qp_fix_parts
{
my ($entity)=@@_;
if ($entity->is_multipart)
{
foreach ($entity->parts)
{
&qp_fix_parts($_);
}
}
else
{
if ($entity->head->mime_type eq "text/plain"
&& $entity->head->mime_encoding eq "8bit"
&& lc($entity->head->mime_attr("content-type.charset"))
ne "us-ascii")
{
$entity->head->mime_attr("content-transfer-encoding"
=> "quoted-printable");
}
}
}
# notify the sender of the problem
sub send_bounce
{
my ($res,$file)=@@_;
open(F,"|$mta -t") || return;
print F "From: $name\nTo: $name\nSubject: $progname Mail Send Failure\n\n";
print F "your mail $queuedir/$file could not be sent to some or all"
." recipients.\nthe detailed error message was:\n\n";
print F "$res\n";
print F "please remove the backup file $queuedir/.$file\n"
."or rename it back to $queuedir/$file if you want me to try again for all recipients.\n";
close F;
}
# list the public keys in the usual keyrings
# returns: hash of (address,keyid)
sub std_listkeys { if ($use_pgp) { return &pgp_listkeys; }
else { return &gpg_listkeys_rsa; } }
sub ng_listkeys { return &gpg_listkeys_norsa; }
# sign a infile and write it to outfile
# args: infile,outfile
sub std_sign
{
if ($use_pgp)
{
return &pgp_sign(@@_,"");
}
else
{
return &gpg_sign(@@_,$std_defkey,
"--rfc1991 --cipher-algo idea --digest-algo md5"
." --compress-algo 1");
}
}
sub ng_sign { return &gpg_sign(@@_,$ng_defkey,undef); }
# crypt+sign a infile with keys, write it to outfile
# args: infile,outfile,recipients
sub std_crypt
{
if ($use_pgp)
{
return &pgp_crypt("",@@_);
}
else
{
return &gpg_crypt($std_defkey,@@_);
}
}
sub ng_crypt { return &gpg_crypt($ng_defkey,@@_); }
# setup for std pgp (rsa/idea, 2.6.*)
# returns: hash of address,key
sub pgp_listkeys
{
my (%stdkeys,$lastkey,@@tmp);
#get the keys and dump the trailer and header lines
%stdkeys=();
# this does not care if pgp is not existent...but then, we're not
# needing the pgp keyring
@@tmp=`$PGP -kv 2>$tempdir/subprocess`;
foreach (@@tmp)
{
my $name;
if (/^pub\s+\d+\/(\S+)\s+(.+)$/)
{
my $userspec=$2;
my $key=$1;
if ($userspec =~ /<(.+)>/)
{
$name=lc($1);
}
else
{
undef $name;
}
if ($name)
{
$stdkeys{$name}="0x$key";
$lastkey=$key;
&logit("got stdkey 0x$key for $name") if ($debug);
}
else
{
$lastkey=$key;
&logit("saved stdkey 0x$key, no address known yet")
if ($debug);
}
next;
}
if (/^\s+.*<(\S+)>\s*$/)
{
my $name=lc($1);
$stdkeys{$name}="0x$lastkey";
&logit("got stdkey (uid) 0x$lastkey for $name") if ($debug);
}
}
return %stdkeys;
}
# generate detached signature
# input: filename_in,filename_out,extra_args
# output: errormsg or ""
sub pgp_sign
{
my ($infile,$outfile,$extra_args)=@@_;
my ($passphrase,$passphrase_cmd);
if ($use_agent)
{
$passphrase_cmd="|$client get $std_defkey";
$passphrase="";
# check the passphrase for correctness
# only if actual work is requested
&verify_passphrase($std_defkey) if ($infile || $outfile);
}
else
{
$passphrase_cmd="";
$passphrase=$secrets{$std_defkey};
return "no passphrase known for key $std_defkey"
if (!$passphrase);
}
if (!$infile && !$outfile) # only check the passphrase
{
open(F,"$passphrase_cmd|PGPPASSFD=0 $PGP +batchmode "
."$extra_args -u $std_defkey -sbatf >$tempdir/subprocess 2>&1")
|| return "cant open |pgp: $!";
}
else
{
open(F,"$passphrase_cmd|PGPPASSFD=0 $PGP +batchmode $extra_args "
."-u $std_defkey -sbat $infile -o $outfile >$tempdir/subprocess 2>&1")
|| return "cant open |pgp: $!";
}
print F "$passphrase\n"
if ($passphrase);
close(F);
$passphrase="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; # does this overwrite?
return "" if (!$?);
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running pgp: $!\n".join("\n",@@result) if ($? == 0xff00);
return "pgp died from signal" . ($? & 0x7f)."\n".join("\n",@@result) if ($? <= 0x80);
$? >>= 8;
return "bad passphrase\n".join("\n",@@result) if ($? == 20);
return "pgp returned $?\n".join("\n",@@result);
}
# sign and encrypt
# input: extra_args,filename_in,filename_out,recipients
# output: errormsg or ""
sub pgp_crypt
{
my ($extra_args,$infile,$outfile,@@recipients)=@@_;
my ($passphrase,$cmd);
if ($use_agent)
{
$passphrase="";
$cmd="$client get $std_defkey|";
&verify_passphrase($std_defkey);
}
else
{
$passphrase=$secrets{$std_defkey};
return "no passphrase known for key $std_defkey"
if (!$passphrase);
}
$cmd.="PGPPASSFD=0 $PGP +batchmode $extra_args -u $std_defkey -esat "
."$infile -o $outfile " . join(" ",@@recipients) ." >$tempdir/subprocess 2>&1";
open(F,"|$cmd") || return "cant open |pgp: $!";
print F "$passphrase\n"
if ($passphrase);
close(F);
$passphrase="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; # does this overwrite?
return "" if (!$?);
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running pgp: $!\n".join("\n",@@result) if ($? == 0xff00);
return "pgp died from signal" . ($? & 0x7f)
."\n".join("\n",@@result) if ($? <= 0x80);
$? >>= 8;
return "bad passphrase\n".join("\n",@@result) if ($? == 20);
return "pgp returned $?\n".join("\n",@@result);
}
# generate detached signature
# input: filename_in,filename_out,key,extra_args
# key is the key that's used for signing & secret retrieval
# output: errormsg or ""
sub gpg_sign
{
my ($infile,$outfile,$key,$extra_args)=@@_;
my ($passphrase_cmd,$passphrase);
if ($use_agent)
{
$passphrase_cmd="|$client get $key";
$passphrase="";
&verify_passphrase($key) if ($infile || $outfile);
}
else
{
$passphrase_cmd="";
$passphrase=$secrets{$key};
return "no passphrase known for key $key"
if (!$passphrase);
}
if (!$infile && !$outfile) # only check passphrase
{
open(F,"$passphrase_cmd|$GPG -q -t --batch --armor "
."--passphrase-fd 0 --default-key $key $extra_args --detach-sign "
.">$tempdir/subprocess 2>&1") || return "cant open |gpg: $!";
}
else
{
open(F,"$passphrase_cmd|$GPG -q -t --batch --armor --passphrase-fd 0 "
."--default-key $key $extra_args --detach-sign -o $outfile $infile "
.">$tempdir/subprocess 2>&1")
|| return "cant open |gpg: $!";
}
print F "$passphrase\n"
if ($passphrase);
close(F);
$passphrase="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; # does this overwrite?
return "" if (!$?);
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running gpg: $!\n".join("\n",@@result) if ($? == 0xff00);
return "gpg died from signal" . ($? & 0x7f)
."\n".join("\n",@@result) if ($? <= 0x80);
$? >>= 8;
return "gpg returned $?\n".join("\n",@@result);
}
# sign and encrypt
# input: key,filename_in,filename_out,recipients
# key is used for signing & secret retrieval
# if key is an rsa-key, do all the
# stuff thats needed to generate rsa-stuff that pgp2 can successfully
# decrypt (this means to care for some bugs in pgp2 and emulate
# its behaviour...
# output: errormsg or ""
sub gpg_crypt
{
my ($key,$infile,$outfile,@@recipients)=@@_;
my ($cmd,$passphrase);
if ($use_agent)
{
$passphrase="";
$cmd="$client get $key|";
&verify_passphrase($key);
}
else
{
$passphrase=$secrets{$key};
return "no passphrase known for key $key"
if (!$passphrase);
}
if ($key eq $std_defkey) # means: compat mode!
{
my $res;
# very elaborate but working procedure, found by
# Gero Treuner <gero@@faveve.uni-stuttgart.de>
# http://muppet.faveve.uni-stuttgart.de/~gero/gpg-2comp
# first, generate the signature and store it
$cmd.="$GPG --batch -q --detach-sign --default-key $key "
."--passphrase-fd 0 -o $outfile.inter1 $infile >$tempdir/subprocess 2>&1";
open(F,"|$cmd") || return "cant open |gpg: $!";
print F "$passphrase\n"
if ($passphrase);
close(F);
$passphrase="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
if ($?)
{
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running gpg: $!\n"
.join("\n",@@result) if ($? == 0xff00);
return "gpg died from signal" . ($? & 0x7f)
."\n".join("\n",@@result)if ($? <= 0x80);
$? >>= 8;
return "gpg returned $?\n".join("\n",@@result);
}
# then, convert the cleartext to the internal literal structure
$res=0xffff
& system("$GPG --batch -q --store -z 0 -o $outfile.inter2 "
."$infile >$tempdir/subprocess 2>&1");
if ($res)
{
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running gpg literal conversion: $res\n"
.join("\n",@@result);
}
# compress signature and literal in the required order
$res=0xffff & system("$CAT $outfile.inter1 $outfile.inter2"
."|$GPG --no-literal --store --compress-algo 1 "
."-o $outfile.inter3 >$tempdir/subprocess 2>&1");
if ($res)
{
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running gpg sig+data compression: $res\n"
.join("\n",@@result);
}
# and finally encrypt all this for the wanted recipients.
$cmd="$GPG --no-options --load-extension idea "
."--no-literal --encrypt --rfc1991 --cipher-algo idea "
.($alwaystrust?"--always-trust ":"")
."--armor -o $outfile -r "
.join(" -r ",@@recipients)
." $outfile.inter3 >$tempdir/subprocess 2>&1";
$res= 0xffff & system($cmd);
if ($res)
{
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running gpg encryption: $res\n"
.join("\n",@@result);
}
return "";
}
else
# the usual variant: ng-keys only, no backwards compatibility for
# pgp2
{
$cmd.="$GPG --batch -q -t --armor --passphrase-fd 0 "
.($alwaystrust?"--always-trust ":"")
."-o $outfile --default-key $key -r "
. join(" -r ",@@recipients)
." --encrypt --sign $infile >$tempdir/subprocess 2>&1";
open(F,"|$cmd") || return "cant open |gpg: $!";
print F "$passphrase\n"
if ($passphrase);
close(F);
$passphrase="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
return "" if (!$?);
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "error running gpg: $!\n".join("\n",@@result) if ($? == 0xff00);
return "gpg died from signal" . ($? & 0x7f).
"\n".join("\n",@@result)if ($? <= 0x80);
$? >>= 8;
return "gpg returned $?\n".join("\n",@@result);
}
}
# list keys
# returns: hash of address,key
sub gpg_listkeys_norsa
{
my (%ngkeys,$lastkey,@@tmp,@@info,$now);
my %badcauses=('i'=>'invalid, no selfsig','d'=>'disabled',
'r'=>'revoked','e'=>'expired');
$now=time;
# this does not care if gpg is not existent...but then, we're not
# needing the gpg keyring
@@tmp=`$GPG -q --batch --list-keys --with-colons --no-expensive-trust-checks 2>$tempdir/subprocess`;
foreach (@@tmp)
{
my $name;
@@info=split(/:/);
# only public keys and uids are of interest
next if ($info[0] ne "pub" && $info[0] ne "uid");
$info[4] =~ s/^.{8}//; # truncate key-id
# no rsa-keys, please
# and be sure to skip these uid's, too
if ($info[3] eq "1")
{
&logit("ignoring rsa key 0x$info[4]") if ($debug);
undef $lastkey;
next;
}
# fixme lowprio: more general unquote
$info[9] =~ s/\\x3a/:/g; # re-insert colons, please
# remember the email address
# if no address given: remember this key
# but go on to the uid's to get an email address to
# work with
if ($info[9] =~ /<(.+)>/)
{
$name=lc($1);
}
else
{
undef $name;
}
# check the key: public part or uid?
if ($info[0] eq "pub")
{
# lets associate this key with the current email address
# if an address is known
$lastkey=$info[4];
if ($name)
{
# ignore expired, revoked and other bad keys
if (defined $badcauses{$info[1]})
{
&logit("ignoring DSA key 0x$info[4], reason: "
.$badcauses{$info[1]});
next;
}
$ngkeys{$name}="0x$lastkey";
&logit("got ngkey 0x$lastkey for $name")
if ($debug);
}
else
{
&logit("saved ngkey 0x$lastkey, no address known yet")
if ($debug);
}
next;
}
else
{
# uid: associate the current address with the key
# given in the most recent public key line
# if no such key saved: the pub key was an rsa key &
# we're set to ignore those
if (!$lastkey)
{
$name="<no valid address>" if (!$name);
&logit("ignoring uid $name, belongs to rsa key")
if ($debug);
}
else
{
if ($name)
{
# ignore expired, revoked and other bad keys
if (defined $badcauses{$info[1]})
{
&logit("ignoring DSA uid $name for 0x$lastkey, "
."reason: ".$badcauses{$info[1]});
next;
}
$ngkeys{$name}="0x$lastkey";
&logit("got ngkey (uid) 0x$lastkey for $name")
if ($debug);
}
else
{
&logit("ignoring uid without valid address")
if ($debug);
}
}
}
}
return %ngkeys;
}
# list keys
# returns: hash of address,key
sub gpg_listkeys_rsa
{
my (%stdkeys,$lastkey,@@tmp,@@info,$now);
my %badcauses=('i'=>'invalid, no selfsig','d'=>'disabled',
'r'=>'revoked','e'=>'expired');
$now=time;
# this does not care if gpg is not existent...but then, we're not
# needing the gpg keyring
@@tmp=`$GPG -q --batch --list-keys --with-colons --no-expensive-trust-checks 2>$tempdir/subprocess`;
foreach (@@tmp)
{
my $name;
@@info=split(/:/);
# only public keys and uids are of interest
next if ($info[0] ne "pub" && $info[0] ne "uid");
$info[4] =~ s/^.{8}//; # truncate key-id
# no dsa/elg-keys, please
# and be sure to skip these uid's, too
if ($info[3] > 1)
{
&logit("ignoring dsa/elg key 0x$info[4]") if ($debug);
undef $lastkey;
next;
}
# fixme lowprio: general unquote
$info[9] =~ s/\\x3a/:/g; # re-insert colons, please
# remember the email address
# if no address given: remember this key
# but go on to the uid's to get an email address to
# work with
if ($info[9] =~ /<(.+)>/)
{
$name=lc($1);
}
else
{
undef $name;
}
if ($info[0] eq "pub")
{
$lastkey=$info[4];
# ignore expired, revoked and other bad keys
if (defined $badcauses{$info[1]})
{
&logit("ignoring RSA key 0x$info[4], reason: "
.$badcauses{$info[1]});
next;
}
if ($name)
{
$stdkeys{$name}="0x$lastkey";
&logit("got stdkey 0x$lastkey for $name")
if ($debug);
}
else
{
&logit("saved stdkey 0x$lastkey, no address known yet")
if ($debug);
}
next;
}
else
{
# uid: associate the current address with the key
# given in the most recent public key line
# if no such key saved: the pub key was an dsa key &
# we're set to ignore those
if (!$lastkey)
{
$name="<no valid address>" if (!$name);
&logit("ignoring uid $name, belongs to dsa/elg key")
if ($debug);
}
else
{
if ($name)
{
# ignore expired, revoked and other bad keys
if (defined $badcauses{$info[1]})
{
&logit("ignoring RSA uid $name for 0x$lastkey, "
."reason: ".$badcauses{$info[1]});
next;
}
$stdkeys{$name}="0x$lastkey";
&logit("got stdkey (uid) 0x$lastkey for $name")
if ($debug);
}
else
{
&logit("ignoring uid without valid address")
if ($debug);
}
}
}
}
return %stdkeys;
}
# get and store a secret
# if agent support activated: check if agent running
# and let client ask for the secret and store it
# otherwise, ask and store the secret yourself
# returns error text or ""
sub askput_secret
{
my ($id)=@@_;
my ($res,$phrase);
if ($use_agent)
{
# now let the secret client handle the situation:
# it asks for the secret and stores it
$res = 0xffff & system "$client put $id 2>$tempdir/subprocess";
if ($res)
{
open F,"$tempdir/subprocess";
my @@result=<F>;
close F;
return "secret-client returned error code $res\n"
.join("\n",@@result);
}
return 0;
}
else
{
print "enter secret for key $id:\n";
system "stty -echo";
chomp ($phrase=<>);
system "stty echo";
print "\n";
$secrets{$id}=$phrase;
$phrase="xxxxxxxxxxxxxxxxxxxxxxxxxxx"; # does this overwrite
# the previous content? lets hope so...
return 0;
}
}
# lookup the usual default key, if none is given
# pgp: use the first key in the secret keyring
# gpg/norsa: use the first dsa-key in the secret keyring
# gpg/rsa: similar, the first rsa-key is used
# returns keyid (std,ng)
sub lookup_defkeys
{
my (@@list,@@tmp,$stdkey,$ngkey);
# first, get the std key as this is more work
$stdkey="";
# if we use pgp, ask pgp to show the contents of the secret keyring
# (ugly)
if ($use_pgp)
{
# fixme lowprio: is there a neater way to do this?
@@list=`$PGP -kv $ENV{HOME}/.pgp/secring.pgp 2>$tempdir/subprocess`;
foreach (@@list)
{
if (/^sec\s+\d+\/(\S+)\s+/)
{
$stdkey="0x$1";
&logit("defaultkey for std is $stdkey") if ($debug);
last;
}
}
}
# else we ask gpg to show the secring and use the first rsa key
else
{
@@tmp=`$GPG -q --batch --list-secret-keys --with-colons 2>$tempdir/subprocess`;
foreach (@@tmp)
{
@@list=split(/:/);
next if ($list[0] ne "sec"); # only check secret keys
$list[4] =~ s/^.{8}//; # truncate key-id
if ($list[3] eq "1") # this is a rsa key
{
$stdkey="0x$list[4]";
&logit("defaultkey for std is $stdkey") if ($debug);
last;
}
}
}
# now, get the ng key
@@tmp=`$GPG -q --batch --list-secret-keys --with-colons 2>$tempdir/subprocess`;
foreach (@@tmp)
{
@@list=split(/:/);
next if ($list[0] ne "sec"); # only check secret keys
$list[4] =~ s/^.{8}//; # truncate key-id
if ($list[3] ne "1") # this is not a rsa key, therefore dsa/elg
{
$ngkey="0x$list[4]";
&logit("defaultkey for ng is $ngkey") if ($debug);
last;
}
}
return ($stdkey,$ngkey);
}
# sets the default default keys if none specified yet
# does the setup for the agent-process if needed
# asks, verifies and stores the secrets if secret_on_demand is not set
# returns "" or error
sub get_verify_secrets
{
my ($stdkey,$ngkey)=&lookup_defkeys;
my $res;
# set the std std keys if no overrides given and keys were returned
# by the lookup
$std_defkey=$stdkey if (!defined($std_defkey) && $stdkey);
$ng_defkey=$ngkey if (!defined($ng_defkey) && $ngkey);
return "no default key for std known"
if (!defined $std_defkey);
return "no default key for ng known"
if (!defined $ng_defkey);
# if use_agent is set, check if the agent is running and start one
# if needed.
if ($use_agent)
{
# check if agent properly active
# not running? start a personal instance
# and remember its pid
if (!$ENV{"AGENT_SOCKET"})
{
# start your own agent process
# and remember its pid
$private_agent=open(SOCKETNAME,"-|");
return "cant fork: $!" if (!defined($private_agent));
if ($private_agent) # original process
{
# get the socketname
$res=<SOCKETNAME>;
# and set the correct env variable for client
$res=~/^AGENT_SOCKET=\'(.+)\';/;
$ENV{"AGENT_SOCKET"}=$1;
# do not close the pipe, because then the
# parent process tries to wait() on the child,
# which wont work here
&logit("forked secret-agent pid $private_agent,"
."socket is $1")
if ($options{"d"});
}
else
# the child that should exec the quintuple-agent
{
exec "$agent"
|| die "cant exec $agent: $!\n";
}
}
}
elsif ($secret_on_demand)
{
return "secret_on_demand without agent-support is not possible.";
}
if (!$secret_on_demand || !$ENV{"DISPLAY"})
{
# get the std passphrase and verify it,
# but only if we're doing std pgp at all
# i.e. keyid!=0
if ($std_defkey)
{
do
{
$res=&askput_secret($std_defkey);
return $res if ($res);
$res=std_sign(undef,undef);
print "wrong passphrase, try again.\n"
if ($res);
}
while ($res);
}
# get the ng passphrase and verify it
# again, only if ng pgp/gpg requested/possible
if ($ng_defkey)
{
do
{
$res=&askput_secret($ng_defkey);
return $res if ($res);
$res=ng_sign(undef,undef);
print "wrong passphrase, try again.\n"
if ($res);
}
while ($res);
}
}
return "";
}
# if secret-agent support is active:
# removes the keys from the secret agent's store and
# terminates the agent if wanted
sub wipe_keys
{
my $res;
if ($use_agent)
{
if ($std_defkey)
{
$res = 0xffff & system "$client delete $std_defkey";
&logit("problem deleting secret for $std_defkey: $res")
if ($res);
}
if ($ng_defkey)
{
$res = 0xffff & system "$client delete $ng_defkey";
&logit("problem deleting secret for $ng_defkey: $res")
if ($res);
}
if ($private_agent)
{
# kill the private agent process
$res = kill('TERM',$private_agent);
&logit("problem killing $private_agent: $!") if (!$res);
wait;
}
}
return "";
}
# requests the passphrase from secret agent and runs it
# through the usual verification process.
# does not stop until the passphrase passes the test.
# does assume that secret agent is running (will not be called
# otherwise...)
sub verify_passphrase
{
my ($key)=@@_;
my $res;
while (1)
{
# let the sign subroutine check for validity
if ($key eq $std_defkey)
{
$res=std_sign(undef,undef);
}
else
{
$res=ng_sign(undef,undef);
}
# ok? then exit
return 0 if (!$res);
# otherwise nuke the key in order to make
system("$client delete $key");
}
exit 1; # must not reach here
}
# find the correct action for a given email address
# input: addresses and custom-header
# result: hash with address as key and action as value
# the fallback and -force options are expanded into atoms, ie.
# resulting actions are: ng, ngsign, std, stdsign, none.
# note: ng and std means encryption here, no check for keys necessary anymore
# fixme: uses globals stdkeys, ngkeys, options
sub findaction
{
my ($custom,@@addrs,@@affected)=@@_;
my (%actions,$addr);
# lookup addresses in config
foreach $addr (@@addrs)
{
# go through the configkeys
foreach (@@configkeys)
{
if ($addr =~ /$_/i)
{
$actions{$addr}=$config{$_};
logit("found directive: $addr -> $actions{$addr}")
if ($options{"d"});
last;
}
}
# custom set? then override the config except where action=none
if ($custom && $actions{$addr} ne "none")
{
logit("custom conf header: overrides $addr -> $custom")
if ($options{"d"});
$actions{$addr}=$custom;
next;
}
# apply default if necessary
$actions{$addr}=$config{"default"} if (! exists $actions{$addr});
}
# now check the found actions: anyone with -force options?
foreach $addr (@@addrs)
{
next if ($actions{$addr} !~ /^(\S+)-force$/);
my $force=$1;
logit("found force directive: $addr -> $actions{$addr}")
if ($options{"d"});
# yuck, must find affected addresses: those with action=none
# have to be disregarded and unchanged.
@@affected = grep($actions{$_} ne "none",@@addrs);
# (almost) unconditionally apply the simple force options:
# none,ngsign,stdsign; others need more logic
if ($force eq "std")
{
# downgrade to sign if not all keys a/v
$force="stdsign" if (grep(!exists $stdkeys{$_}, @@affected));
}
elsif ($force eq "ng")
{
$force="ngsign" if (grep(!exists $ngkeys{$_}, @@affected));
}
elsif ($force eq "fallback")
{
# fallback-logic: ng-crypt or std-crypt, otherwise ngsign
# -force: ng- or std-crypt for all, otherwise ngsign
$force="ngsign"
if (grep(!exists $ngkeys{$_}
&& !exists $stdkeys{$_}, @@affected));
}
# apply forced action to the affected addresses
map { $actions{$_}=$force; } (@@affected);
logit("final force directive: $force")
if ($options{"d"});
# the first force-option wins, naturally.
last;
}
# finally check the actions for fallback, ng or std and expand that
foreach $addr (@@addrs)
{
if ($actions{$addr} eq "fallback")
{
($ngkeys{$addr} && ($actions{$addr}="ng"))
|| ($stdkeys{$addr} && ($actions{$addr}="std"))
|| ($actions{$addr}="ngsign");
}
elsif ($actions{$addr} eq "ng")
{
$actions{$addr}="ngsign" if (!$ngkeys{$addr});
}
elsif ($actions{$addr} eq "std")
{
$actions{$addr}="stdsign" if (!$stdkeys{$addr});
}
logit("final action: $addr -> $actions{$addr}") if ($options{"d"});
}
return %actions;
}
@
1.19
log
@fixed ng-sign typo
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.18 2002/04/25 14:31:58 az Exp az $
d1871 1
a1871 1
|| ($ngkeys{$addr} && ($actions{$addr}="std"))
@
1.18
log
@fixed -force handling
added immutability of none
better logging in debug mode
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.17 2002/03/05 13:18:49 az Exp az $
d1842 1
a1842 1
$force="std-sign" if (grep(!exists $stdkeys{$_}, @@affected));
d1846 1
a1846 1
$force="ng-sign" if (grep(!exists $ngkeys{$_}, @@affected));
d1850 2
a1851 2
# fallback-logic: ng-crypt or std-crypt, otherwise ng-sign
# -force: ng- or std-crypt for all, otherwise ng-sign
@
1.17
log
@fixed send_bounce finally
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.16 2002/03/05 13:02:53 az Exp az $
d314 1
a314 1
my $custom_conf=$in_ent->head->get($conf_header);
d319 4
a322 1
d352 3
a354 2
# save all recipients, necessary for override-handling
map { push @@recip_all, lc($_->address); } Mail::Address->parse($in_ent->head->get("To"),
a356 128
# check if there is one with an override in there
# but only if there's no custom header already
if (!$custom_conf)
{
foreach (@@recip_all)
{
if (grep($_,@@configkeys))
{
if ($config{$_} =~
/^((std|ng)(sign)?|none|fallback)-force$/)
{
$custom_conf=$config{$_};
logit("found override $custom_conf for $_");
last; # more than one override -> undefined...
}
}
}
}
# handle -force options:
$custom_conf =~ s/^(none|stdsign|ngsign)-force$/$1/;
# fallback to signing if not all recipients have keys of any kind
if ($custom_conf eq "fallback-force")
{
$custom_conf="fallback";
$custom_conf="ngsign"
if (grep(!exists $ngkeys{$_} && !exists $stdkeys{$_}, @@recip_all));
}
elsif ($custom_conf eq "ng-force")
{
$custom_conf="ng";
$custom_conf="ngsign"
if (grep(!exists $ngkeys{$_}, @@recip_all));
}
elsif ($custom_conf eq "std-force")
{
$custom_conf="std";
$custom_conf="stdsign"
if (grep(!exists $stdkeys{$_}, @@recip_all));
}
foreach my $tmp (@@recip_all)
{
my $key="";
my $value="";
# if there is a custom configuration header,
# set its content for all the recipients
if ($custom_conf)
{
$value=lc($custom_conf);
logit("found custom conf header, set $tmp -> $value")
if ($options{"d"});
}
else
{
# traverse the config an find first match
foreach (@@configkeys)
{
if ($tmp =~ /$_/i)
{
$key=$_;
logit("addr $tmp matches special case $_ -> $config{$key}")
if ($options{"d"});
last;
}
}
}
# if we've got no config for this address,
# we use the default configuration, if a/v
# if there is no default config, we do not sign/crypt at all.
# if value is set, dont set the key!!
$key="default"
if (!$key && !$value);
# try ng enc, then std enc, else ng sign
if (lc($config{$key}) eq "fallback"
|| ( $custom_conf && $value eq "fallback" ))
{
if ($ngkeys{$tmp})
{
push @@recip_crypt_ng,$tmp;
}
elsif ($stdkeys{$tmp})
{
push @@recip_crypt_std,$tmp;
}
else
{
push @@recip_sign_ng,$tmp;
}
}
elsif (lc($config{$key}) eq "ngsign"
|| ( $custom_conf && $value eq "ngsign" )) # ng, but signonly
{
push @@recip_sign_ng,$tmp;
}
elsif (lc($config{$key}) eq "ng"
|| ( $custom_conf && $value eq "ng" )) # ng-keys, but encr if possible
{
my $ref=\@@recip_sign_ng;
$ref=\@@recip_crypt_ng
if ($ngkeys{$tmp});
push @@$ref,$tmp;
}
elsif (lc($config{$key}) eq "stdsign"
|| ( $custom_conf && $value eq "stdsign" )) # std, but signonly
{
push @@recip_sign_std,$tmp;
}
elsif (lc($config{$key}) eq "std"
|| ( $custom_conf && $value eq "std")) # consider only std-keys
{
my $ref=\@@recip_sign_std;
$ref=\@@recip_crypt_std
if ($stdkeys{$tmp});
push @@$ref,$tmp;
}
else # everything else means no sign/crypt at all
{
push @@recip_none,$tmp;
}
}
d360 1
a360 2
if (!@@recip_crypt_ng && !@@recip_crypt_std && !@@recip_sign_ng
&& !@@recip_sign_std && !@@recip_none)
d365 10
d814 11
a824 3
$config{lc($1)}=$2;
push @@configkeys, lc($1);
logit("got conf $2 for $1") if ($options{"d"});
d1785 102
a1886 1
@
1.16
log
@changed address format for bounce
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.15 2002/02/16 12:02:54 az Exp az $
d1025 1
a1025 1
print F "From: $name ($progname)\nTo: $name\nSubject: Mail Send Failure\n\n";
@
1.15
log
@fixed version generation
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.14 2002/02/05 23:44:47 az Exp az $
d1025 1
a1025 1
print F "From: $progname <$name>\nTo: <$name>\nSubject: Mail Send Failure\n\n";
@
1.14
log
@fixed version
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.13 2002/01/30 14:23:21 az Exp az $
d44 2
a45 2
# manually updated...not perfect
my $version="1.0.7";
@
1.13
log
@added version and version output at start
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.12 2002/01/30 13:36:38 az Exp az $
d45 1
a45 1
my $version="1.0.5";
@
1.12
log
@added interval option
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.11 2002/01/27 12:32:31 az Exp az $
d37 1
a37 1
if (!getopts("dkrn",\%options) || @@ARGV)
d39 2
a40 2
print "usage: $0 [-n] [-d] | [-k] | [-r] \n-k: kill running $0\n"
."-d: debug mode\n-r: reload keyrings and configfile\n-n don't fork\n";
d44 9
d166 2
@
1.11
log
@fixed subtle bug with handling of disabled std pgp
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.10 2002/01/02 06:59:22 az Exp az $
d883 8
@
1.10
log
@fixed output format for revoked or invalid stuff
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.9 2002/01/02 06:42:48 az Exp az $
d821 1
a821 1
if (/^NGKEY\s+(\S.+)$/)
d828 1
a828 1
if (/^STDKEY\s+(\S.+)$/)
@
1.9
log
@fixed usage message
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.8 2002/01/02 06:39:34 az Exp az $
a1410 9
# ignore expired, revoked and other bad keys
if (defined $badcauses{$info[1]})
{
&logit("ignoring DSA ".
($info[0] eq "pub"? "key 0x$info[4]":"uid 0x$lastkey")." reason: "
.$badcauses{$info[1]});
next;
}
d1436 8
d1472 8
a1527 8
# ignore expired, revoked and other bad keys
if (defined $badcauses{$info[1]})
{
&logit("ignoring RSA key 0x$info[4], reason: "
.$badcauses{$info[1]});
next;
}
d1547 8
d1586 9
@
1.8
log
@fixed handling of revoked keys
added -force actions
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.7 2001/12/12 13:31:02 az Exp az $
d40 1
a40 1
."-d: debug mode\n-r: reload keyrings and configfile\n-n don't fork";
@
1.7
log
@fixed handling revoked/disabled keys
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.6 2001/11/25 11:39:53 az Exp az $
d337 4
a340 1
@@recip_crypt_std,@@recip_crypt_ng);
d342 42
a383 2
foreach (Mail::Address->parse($in_ent->head->get("To"),
$in_ent->head->get("Cc")))
a384 1
my $tmp=lc($_->address);
d476 1
a476 1
return "no recipients found! the mail header seems to be garbled.";
d1414 2
a1415 1
&logit("ignoring DSA key 0x$info[4], reason: "
a1416 1
undef $lastkey; # uids have no expiry, still BSTS...
a1525 1
undef $lastkey; # uids have no expiry, still BSTS...
@
1.6
log
@added option -n
fixed debug mode
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.5 2001/11/11 11:41:05 az Exp az $
a33 1
use Time::Local;
d176 1
a176 1
handle_hup();
d1342 2
d1369 2
a1370 2
# ignore expired keys
if ($info[6] && $info[6]=~/^(\d+)-(\d+)-(\d+)$/)
d1372 4
a1375 7
# yyyy-mm-dd
if (timegm(0,0,0,$3,$2-1,$1-1900)<$now)
{
&logit("ignoring expired DSA key 0x$info[4]");
undef $lastkey; # uids have no expiry, still BSTS...
next;
}
d1452 2
d1479 2
a1480 2
# ignore expired keys
if ($info[6] && $info[6]=~/^(\d+)-(\d+)-(\d+)$/)
d1482 4
a1485 7
# yyyy-mm-dd
if (timegm(0,0,0,$3,$2-1,$1-1900)<$now)
{
&logit("ignoring expired RSA key 0x$info[4]");
undef $lastkey; # uids have no expiry, still BSTS...
next;
}
@
1.5
log
@added logging to file
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.4 2001/11/11 10:28:53 az Exp az $
d38 1
a38 1
if (!getopts("dkr",\%options) || @@ARGV)
d40 2
a41 2
print "usage: $0 [-d] | [-k] | [-r] \n-k: kill running $0\n"
."-d: debug mode\n-r: reload keyrings and configfile\n";
d142 1
a142 1
my $sig=($options{"r"}?'HUP':'TERM');
d193 1
a193 1
if (!$options{"d"})
d208 2
a209 2
# install the hup-handler
$SIG{'HUP'}=\&handle_hup;
d211 1
d271 1
d761 1
a761 1
sub handle_hup
@
1.4
log
@fixed tempdir, queuedir generation
sendmail errormode changed to -oem
fixed handling for no gpg or no pgp
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.3 2001/11/10 04:55:38 az Exp az $
d35 1
d132 3
d673 1
a673 1
# log the msg(s) to syslog
d678 14
a691 4
setlogsock('unix');
openlog($progname,"pid,cons","mail");
syslog("notice","$msg");
closelog;
d754 1
d845 17
@
1.3
log
@generate an error message if there is no recipient to be found
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.2 2001/11/06 13:00:27 az Exp az $
d51 1
a51 1
my $mta="/usr/lib/sendmail -om -oi -oee";
d73 1
a73 1
my $progname="kuvert V1.0.0";
d429 1
a429 1
return "no recipients found! header seems to be garbled.";
d503 4
d520 4
d539 4
d559 4
d762 1
d769 1
a822 22
# generate queuedir if not existing
if (!-d $queuedir)
{
unlink "$queuedir";
if (!mkdir($queuedir,0700))
{
logit("cant mkdir $queuedir: $!");
die "cant mkdir $queuedir: $!\n";
}
}
# check queuedir owner & perm
elsif ((stat($queuedir))[4] != $<)
{
logit("$queuedir is not owned by you - refusing to run");
die "$queuedir is not owned by you - refusing to run";
}
elsif ((stat($queuedir))[2]&0777 != 0700)
{
logit("$queuedir does not have mode 0700 - refusing to run");
die "$queuedir does not have mode 0700 - refusing to run";
}
a829 21
# gen tempdir for storing mime-stuff
if (!-d $tempdir)
{
unlink "$tempdir";
if (!mkdir($tempdir,0700))
{
logit("cant mkdir $tempdir: $!");
die "cant mkdir $tempdir: $!\n";
}
}
elsif ((stat($tempdir))[4] != $<)
{
logit("$tempdir is not owned by you - refusing to run");
die "$tempdir is not owned by you - refusing to run";
}
elsif ((stat($tempdir))[2]&0777 != 0700)
{
logit("$tempdir does not have mode 0700 - refusing to run");
die "$tempdir does not have mode 0700 - refusing to run";
}
d841 43
d987 2
d1312 3
a1314 1
@@tmp=`$GPG -q --batch --list-keys --with-colons --no-expensive-trust-checks`;
d1423 3
a1425 1
@@tmp=`$GPG -q --batch --list-keys --with-colons --no-expensive-trust-checks`;
d1592 1
a1592 1
@@tmp=`$GPG -q --batch --list-secret-keys --with-colons`;
d1609 1
a1609 1
@@tmp=`$GPG -q --batch --list-secret-keys --with-colons`;
d1637 2
a1638 2
$std_defkey=$stdkey if (!$std_defkey && $stdkey);
$ng_defkey=$ngkey if (!$ng_defkey && $ngkey);
d1641 1
a1641 1
if (!$std_defkey);
d1643 1
a1643 1
if (!$ng_defkey);
a1674 1
# but must not let quintuple-agent fork...
d1676 1
a1676 1
exec "$agent","--nofork"
d1687 14
a1700 8
# get the std passphrase and verify it
do
{
$res=&askput_secret($std_defkey);
return $res if ($res);
$res=std_sign(undef,undef);
print "wrong passphrase, try again.\n"
if ($res);
a1701 1
while ($res);
d1704 2
a1705 1
do
d1707 9
a1715 5
$res=&askput_secret($ng_defkey);
return $res if ($res);
$res=ng_sign(undef,undef);
print "wrong passphrase, try again.\n"
if ($res);
a1716 1
while ($res);
d1730 12
a1741 6
$res = 0xffff & system "$client delete $std_defkey";
&logit("problem deleting secret for $std_defkey: $res")
if ($res);
$res = 0xffff & system "$client delete $ng_defkey";
&logit("problem deleting secret for $ng_defkey: $res")
if ($res);
@
1.2
log
@added --no-expensive-trust-checks for speeding up the keyring checks
@
text
@d23 1
a23 1
# $Id: kuvert,v 1.1 2001/11/06 12:53:15 az Exp az $
d422 11
d447 2
a448 1
# shortcut if no other recipients are given
@
1.1
log
@Initial revision
@
text
@d23 1
a23 1
# $Id: guard,v 2.10 2001/09/21 00:01:16 az Exp $
d1280 1
a1280 1
@@tmp=`$GPG -q --batch --list-keys --with-colons`;
d1389 1
a1389 1
@@tmp=`$GPG -q --batch --list-keys --with-colons`;
@
|