Fixed mbmsg post
This commit is contained in:
parent
c9c1288e2c
commit
0c5338827d
@ -2,6 +2,14 @@ $Id$
|
|||||||
|
|
||||||
v0.61.0 06-Jun-2004.
|
v0.61.0 06-Jun-2004.
|
||||||
|
|
||||||
|
mbmsg:
|
||||||
|
With te post command, the right number of commandline options
|
||||||
|
is checked, if this is wrong the help message is displayed.
|
||||||
|
If a message is posted in a local area, no echomail.jam is
|
||||||
|
updated and the mailout semafore is not set.
|
||||||
|
Added checks in the mbmsg post command if the To parameter has
|
||||||
|
the correct syntax for netmail and all other areas.
|
||||||
|
|
||||||
|
|
||||||
v0.60.0 09-Feb-2004 - 04-Jun-2004
|
v0.60.0 09-Feb-2004 - 04-Jun-2004
|
||||||
|
|
||||||
|
10
TODO
10
TODO
@ -137,16 +137,6 @@ mbfile:
|
|||||||
N: It is not possible to import areas that run of cd-roms. Do we still
|
N: It is not possible to import areas that run of cd-roms. Do we still
|
||||||
need cd-rom support with current hd prices?
|
need cd-rom support with current hd prices?
|
||||||
|
|
||||||
mbmsg:
|
|
||||||
N: With the post command if a netmail area is used the netmail area
|
|
||||||
will cause trouble later, should be blocked to be used on netmail
|
|
||||||
areas.
|
|
||||||
|
|
||||||
N: With the post command check the commandline before doing anything.
|
|
||||||
|
|
||||||
N: With post in echomail, if a name name@address is given, the address
|
|
||||||
part should be stripped.
|
|
||||||
|
|
||||||
mbaff:
|
mbaff:
|
||||||
L: Rewrite filefind search algorithm.
|
L: Rewrite filefind search algorithm.
|
||||||
|
|
||||||
|
@ -117,6 +117,8 @@ int main(int argc, char **argv)
|
|||||||
if (strncasecmp(argv[i], "pa", 2) == 0)
|
if (strncasecmp(argv[i], "pa", 2) == 0)
|
||||||
do_pack = TRUE;
|
do_pack = TRUE;
|
||||||
if (strncasecmp(argv[i], "po", 2) == 0) {
|
if (strncasecmp(argv[i], "po", 2) == 0) {
|
||||||
|
if ((argc - i) != 6)
|
||||||
|
Help();
|
||||||
do_post = TRUE;
|
do_post = TRUE;
|
||||||
too = argv[++i];
|
too = argv[++i];
|
||||||
cmd = xstrcat(cmd, (char *)" \"");
|
cmd = xstrcat(cmd, (char *)" \"");
|
||||||
|
389
mbfido/post.c
389
mbfido/post.c
@ -43,203 +43,232 @@ extern int do_quiet; /* Suppress screen output */
|
|||||||
|
|
||||||
void Post(char *To, long Area, char *Subj, char *File, char *Flavor)
|
void Post(char *To, long Area, char *Subj, char *File, char *Flavor)
|
||||||
{
|
{
|
||||||
int i, rc = FALSE;
|
int i, rc = FALSE;
|
||||||
char *aka, *temp, *sAreas;
|
char *aka, *temp, *sAreas;
|
||||||
FILE *fp, *tp;
|
FILE *fp, *tp;
|
||||||
unsigned long crc = -1;
|
unsigned long crc = -1;
|
||||||
time_t tt;
|
time_t tt;
|
||||||
struct tm *t;
|
struct tm *t;
|
||||||
|
|
||||||
|
if (!do_quiet) {
|
||||||
|
colour(3, 0);
|
||||||
|
printf("Post \"%s\" to \"%s\" in area %ld\n", File, To, Area);
|
||||||
|
}
|
||||||
|
|
||||||
if (!do_quiet) {
|
IsDoing("Posting");
|
||||||
colour(3, 0);
|
Syslog('+', "Post \"%s\" area %ld to \"%s\" flavor %s", File, Area, To, Flavor);
|
||||||
printf("Post \"%s\" to \"%s\" in area %ld\n", File, To, Area);
|
Syslog('+', "Subject: \"%s\"", Subj);
|
||||||
}
|
|
||||||
|
|
||||||
IsDoing("Posting");
|
if ((tp = fopen(File, "r")) == NULL) {
|
||||||
Syslog('+', "Post \"%s\" area %ld to \"%s\" flavor %s", File, Area, To, Flavor);
|
WriteError("$Can't open %s", File);
|
||||||
Syslog('+', "Subject: \"%s\"", Subj);
|
if (!do_quiet)
|
||||||
|
printf("Can't open \"%s\"\n", File);
|
||||||
if ((tp = fopen(File, "r")) == NULL) {
|
return;
|
||||||
WriteError("$Can't open %s", File);
|
}
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
sAreas = calloc(128, sizeof(char));
|
|
||||||
sprintf(sAreas, "%s//etc/mareas.data", getenv("MBSE_ROOT"));
|
|
||||||
if ((fp = fopen(sAreas, "r")) == NULL) {
|
|
||||||
WriteError("$Can't open %s", sAreas);
|
|
||||||
free(sAreas);
|
|
||||||
fclose(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
fread(&msgshdr, sizeof(msgshdr), 1, fp);
|
|
||||||
if (fseek(fp, (msgshdr.recsize + msgshdr.syssize) * (Area - 1), SEEK_CUR) == 0) {
|
|
||||||
if (fread(&msgs, msgshdr.recsize, 1, fp) == 1) {
|
|
||||||
rc = TRUE;
|
|
||||||
} else {
|
|
||||||
WriteError("$Can't read area %ld", Area);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
WriteError("$Can't seek area %ld", Area);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
sAreas = calloc(PATH_MAX, sizeof(char));
|
||||||
|
sprintf(sAreas, "%s//etc/mareas.data", getenv("MBSE_ROOT"));
|
||||||
|
if ((fp = fopen(sAreas, "r")) == NULL) {
|
||||||
|
WriteError("$Can't open %s", sAreas);
|
||||||
free(sAreas);
|
free(sAreas);
|
||||||
if (rc == FALSE) {
|
|
||||||
fclose(fp);
|
|
||||||
fclose(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!msgs.Active) {
|
|
||||||
WriteError("Area %s not active", msgs.Name);
|
|
||||||
fclose(fp);
|
|
||||||
fclose(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Msg_Open(msgs.Base)) {
|
|
||||||
WriteError("Can't open %s", msgs.Base);
|
|
||||||
fclose(fp);
|
|
||||||
fclose(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Msg_Lock(30L)) {
|
|
||||||
WriteError("Can't lock %s", msgs.Base);
|
|
||||||
Msg_Close();
|
|
||||||
fclose(fp);
|
|
||||||
fclose(tp);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
tt = time(NULL);
|
|
||||||
t = localtime(&tt);
|
|
||||||
Diw = t->tm_wday;
|
|
||||||
Miy = t->tm_mon;
|
|
||||||
memset(&Msg, 0, sizeof(Msg));
|
|
||||||
Msg_New();
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Update statistic counter for message area
|
|
||||||
*/
|
|
||||||
fseek(fp, - msgshdr.recsize, SEEK_CUR);
|
|
||||||
msgs.Posted.total++;
|
|
||||||
msgs.Posted.tweek++;
|
|
||||||
msgs.Posted.tdow[Diw]++;
|
|
||||||
msgs.Posted.month[Miy]++;
|
|
||||||
fwrite(&msgs, msgshdr.recsize, 1, fp);
|
|
||||||
fclose(fp);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Start writing the message
|
|
||||||
*/
|
|
||||||
sprintf(Msg.From, CFG.sysop_name);
|
|
||||||
sprintf(Msg.To, To);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* If netmail, clean the To field.
|
|
||||||
*/
|
|
||||||
if ((msgs.Type == NETMAIL) && strchr(To, '@')) {
|
|
||||||
for (i = 0; i < strlen(Msg.To); i++) {
|
|
||||||
if (Msg.To[i] == '_')
|
|
||||||
Msg.To[i] = ' ';
|
|
||||||
if (Msg.To[i] == '@') {
|
|
||||||
Msg.To[i] = '\0';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sprintf(Msg.Subject, "%s", Subj);
|
|
||||||
sprintf(Msg.FromAddress, "%s", aka2str(msgs.Aka));
|
|
||||||
Msg.Written = time(NULL);
|
|
||||||
Msg.Arrived = time(NULL);
|
|
||||||
Msg.Local = TRUE;
|
|
||||||
|
|
||||||
if (strchr(Flavor, 'c'))
|
|
||||||
Msg.Crash = TRUE;
|
|
||||||
if (strchr(Flavor, 'p'))
|
|
||||||
Msg.Private = TRUE;
|
|
||||||
if (strchr(Flavor, 'h'))
|
|
||||||
Msg.Hold = TRUE;
|
|
||||||
|
|
||||||
switch (msgs.Type) {
|
|
||||||
case LOCALMAIL:
|
|
||||||
Msg.Localmail = TRUE;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case NETMAIL:
|
|
||||||
Msg.Netmail = TRUE;
|
|
||||||
sprintf(Msg.ToAddress, "%s", ascfnode(parsefaddr(To), 0xff));
|
|
||||||
break;
|
|
||||||
|
|
||||||
case ECHOMAIL:
|
|
||||||
Msg.Echomail = TRUE;
|
|
||||||
break;
|
|
||||||
|
|
||||||
case NEWS:
|
|
||||||
Msg.News = TRUE;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
temp = calloc(128, sizeof(char));
|
|
||||||
sprintf(temp, "\001MSGID: %s %08lx", aka2str(msgs.Aka), sequencer());
|
|
||||||
MsgText_Add2(temp);
|
|
||||||
Msg.MsgIdCRC = upd_crc32(temp, crc, strlen(temp));
|
|
||||||
Msg.ReplyCRC = 0xffffffff;
|
|
||||||
sprintf(temp, "\001PID: MBSE-FIDO %s (%s-%s)", VERSION, OsName(), OsCPU());
|
|
||||||
MsgText_Add2(temp);
|
|
||||||
if (msgs.Charset != FTNC_NONE) {
|
|
||||||
sprintf(temp, "\001CHRS: %s", getchrs(msgs.Charset));
|
|
||||||
} else {
|
|
||||||
sprintf(temp, "\001CHRS: %s", getchrs(FTNC_LATIN_1));
|
|
||||||
}
|
|
||||||
MsgText_Add2(temp);
|
|
||||||
sprintf(temp, "\001TZUTC: %s", gmtoffset(tt));
|
|
||||||
MsgText_Add2(temp);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Add the file as text
|
|
||||||
*/
|
|
||||||
Msg_Write(tp);
|
|
||||||
fclose(tp);
|
fclose(tp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
fread(&msgshdr, sizeof(msgshdr), 1, fp);
|
||||||
* Finish the message
|
if (fseek(fp, (msgshdr.recsize + msgshdr.syssize) * (Area - 1), SEEK_CUR) == 0) {
|
||||||
*/
|
if (fread(&msgs, msgshdr.recsize, 1, fp) == 1) {
|
||||||
aka = calloc(40, sizeof(char));
|
rc = TRUE;
|
||||||
MsgText_Add2((char *)"");
|
} else {
|
||||||
MsgText_Add2(TearLine());
|
WriteError("$Can't read area %ld", Area);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
WriteError("$Can't seek area %ld", Area);
|
||||||
|
}
|
||||||
|
|
||||||
if (msgs.Aka.point)
|
free(sAreas);
|
||||||
sprintf(aka, "(%d:%d/%d.%d)", msgs.Aka.zone, msgs.Aka.net, msgs.Aka.node, msgs.Aka.point);
|
if (rc == FALSE) {
|
||||||
else
|
fclose(fp);
|
||||||
sprintf(aka, "(%d:%d/%d)", msgs.Aka.zone, msgs.Aka.net, msgs.Aka.node);
|
fclose(tp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (strlen(msgs.Origin))
|
if (!msgs.Active) {
|
||||||
sprintf(temp, " * Origin: %s %s", msgs.Origin, aka);
|
WriteError("Area %s not active", msgs.Name);
|
||||||
else
|
fclose(fp);
|
||||||
sprintf(temp, " * Origin: %s %s", CFG.origin, aka);
|
fclose(tp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
MsgText_Add2(temp);
|
/*
|
||||||
free(aka);
|
* Check the proper syntax in the To parameter, in netmail areas
|
||||||
|
* it must have a destination address, in all other areas just a
|
||||||
|
* full name.
|
||||||
|
*/
|
||||||
|
if (msgs.Type == NETMAIL) {
|
||||||
|
if ((strchr(To, '@') == NULL) || (strstr(To, (char *)".n") == NULL) || (strstr(To, (char *)".z") == NULL)) {
|
||||||
|
WriteError("No address in \"%s\" and area is netmail", To);
|
||||||
|
if (!do_quiet)
|
||||||
|
printf("No address in \"%s\" and area is netmail\n", To);
|
||||||
|
fclose(fp);
|
||||||
|
fclose(tp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ((strchr(To, '@')) || (strstr(To, (char *)".n")) || (strstr(To, (char *)".z"))) {
|
||||||
|
WriteError("Address present in \"%s\" and area is not netmail", To);
|
||||||
|
if (!do_quiet)
|
||||||
|
printf("Address present in \"%s\" and area is not netmail\n", To);
|
||||||
|
fclose(fp);
|
||||||
|
fclose(tp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Msg_AddMsg();
|
if (!Msg_Open(msgs.Base)) {
|
||||||
Msg_UnLock();
|
WriteError("Can't open %s", msgs.Base);
|
||||||
Syslog('+', "Posted message %ld", Msg.Id);
|
fclose(fp);
|
||||||
|
fclose(tp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Msg_Lock(30L)) {
|
||||||
|
WriteError("Can't lock %s", msgs.Base);
|
||||||
|
Msg_Close();
|
||||||
|
fclose(fp);
|
||||||
|
fclose(tp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
tt = time(NULL);
|
||||||
|
t = localtime(&tt);
|
||||||
|
Diw = t->tm_wday;
|
||||||
|
Miy = t->tm_mon;
|
||||||
|
memset(&Msg, 0, sizeof(Msg));
|
||||||
|
Msg_New();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Update statistic counter for message area
|
||||||
|
*/
|
||||||
|
fseek(fp, - msgshdr.recsize, SEEK_CUR);
|
||||||
|
msgs.Posted.total++;
|
||||||
|
msgs.Posted.tweek++;
|
||||||
|
msgs.Posted.tdow[Diw]++;
|
||||||
|
msgs.Posted.month[Miy]++;
|
||||||
|
fwrite(&msgs, msgshdr.recsize, 1, fp);
|
||||||
|
fclose(fp);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Start writing the message
|
||||||
|
*/
|
||||||
|
sprintf(Msg.From, CFG.sysop_name);
|
||||||
|
sprintf(Msg.To, To);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* If netmail, clean the To field.
|
||||||
|
*/
|
||||||
|
if ((msgs.Type == NETMAIL) && strchr(To, '@')) {
|
||||||
|
for (i = 0; i < strlen(Msg.To); i++) {
|
||||||
|
if (Msg.To[i] == '_')
|
||||||
|
Msg.To[i] = ' ';
|
||||||
|
if (Msg.To[i] == '@') {
|
||||||
|
Msg.To[i] = '\0';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sprintf(Msg.Subject, "%s", Subj);
|
||||||
|
sprintf(Msg.FromAddress, "%s", aka2str(msgs.Aka));
|
||||||
|
Msg.Written = time(NULL);
|
||||||
|
Msg.Arrived = time(NULL);
|
||||||
|
Msg.Local = TRUE;
|
||||||
|
|
||||||
|
if (strchr(Flavor, 'c'))
|
||||||
|
Msg.Crash = TRUE;
|
||||||
|
if (strchr(Flavor, 'p'))
|
||||||
|
Msg.Private = TRUE;
|
||||||
|
if (strchr(Flavor, 'h'))
|
||||||
|
Msg.Hold = TRUE;
|
||||||
|
|
||||||
|
switch (msgs.Type) {
|
||||||
|
case LOCALMAIL:
|
||||||
|
Msg.Localmail = TRUE;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case NETMAIL:
|
||||||
|
Msg.Netmail = TRUE;
|
||||||
|
sprintf(Msg.ToAddress, "%s", ascfnode(parsefaddr(To), 0xff));
|
||||||
|
break;
|
||||||
|
|
||||||
|
case ECHOMAIL:
|
||||||
|
Msg.Echomail = TRUE;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case NEWS:
|
||||||
|
Msg.News = TRUE;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
temp = calloc(PATH_MAX, sizeof(char));
|
||||||
|
sprintf(temp, "\001MSGID: %s %08lx", aka2str(msgs.Aka), sequencer());
|
||||||
|
MsgText_Add2(temp);
|
||||||
|
Msg.MsgIdCRC = upd_crc32(temp, crc, strlen(temp));
|
||||||
|
Msg.ReplyCRC = 0xffffffff;
|
||||||
|
sprintf(temp, "\001PID: MBSE-FIDO %s (%s-%s)", VERSION, OsName(), OsCPU());
|
||||||
|
MsgText_Add2(temp);
|
||||||
|
if (msgs.Charset != FTNC_NONE) {
|
||||||
|
sprintf(temp, "\001CHRS: %s", getchrs(msgs.Charset));
|
||||||
|
} else {
|
||||||
|
sprintf(temp, "\001CHRS: %s", getchrs(FTNC_LATIN_1));
|
||||||
|
}
|
||||||
|
MsgText_Add2(temp);
|
||||||
|
sprintf(temp, "\001TZUTC: %s", gmtoffset(tt));
|
||||||
|
MsgText_Add2(temp);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Add the file as text
|
||||||
|
*/
|
||||||
|
Msg_Write(tp);
|
||||||
|
fclose(tp);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Finish the message
|
||||||
|
*/
|
||||||
|
aka = calloc(40, sizeof(char));
|
||||||
|
MsgText_Add2((char *)"");
|
||||||
|
MsgText_Add2(TearLine());
|
||||||
|
|
||||||
|
if (msgs.Aka.point)
|
||||||
|
sprintf(aka, "(%d:%d/%d.%d)", msgs.Aka.zone, msgs.Aka.net, msgs.Aka.node, msgs.Aka.point);
|
||||||
|
else
|
||||||
|
sprintf(aka, "(%d:%d/%d)", msgs.Aka.zone, msgs.Aka.net, msgs.Aka.node);
|
||||||
|
|
||||||
|
if (strlen(msgs.Origin))
|
||||||
|
sprintf(temp, " * Origin: %s %s", msgs.Origin, aka);
|
||||||
|
else
|
||||||
|
sprintf(temp, " * Origin: %s %s", CFG.origin, aka);
|
||||||
|
|
||||||
|
MsgText_Add2(temp);
|
||||||
|
free(aka);
|
||||||
|
|
||||||
|
Msg_AddMsg();
|
||||||
|
Msg_UnLock();
|
||||||
|
Syslog('+', "Posted message %ld", Msg.Id);
|
||||||
|
|
||||||
|
if (msgs.Type != LOCALMAIL) {
|
||||||
sprintf(temp, "%s/tmp/%smail.jam", getenv("MBSE_ROOT"), (msgs.Type == ECHOMAIL) ? "echo" : "net");
|
sprintf(temp, "%s/tmp/%smail.jam", getenv("MBSE_ROOT"), (msgs.Type == ECHOMAIL) ? "echo" : "net");
|
||||||
if ((fp = fopen(temp, "a")) != NULL) {
|
if ((fp = fopen(temp, "a")) != NULL) {
|
||||||
fprintf(fp, "%s %lu\n", msgs.Base, Msg.Id);
|
fprintf(fp, "%s %lu\n", msgs.Base, Msg.Id);
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
}
|
}
|
||||||
free(temp);
|
|
||||||
Msg_Close();
|
|
||||||
CreateSema((char *)"mailout");
|
CreateSema((char *)"mailout");
|
||||||
|
}
|
||||||
|
|
||||||
return;
|
free(temp);
|
||||||
|
Msg_Close();
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user