aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2013-04-26 12:43:28 +0000
committerVincent Richard <[email protected]>2013-04-26 12:43:28 +0000
commit28c386f54ec2ade7bd45c361b739bd7d47075ac2 (patch)
tree092dd3c8bd503f1a6579ab49089a5781b050c49d
parentFixed double read of response. (diff)
downloadvmime-28c386f54ec2ade7bd45c361b739bd7d47075ac2.tar.gz
vmime-28c386f54ec2ade7bd45c361b739bd7d47075ac2.zip
Fixed issue #37.
-rw-r--r--src/net/imap/IMAPMessage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/imap/IMAPMessage.cpp b/src/net/imap/IMAPMessage.cpp
index 59f20f00..6db00768 100644
--- a/src/net/imap/IMAPMessage.cpp
+++ b/src/net/imap/IMAPMessage.cpp
@@ -463,7 +463,7 @@ void IMAPMessage::processFetchResponse
mailboxList to;
IMAPUtils::convertAddressList(*(env->env_to()), to);
- hdr->To()->setValue(to);
+ hdr->To()->setValue(to.toAddressList());
// Sender
mailboxList sender;