diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-02 20:24:06 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-02 20:24:06 +0000 |
commit | 76a68720b1213a9b63b1ac060b0cf7171bd02a19 (patch) | |
tree | 544f1c9bfd6458d0991ce753711f0d75c88c0040 /mail/masqmail/files/patch-pop3_in.c | |
parent | Add mod_log_mysql 1.0. (diff) |
Add MasqMail, a mail server designed for hosts that do not have a permanent
internet connection eg. a home network or a single host at home. It has
special support for connections to different ISPs. It replaces sendmail or
other MTAs such as qmail or exim.
PR: ports/65178
Submitted by: Andrey Slusar <vasallia@ukr.net>
Notes
Notes:
svn path=/head/; revision=108202
Diffstat (limited to 'mail/masqmail/files/patch-pop3_in.c')
-rw-r--r-- | mail/masqmail/files/patch-pop3_in.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/masqmail/files/patch-pop3_in.c b/mail/masqmail/files/patch-pop3_in.c new file mode 100644 index 000000000000..a633dc2e3199 --- /dev/null +++ b/mail/masqmail/files/patch-pop3_in.c @@ -0,0 +1,11 @@ +--- src/pop3_in.c.old Mon Apr 5 01:13:51 2004 ++++ src/pop3_in.c Mon Apr 5 01:15:27 2004 +@@ -372,7 +372,7 @@ + DEBUG(5){ + struct sockaddr_in name; + int len; +- getsockname(sock, &name, &len); ++ getsockname(sock, (struct sockaddr *)(&name), &len); + debugf("socket: name.sin_addr = %s\n", inet_ntoa(name.sin_addr)); + } + return popb; |