Share

POCO C++ Libraries

Tracker: Bugs

5 SMTPClientSession bug with 7BIT encoding - ID: 2890975
Last Update: Settings changed ( obiltschnig )

From <http://pocoproject.org/forum/viewtopic.php?f=12&t=1218>:

I use POCO 1.3.5. # I love this library.(^_^)

in line 456 MailMessage.cpp.
The Function contentTransferEncodingToString is below.
--
const std::string&
MailMessage::contentTransferEncodingToString(ContentTransferEncoding
encoding)
{
switch (encoding)
{
case ENCODING_7BIT:
! return CTE_8BIT;
case ENCODING_8BIT:
return CTE_8BIT;
case ENCODING_QUOTED_PRINTABLE:
return CTE_QUOTED_PRINTABLE;
case ENCODING_BASE64:
return CTE_BASE64;
default:
poco_bugcheck();
}
return CTE_7BIT;
}
--
Why in case ENCODING_7BIT , this function return CTE_8BIT ?
I think CTE_7BIT is correct. Is this a bug ?
Please teach me.


Nobody/Anonymous ( nobody ) - 2009-11-02 22:35

5

Closed

Fixed

Nobody/Anonymous

Net

None

Public


Comment ( 1 )

Date: 2009-11-02 22:39
Sender: obiltschnigProject Admin

fixed in 1.3.6


Attached File

No Files Currently Attached

Changes ( 4 )

Field Old Value Date By
status_id Open 2009-11-23 21:06 obiltschnig
allow_comments 1 2009-11-23 21:06 obiltschnig
close_date - 2009-11-23 21:06 obiltschnig
resolution_id None 2009-11-02 22:39 obiltschnig