1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
Patches
The following patches are applied by Zarafa to the vmime library, in order of creation date.
vmime-charset-catch.diff
Early catches an exception of vmime when iconv was unable to convert a word from or to the requested charsets. This makes broken mails with invalid characters for a valid charset still be able to deliver. We'd rather have an email with a ? sign than a FallbackDelivery for the user.
vmime-missing-boundary.diff
Broken emails without a final boundary will still be able to deliver with all attachments. The final part without the boundary will be treated as an attachment.
vmime-allow-no-recips-and-senders.diff
Makes the messageBuilder helper generate an mail without To or Cc headers. This way, an email with only Bcc entries will still be sent. This feature is mostly used by people to mask a mailing list or invitation that should be send to alot of people.
vmime-bmoted-printable.diff
We've seen broken mails with an invalid encoding. Unsure what 'bmoted-printable' actually is, we make vmime treat it as normal quoted-printable.
vmime-strip-header-endspaces.diff
This patch makes sure that vmime does not parse trailing spaces on an header. Otherwise vmime will throw an exception and a fallback delivery wil be started.
vmime-attachfnamelen.diff
Fixes parsing of an attachment filename that is between 66 and 76 characters long.
vmime-remove-bcc.diff
Bcc headers should not be send to the SMTP server. Some SMTP server automatically strip this header (Postfix, qmail), and others have an option for this (Exim).
vmime-mdn-disposition.diff
Fixes a small but crusial typo in a header of an MDN (read receipt) mail.
vmime-mdn-final-recipient.diff
A header with the final recipient information was created, but not added to the MDN email. This patch adds this information to the mail.
vmime-broken-locale-error.diff
On [WWW] Debian machines, you need to configure the locales (languages) that will be used on the system. When you use a locale (eg. LC_MESSAGES=nl_NL, but did not configure your distribution to have this locale present on your system, a NULL pointer would have thrown an exception in the std::string class. This makes sure that exception never happends.
vmime-qp-starts-on-second-line.diff
Headers can be broken over multiple lines in an email. When the wrapped line directly started with quoted-printable, vmime copied this text as normal text, in stead of parsing it as quoted-printable.
vmime-quoted-printable-specials.diff
This patch adds some characters that should be "escaped" in quoted-printable. With this fix you can have these characters in a fullname of an email address.
vmime-header-value-on-next-line.diff
When an email header has the data part on the second line, vmime was unable to parse this data and skip adds the header as empty to it's internal structures. This makes sure these headers are still correctly parsed.
vmime-oe-compatibility.diff
Fixes attachment names in Outlook Express which are long and have high characters.
vmime-unicode-1-1-utf-7-charset.diff
Some mails have a special definition of the utf-7 character set, named unicode-1-1-utf-7. Since this name is not defined by iconv, we rename it to utf-7.
vmime-out-of-bounds-copy.diff
When a line in a plain text mail starts with a '.', the character needs to be escaped. VMime has a special filter for this, but due to a bug in this filter, a second line starting with a '.' would trigger a wrong buffer copy, and your email would contain double parts.
vmime-default-transfer-encoding.diff
Some broken generators may set the Content-Tranfer-Encoding header, but did not set any value. We'll assume the default value '7bit'.
vmime-contentid-without-at.diff
Enables re-generation of broken content-id's that had no @ sign in them.
vmime-socket-backport-and-timeout-fix.diff
Small partial backport of some socket handling code from 0.8.1
Only receiving data is handled better. It also has a timeout, when receiving data from a socket hasn't worked for 5 minutes. This isn't present in 0.8.1.
vmime-double-empty-boundary.diff
When an email contains the same boundary to announce a new body part directly one after another, vmime would have crashed because the body part added to the object with size of (size_type)(-1). Thus having a body part of 4294967294 bytes on 32bit and 18446744073709551615 bytes on 64bit systems.
vmime-quoted-printable-encode-questionmark.diff
Special characters break the quotedprintable encoding when they are typed after a ?. This fix also encodes ?-characters, so we can't break the encoding with this trick.
vmime-gcc-4.3-support.diff
Adds required include headers to compile with g++-4.3.
vmime-charset-output-buffer.diff
Fixes iconv conversion with source buffers >64Kb not to add a '?' and skip one byte of the input buffer.
vmime-timezone-name.diff
Fixes dates in headers which use a timezone definition, instead of a numeric timezone offset.
vmime-socket-tcp-nodelay.diff
Adds the TCP_NODELAY flag to vmime sockets. This makes the SMTP connection much faster.
vmime-threading-remove-static_non-abi-change.diff
Workaround a static variable in the smart_ptr class using a pthread mutex, which fixes multi-threading issues in libvmime.
vmime-gcc-4.4-support.diff
Adds required include headers to compile with g++-4.4.
vmime-plain-bodycopy.diff
When constructing a plaintext only body without attachments, a copy of the body was made to set as the real body, and thus
removing all the multiparts. However, the same reference is removed before setting the new body, thus invalidating that body
we wish to copy, possibly resulting in a crash.
|