aboutsummaryrefslogtreecommitdiffstats
path: root/env.c
Commit message (Expand)AuthorAgeFilesLines
* Proper line break for hostname qualification errors.Matthias Andree2021-01-301-2/+1
* Release 6.4.5-rc1.Matthias Andree2020-05-041-2/+2
* Remove broken AC_CHECK_DECLS(getenv).Matthias Andree2020-03-301-4/+0
* Regression fix for realpath() buffer.Matthias Andree2019-09-281-6/+20
* 6.4.1, regression fix for default file locations.Matthias Andree2019-09-281-3/+31
* env.c: make FETCHMAILHOME (fmhome) absolute.Matthias Andree2019-09-271-1/+14
* Fix useless GCC8 warning, strncpy->memcpy for fixed string.Matthias Andree2018-04-141-1/+1
* Remove last traces of gethostbyname().Matthias Andree2017-04-221-1/+1
* Call endpwent().Matthias Andree2010-04-121-0/+2
* Fix lots of warnings, most around string literals...Matthias Andree2010-03-181-0/+2
* Make some explicit NULL checks to pacify llvm-clang's static analyzerMatthias Andree2010-02-281-1/+1
* Remove unused assignments/initializations found with llvm-clang.Matthias Andree2010-02-281-1/+1
* Fix spacing for consistency.Matthias Andree2009-06-141-1/+1
* Fix a few compiler warnings around implicit conversion or extra ";".Matthias Andree2009-01-141-1/+1
* * When HOME and FETCHMAILHOME are unset, be sure to copy user databaseMatthias Andree2006-12-191-1/+1
* Avoid crash in env.c/host_fqdn if we cannot canonicalize our own hostname.Matthias Andree2006-09-041-1/+1
* Wrap getaddrinfo() and block SIGALRM where needed.Matthias Andree2006-08-141-2/+2
* Revise comments before name canonicalization to make the code easier to under...Matthias Andree2006-08-031-2/+4
* Fix more compiler warnings.Matthias Andree2006-03-141-0/+3
* Fix Debian Bug#317761: when trying to send a bounce message, don't bailMatthias Andree2005-11-101-3/+2
* Add parameter to host_fqdn() to state if the domain name is required, i. e. Matthias Andree2005-10-301-2/+8
* Global variable cleanup, to fix daemon mode reinitialization problems.Matthias Andree2005-10-211-1/+1
* Large protocol independence patch.Matthias Andree2005-08-281-14/+23
* strcpy -> strlcpy, strcat -> strlcatMatthias Andree2005-07-301-1/+1
* Revise visbuf to dynamically size its buffer.Matthias Andree2005-07-201-35/+24
* Replace sprintf.Matthias Andree2004-11-121-2/+5
* Misc. sprintf and pid_t fixes.Matthias Andree2004-11-101-1/+2
* Fix miscellaneous warnings.Matthias Andree2004-10-201-2/+0
* Cast arguments of is*() ctype.h functions to unsigned char to be 8-bit safe.Matthias Andree2004-06-191-1/+1
* Fix various compiler warnings.Matthias Andree2004-06-181-1/+1
* Sunil Shetye's fix for SSL configuration.Eric S. Raymond2004-01-131-3/+2
* Cleanup.Eric S. Raymond2002-04-011-2/+2
* Minor fixes for 5.9.8.Eric S. Raymond2002-02-151-2/+1
* Fixes by Matthias Andree.Eric S. Raymond2002-02-011-0/+13
* Easy bug fixes for this round.Eric S. Raymond2001-11-081-5/+17
* _( -> GT_(Eric S. Raymond2001-09-241-3/+3
* Before tckling the license problem.Eric S. Raymond2001-09-181-1/+1
* HMH's trivial fixes.Eric S. Raymond2001-07-251-3/+7
* Corrected patch.Eric S. Raymond2001-03-141-0/+8
* Yoshihiko SARUMARU's patch,Eric S. Raymond2001-03-141-1/+5
* Show IMAP in the protocols.Eric S. Raymond2001-02-191-0/+3
* Proper conditionalization.Eric S. Raymond2001-02-141-4/+4
* Let's get rid of the old protocols with preauthentication bundled in.Eric S. Raymond2001-02-111-3/+0
* First cut at ODMR support.Eric S. Raymond2001-02-071-0/+3
* FETCHMAILUSER implemented.Eric S. Raymond2000-07-231-12/+6
* Minor bug fixes.Eric S. Raymond2000-04-211-1/+1
* Fix brown-paper-bag bug.Eric S. Raymond2000-04-161-6/+7
* FETCHMAILHOMEEric S. Raymond2000-04-161-4/+17
* BeOS support.Eric S. Raymond2000-04-081-0/+3
* Minor optimizations from Federico.Eric S. Raymond1999-12-261-1/+1
#n573'>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