aboutsummaryrefslogtreecommitdiffstats
path: root/sink.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-10-28 23:04:24 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-10-28 23:04:24 +0000
commit0a040ad1ca1faf244a03ef15070656e8293a4a5c (patch)
treeda2ef8022447646a17e17a227894d590ca8b4943 /sink.c
parenta9cfa71d5b0ff5280b21a8c7eb62d8ef4ce1d85f (diff)
downloadfetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.tar.gz
fetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.tar.bz2
fetchmail-0a040ad1ca1faf244a03ef15070656e8293a4a5c.zip
Added bsmtp option.
svn path=/trunk/; revision=2144
Diffstat (limited to 'sink.c')
-rw-r--r--sink.c70
1 files changed, 66 insertions, 4 deletions
diff --git a/sink.c b/sink.c
index b45c2b99..14aa8fc4 100644
--- a/sink.c
+++ b/sink.c
@@ -222,7 +222,7 @@ int stuffline(struct query *ctl, char *buf)
}
n = 0;
- if (ctl->mda)
+ if (ctl->mda || ctl->bsmtp)
n = fwrite(buf, 1, last - buf, sinkfp);
else if (ctl->smtp_socket != -1)
n = SockWrite(ctl->smtp_socket, buf, last - buf);
@@ -253,7 +253,55 @@ int open_sink(struct query *ctl,
*bad_addresses = *good_addresses = 0;
- if (ctl->mda) /* we have a declared MDA */
+ if (ctl->bsmtp) /* dump to a BSMTP batch file */
+ {
+ if (strcmp(ctl->bsmtp, "-") == 0)
+ sinkfp = stdout;
+ else
+ sinkfp = fopen(ctl->bsmtp, "a");
+
+ /* see the ap computation under the SMTP branch */
+ fprintf(sinkfp,
+ "MAIL FROM: %s", (return_path[0]) ? return_path : user);
+
+ if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
+ fputs(" BODY=8BITMIME", sinkfp);
+ else if (ctl->mimemsg & MSG_IS_7BIT)
+ fputs(" BODY=7BIT", sinkfp);
+
+ fprintf(sinkfp, " SIZE=%ld\r\n", reallen);
+
+ /*
+ * RFC 1123 requires that the domain name part of the
+ * RCPT TO address be "canonicalized", that is a FQDN
+ * or MX but not a CNAME. Some listeners (like exim)
+ * enforce this. Now that we have the actual hostname,
+ * compute what we should canonicalize with.
+ */
+ ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : "localhost";
+
+ *bad_addresses = 0;
+ for (idp = xmit_names; idp; idp = idp->next)
+ if (idp->val.status.mark == XMIT_ACCEPT)
+ {
+ if (strchr(idp->id, '@'))
+ fprintf(sinkfp,
+ "RCPT TO: %s\r\n", idp->id);
+ else
+ fprintf(sinkfp,
+ "RCPT TO: %s@%s\r\n", idp->id, ctl->destaddr);
+ *good_addresses = 0;
+ }
+
+ fputs("DATA\r\n", sinkfp);
+
+ if (ferror(sinkfp))
+ {
+ error(0, -1, "BSMTP file open or preamble write failed");
+ return(PS_BSMTP);
+ }
+ }
+ else if (ctl->mda) /* we have a declared MDA */
{
int length = 0, fromlen = 0, nameslen = 0;
char *names = NULL, *before, *after, *from = NULL;
@@ -399,7 +447,7 @@ int open_sink(struct query *ctl,
sigchld = signal(SIGCHLD, SIG_DFL);
}
- else
+ else /* forward to an SMTP listener */
{
const char *ap;
char options[MSGBUFSIZE], addr[128];
@@ -574,7 +622,9 @@ int open_sink(struct query *ctl,
void release_sink(struct query *ctl)
/* release the per-message output sink, whether it's a pipe or SMTP socket */
{
- if (ctl->mda)
+ if (ctl->bsmtp)
+ fclose(sinkfp);
+ else if (ctl->mda)
{
if (sinkfp)
{
@@ -607,6 +657,18 @@ int close_sink(struct query *ctl, flag forward)
return(FALSE);
}
}
+ else if (ctl->bsmtp)
+ {
+ /* implicit disk-full check here... */
+ fputs("..\r\n", sinkfp);
+ if (strcmp(ctl->bsmtp, "-"))
+ fclose(sinkfp);
+ if (ferror(sinkfp))
+ {
+ error(0, -1, "Message termination or close of BSMTP file failed");
+ return(FALSE);
+ }
+ }
else if (forward)
{
/* write message terminator */