A little change to the .flo format

This commit is contained in:
Michiel Broek 2004-07-11 15:22:04 +00:00
parent 715932fe49
commit 2e63f8d3d3
2 changed files with 11 additions and 3 deletions

View File

@ -5,6 +5,14 @@ v0.61.2 11-Jul-2004
libmbse.a: libmbse.a:
Added logging for obsolete .tic files in .flo files. Added logging for obsolete .tic files in .flo files.
When files are attached that should "leave" after sent (not
truncated or removed) they are now prepended with the @
character instead of no character. This is compatible with
ifcico but not with other mailers, but should do no harm
because most mailers only look for the ^ and # characters.
This is for test! Please check if you run mbcico together
with other mailers. Russell??
If you only use mbcico there will be no problems.
v0.61.1 20-Jun-2004 - 11-Jul-2004 v0.61.1 20-Jun-2004 - 11-Jul-2004

View File

@ -78,11 +78,11 @@ int attach(faddr noden, char *ofile, int mode, char flavor)
case LEAVE: case LEAVE:
if (strlen(CFG.dospath)) { if (strlen(CFG.dospath)) {
if (CFG.leavecase) if (CFG.leavecase)
sprintf(thefile, "%s", Unix2Dos(ofile)); sprintf(thefile, "@%s", Unix2Dos(ofile));
else else
sprintf(thefile, "%s", tu(Unix2Dos(ofile))); sprintf(thefile, "@%s", tu(Unix2Dos(ofile)));
} else { } else {
sprintf(thefile, "%s", ofile); sprintf(thefile, "@%s", ofile);
} }
break; break;