Hi
I was coding in c2 and I found a weird bug (weird
because of all the time it took us to find it being so
at the top of the usability features).
The bug is that when you are sending a mail with
attachments the very last character of the mail doesn't
get sent.
Attachments work with boundaries, but the last boundary
of a mail is special, because it has to tell to the
reader that it's going to end.
To tell that what it does is use the boundary like
this:
"--BOUNDARY--"
(note the two extra -- at the end).
Well, the problem is that SMTP sends this (I know this
is a SMTP bug, I debug until that conclusion, and my
functions are giving SMTP the correct information):
"--BOUNDARY-"
(note the lack of an extra - at the end)
Well, that's it hope you can work this out.
Later,
Pablo.
Logged In: YES
user_id=39885
Never mind, I fixed the problem.
Later, Pablo.