Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 118116
Collapse All | Expand All

(-)ssmtp-2.61/INSTALL (-1 / +1 lines)
Lines 57-63 Link Here
57
		records don't count, as several vendors' machines that we
57
		records don't count, as several vendors' machines that we
58
		run ssmtp on (notably suns) don't fully support them.
58
		run ssmtp on (notably suns) don't fully support them.
59
		They'd be nice, though...
59
		They'd be nice, though...
60
	rewriteDomain: The place to say the mail came from. This is for
60
	rewriteDomain: The place to say where the mail came from. This is for
61
		hostname-hiding, and only applies if the programs is
61
		hostname-hiding, and only applies if the programs is
62
		compiled with REWRITE_DOMAIN defined. We don't usually have
62
		compiled with REWRITE_DOMAIN defined. We don't usually have
63
		to do so (our main mailhubs run zmailer: our clients run all
63
		to do so (our main mailhubs run zmailer: our clients run all
(-)ssmtp-2.61/ssmtp.c (-2 / +2 lines)
Lines 727-733 Link Here
727
void header_parse(FILE *stream)
727
void header_parse(FILE *stream)
728
{
728
{
729
	size_t size = BUF_SZ, len = 0;
729
	size_t size = BUF_SZ, len = 0;
730
	char *p = (char *)NULL, *q;
730
	char *p = (char *)NULL, *q = (p + len);
731
	bool_t in_header = True;
731
	bool_t in_header = True;
732
	char l = (char)NULL;
732
	char l = (char)NULL;
733
	int c;
733
	int c;
Lines 982-988 Link Here
982
#ifdef INET6
982
#ifdef INET6
983
	struct addrinfo hints, *ai0, *ai;
983
	struct addrinfo hints, *ai0, *ai;
984
	char servname[NI_MAXSERV];
984
	char servname[NI_MAXSERV];
985
	int s;
985
	int s = 0;
986
#else
986
#else
987
	struct sockaddr_in name;
987
	struct sockaddr_in name;
988
	struct hostent *hent;
988
	struct hostent *hent;

Return to bug 118116