jjohnson-airlink

Results 8 issues of jjohnson-airlink

Is it possible to get a better example of using defaultCertificateVerifier? example6.cpp only uses the version that accepts user input. Thanks!

I am having a problem with file attachments that have filenames between 63 and 74 characters long. My filename looks like this: 1234567890123456789012345678901234567890123456789012345678901234.txt70 But my email looks like this: Content-Description:...

I have the below message source. I am having trouble locating the attachments for this email. Can you tell me where I should be looking in vmime code for these...

I have this code I am working on getting the X-Envelope-To as a string. ``` if ( this->msg->getHeader()->hasField("X-Envelope-To") ) { std::ostringstream oss_x_envelope; vmime::utility::outputStreamAdapter ossAdapter_x_envelope(oss_x_envelope); vmime::mailbox x_envelope_mbx = *this->msg->getHeader()->findField("X-Envelope-To")->getValue().dynamicCast (); x_envelope_mbx.generate();...

I am having trouble finding examples of how to do simple things in vmime... How do you get the filename for an attachment? I have this code that does not...

Where is there an example of getting the charset for an email? I have: this->charset = string("iso-8859-1"); vmime::charset content_charset(this->charset); content_charset = *this->msg->getHeader()->findField(vmime::fields::CONTENT_TYPE)->getValue().dynamicCast vmime::charset(); And I don't even get an exception,...

I am having trouble with this code I am trying to get working in version 0.9 (Updating from version 0.7): It crashed at getAddressCount().... Where is a simple example of...

I am trying to update my vmime implementation from 0.7.1 to 0.9.1. I am having no luck finding good examples of extracting the attachments from an email... and this is...