Fixed scanmail bug
This commit is contained in:
parent
fc990c8a85
commit
456ba2f627
@ -6,6 +6,8 @@ v0.71.4 12-Aug-2005
|
|||||||
Added extra debug logging to trace an SIGSEG when forwarding
|
Added extra debug logging to trace an SIGSEG when forwarding
|
||||||
files.
|
files.
|
||||||
Added error logmessage in case *.msg path isn't defined.
|
Added error logmessage in case *.msg path isn't defined.
|
||||||
|
Fixed a segfault when echomail.jam or netmail.jam is corrupted
|
||||||
|
when scanning for outgoing mail.
|
||||||
|
|
||||||
|
|
||||||
v0.71.3 13-Jun-2005 - 12-Aug-2005
|
v0.71.3 13-Jun-2005 - 12-Aug-2005
|
||||||
|
@ -77,7 +77,7 @@ void ScanMail(int DoAll)
|
|||||||
{
|
{
|
||||||
int DoFull = FALSE, i = 0;
|
int DoFull = FALSE, i = 0;
|
||||||
unsigned long msg;
|
unsigned long msg;
|
||||||
char *Fname = NULL, *temp, *path;
|
char *Fname = NULL, *temp, *msgstr, *path;
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
|
|
||||||
if (DoAll) {
|
if (DoAll) {
|
||||||
@ -90,11 +90,16 @@ void ScanMail(int DoAll)
|
|||||||
sprintf(Fname, "%s/tmp/echomail.jam", getenv("MBSE_ROOT"));
|
sprintf(Fname, "%s/tmp/echomail.jam", getenv("MBSE_ROOT"));
|
||||||
if ((fp = fopen(Fname, "r")) != NULL) {
|
if ((fp = fopen(Fname, "r")) != NULL) {
|
||||||
while ((fgets(temp, PATH_MAX - 1, fp)) != NULL) {
|
while ((fgets(temp, PATH_MAX - 1, fp)) != NULL) {
|
||||||
path = strtok(temp, " ");
|
path = strtok(temp, " \n\0");
|
||||||
msg = atol(strtok(NULL, "\n"));
|
msgstr = strtok(NULL, "\n\0");
|
||||||
Syslog('+', "Export message %lu from %s", msg, path);
|
if (path && msgstr) {
|
||||||
ScanOne(path, msg);
|
msg = atol(msgstr);
|
||||||
i++;
|
Syslog('+', "Export message %lu from %s", msg, path);
|
||||||
|
ScanOne(path, msg);
|
||||||
|
i++;
|
||||||
|
} else {
|
||||||
|
Syslog('!', "Ignored garbage line in %s", Fname);
|
||||||
|
}
|
||||||
Nopper();
|
Nopper();
|
||||||
}
|
}
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
@ -104,11 +109,16 @@ void ScanMail(int DoAll)
|
|||||||
sprintf(Fname, "%s/tmp/netmail.jam", getenv("MBSE_ROOT"));
|
sprintf(Fname, "%s/tmp/netmail.jam", getenv("MBSE_ROOT"));
|
||||||
if ((fp = fopen(Fname, "r")) != NULL) {
|
if ((fp = fopen(Fname, "r")) != NULL) {
|
||||||
while ((fgets(temp, PATH_MAX - 1, fp)) != NULL) {
|
while ((fgets(temp, PATH_MAX - 1, fp)) != NULL) {
|
||||||
path = strtok(temp, " ");
|
path = strtok(temp, " \n\0");
|
||||||
msg = atol(strtok(NULL, "\n"));
|
msgstr = strtok(NULL, "\n\0");
|
||||||
Syslog('+', "Export message %lu from %s", msg, path);
|
if (path && msgstr) {
|
||||||
ScanOne(path, msg);
|
msg = atol(msgstr);
|
||||||
i++;
|
Syslog('+', "Export message %lu from %s", msg, path);
|
||||||
|
ScanOne(path, msg);
|
||||||
|
i++;
|
||||||
|
} else {
|
||||||
|
Syslog('!', "Ignored garbage line in %s", Fname);
|
||||||
|
}
|
||||||
Nopper();
|
Nopper();
|
||||||
}
|
}
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
|
Reference in New Issue
Block a user