You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if mbuf already ends with \r\n, the resulting buffer will end with "\r\r\n",
from here the error message "contains bare LF's".
I changed only the "else" with this one:
"else if (mbuf[len-2] != '\r')"
the second problem was that when splittng an attachment in lines,
the "vinicio qmail fix" was missing at all, so some illegal line was sent
to the mail server (unlikely I can't find this part in the current code)
The text was updated successfully, but these errors were encountered:
Hi,
I'm using mailsend1.17b2 and had the error in the subject
when seng emails via some mailserver (Hmailserver).
I have made a fix but unlikely the code on the trunk is changed too much,
so I can't send a patch.
the main problem was in this code
if mbuf already ends with \r\n, the resulting buffer will end with "\r\r\n",
from here the error message "contains bare LF's".
I changed only the "else" with this one:
"else if (mbuf[len-2] != '\r')"
the second problem was that when splittng an attachment in lines,
the "vinicio qmail fix" was missing at all, so some illegal line was sent
to the mail server (unlikely I can't find this part in the current code)
The text was updated successfully, but these errors were encountered: