aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-28Fixed possible read to invalid memory location (thanks to Alexander Konovalov).Vincent Richard1-1/+1
2011-01-21Fixed possible infinite loop (thanks to John van der Kamp, Zarafa).Vincent Richard1-1/+1
2010-12-10Fixed boundary parsing (thanks to John van der Kamp, Zarafa).Vincent Richard1-2/+41
2010-12-08No extra space between ':' and '<' in MAIL FROM and RCPT TO. Wait for server ↵Vincent Richard1-2/+3
response after QUIT and before closing connection.
2010-10-20Return failed email address in exception for RCPT TO.Vincent Richard1-1/+1
2010-10-19Added support for DRAFT flag.Vincent Richard3-1/+7
2010-10-18Fold non-encoded lines in the case there is no whitespace in them.Vincent Richard1-1/+34
2010-10-12Fixed missing whitespace in text parsing.Vincent Richard1-0/+12
2010-10-12Better RFC-2047 encoding.Vincent Richard2-147/+169
2010-10-12Encode quotation marks in QP/RFC-2047.Vincent Richard1-0/+1
2010-09-07Added an option to recognize inline objects as attachments.Vincent Richard1-42/+54
2010-09-07Support filenames with charset (thanks to John van der Kamp, Zarafa).Vincent Richard1-2/+10
2010-09-06Fixed extraction of root part body.Vincent Richard1-2/+5
2010-08-19Fixed pointer-type argument for gnutls_credentials_set (thanks to Mike Smellie).Vincent Richard1-2/+2
2010-08-17Encode TSpecials in RFC-2231 encoded chunks.Vincent Richard1-0/+12
2010-08-16Added stubs for timeout handler (#3045770).Vincent Richard1-3/+8
2010-08-05Connection time out.Vincent Richard4-10/+121
2010-07-17Take account of charset recommended encoding (thanks to John van der Kamp, ↵Vincent Richard1-8/+19
Zarafa).
2010-06-23Do not generate 7-bit value for parameter if RFC-2231 extended value is ↵Vincent Richard1-6/+43
generated (thanks to Eugene A. Shatokhin).
2010-05-23Improved automatic encoding selection. Added helper functions on body for ↵Vincent Richard10-71/+226
setting contents, type, charset and encoding.
2010-05-21Always encode special charsets.Vincent Richard3-22/+90
2010-05-21Fixed missing #include.Vincent Richard1-0/+1
2010-05-20Fixed case-sensitive include.Vincent Richard1-1/+1
2010-05-20Fixed type size.Vincent Richard1-7/+7
2010-05-18Added helper function to construct parsed message from net message. Splitted ↵Vincent Richard8-198/+561
IMAP source files.
2010-05-14Fixed parsing of header field value with no data on the first line (folding).Vincent Richard1-0/+6
2010-05-04Use STARTTLS for additional connections (thanks to Andrei).Vincent Richard1-1/+1
2010-04-13Register non-standard encoding names.Vincent Richard1-0/+4
2010-04-08Fixed parsing of non-significant whitespaces in field values.Vincent Richard1-3/+23
2010-03-16Fixed calls to 'empty' instead of 'clear' (thanks to John van der Kamp, from ↵Vincent Richard1-2/+2
Zarafa).
2010-03-16Return false instead of throwing an exception if file does not exist in ↵Vincent Richard1-0/+12
isDirectory(), isFile(), canRead() and canWrite().
2010-03-10Fixed compilation issue with 'const'.Vincent Richard1-1/+1
2010-03-10Fixed bug #2966885: memory leak caused by strong ref (thanks to tuxx from SF).Vincent Richard1-2/+2
2010-02-10Don't quote if no encoding is needed.Vincent Richard1-1/+2
2010-02-10Allow spaces to appear in mailbox display name without encoding or quoting. ↵Vincent Richard1-2/+3
Encode or quote if CR or LF is present.
2010-02-03Fixed compilation issue on Windows.Vincent Richard1-1/+1
2010-02-03Use homemade isSpace() instead of std::ispace() for portability.Vincent Richard1-1/+1
2010-02-03Removed wide-char support.Vincent Richard3-35/+0
2010-02-01Fixed memory leak.Vincent Richard1-1/+1
2010-02-01Fixed bug #2927077: account for multi-byte charsets in invalid sequence output.Vincent Richard1-14/+24
2010-02-01Fixed bug #2927077: account for multi-byte charsets in invalid sequence output.Vincent Richard1-1/+12
2010-01-20Fixed bug #2933667: CRLF filter broken.Vincent Richard1-2/+2
2009-12-13Makes 'To' optional, like 'Cc' and 'Bcc'. An exception is still thrown if ↵Vincent Richard1-2/+8
there are no recipients at all (see bug #2912670).
2009-12-08Fixed non thread-safe getLocalCharset() function (thanks to Bartek Szurgot).Vincent Richard1-0/+44
2009-12-08Fixed not exception-safe constructor, which could lead to possible memory ↵Vincent Richard7-44/+36
leak (thanks to Bartek Szurgot). Get rid of const-ness on factories.
2009-12-08Initialize multi-threading for GNUTLS/GCrypt (thanks to Bartek Szurgot).Vincent Richard1-0/+19
2009-12-01Fixed directory renaming.Vincent Richard1-1/+5
2009-12-01Added option to return ISO week-numbering instead of default calendar-numbering.Vincent Richard1-2/+2
2009-11-30Added block size on sockets to allow different buffer size for SSL.Vincent Richard7-12/+46
2009-11-12Quote mailbox name instead of encoding it whenever it's possible.Vincent Richard2-4/+16