This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbfido/postemail.c

150 lines
3.4 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
2002-01-07 19:16:03 +00:00
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: Post Email message from temp file
*
*****************************************************************************
2002-01-07 19:16:03 +00:00
* Copyright (C) 1997-2002
2001-08-17 05:46:24 +00:00
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
* 1971 BV IJmuiden
* the Netherlands
*
* This file is part of MBSE BBS.
*
* This BBS 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, or (at your option) any
* later version.
*
* MBSE BBS 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 MBSE BBS; see the file COPYING. If not, write to the Free
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*****************************************************************************/
2002-06-30 12:48:44 +00:00
#include "../config.h"
2001-08-17 05:46:24 +00:00
#include "../lib/libs.h"
2002-06-30 12:48:44 +00:00
#include "../lib/memwatch.h"
2001-08-17 05:46:24 +00:00
#include "../lib/structs.h"
2002-01-07 19:16:03 +00:00
#include "../lib/users.h"
2001-08-17 05:46:24 +00:00
#include "../lib/records.h"
#include "../lib/dbuser.h"
#include "../lib/common.h"
#include "../lib/clcomm.h"
#include "../lib/mbinet.h"
#include "postemail.h"
/*
* Global variables
*/
extern int email_in; /* Total emails processed */
extern int email_imp; /* Netmails imported */
extern int email_bad; /* Bad netmails */
/*
* Post email message
*
* 0 - All seems well.
* 1 - Something went wrong.
* 2 - SMTP error.
*
*/
int postemail(FILE *fp, char *MailFrom, char *MailTo)
{
char *temp, *p;
char buf[4096];
int result = 1;
faddr *fa;
2001-08-17 05:46:24 +00:00
rewind(fp);
2001-09-17 21:44:23 +00:00
Syslog('+', "SMTP: posting email from \"%s\" to \"%s\"", MailFrom, MailTo);
/*
* If a user forgets the To: line at the start of the FTN
* netmail, we end up here with a UUCP user with a local
* address as the destination.
* We can't deliver this and create a loop if we pass this
* message to SMTP.
*/
if ((fa = parsefaddr(MailTo))) {
if (is_local(fa)) {
WriteError("Destination is a local FTN address");
email_bad++;
tidy_faddr(fa);
return 2;
}
tidy_faddr(fa);
}
2001-08-17 05:46:24 +00:00
if (smtp_connect() == -1) {
WriteError("SMTP: connection refused");
2001-09-17 21:44:23 +00:00
email_bad++;
2001-08-17 05:46:24 +00:00
return 2;
}
temp = calloc(2048, sizeof(char));
2001-09-17 21:44:23 +00:00
sprintf(temp, "MAIL FROM:<%s>\r\n", MailFrom);
2001-08-17 05:46:24 +00:00
if (smtp_cmd(temp, 250)) {
WriteError("SMTP: refused FROM <%s>", MailFrom);
2001-09-17 21:44:23 +00:00
email_bad++;
free(temp);
2001-08-17 05:46:24 +00:00
return 2;
}
2001-09-17 21:44:23 +00:00
sprintf(temp, "RCPT TO:<%s>\r\n", MailTo);
2001-08-17 05:46:24 +00:00
if (smtp_cmd(temp, 250)) {
WriteError("SMTP: refused TO <%s>", MailTo);
2001-09-17 21:44:23 +00:00
email_bad++;
free(temp);
2001-08-17 05:46:24 +00:00
return 2;
}
if (smtp_cmd((char *)"DATA\r\n", 354)) {
WriteError("SMTP refused DATA mode");
2001-09-17 21:44:23 +00:00
email_bad++;
free(temp);
2001-08-17 05:46:24 +00:00
return 2;
}
while ((fgets(buf, sizeof(buf)-2, fp)) != NULL) {
if (strncmp(buf, ".\r\n", 3)) {
p = buf+strlen(buf)-1;
if (*p == '\n') {
*p++ = '\r';
*p++ = '\n';
*p = '\0';
}
smtp_send(buf);
} else {
sprintf(temp, " .\r\n");
smtp_send(temp);
}
}
email_in++;
if (smtp_cmd((char *)".\r\n", 250) == 0) {
Syslog('+', "SMTP: Message accepted");
result = 0;
email_imp++;
} else {
WriteError("SMTP: refused message");
email_bad++;
}
free(temp);
smtp_close();
return result;
}