Questions tagged [vmime]
14 questions
2
votes
1 answer
Access denied to the bucket ******
I am new to AWS and i am trying to export VM images from AWS EC2 to S3 bucket that I had already imported using VMImport/Export service . I tried to export using AWS CLI and SDK (python) as well , but both returns the same error :
An error occurred…

Nishad guru
- 33
- 2
- 5
2
votes
1 answer
vmime, libgnutls, and libgcrypt problem? Assertion failed!
I am developing an application in C++ to check the users email accounts. This application uses the vmime library to do the processing related to POP3/IMAP/SMTP protocols.
I designed the application to work continuously. So, it has to be stable…

Khaled
- 1,114
- 14
- 31
2
votes
2 answers
Best way for email synchronisation: POP3 UIDL, IMAP UID, message-ID
I'm making a mail client which work POP3 and IMAP. I'm programming the client in C++ with vmime api. My question is: What is the best way for synchronizing mail?
I think that identificator is good way but I don't know what is the best identificator…

tutuen
- 313
- 1
- 3
- 13
2
votes
1 answer
Unknown CMake command "CHECK_INCLUDE_FILE_CXX"
I tried running cmake to generate the build tools for linux on vmime with the latest source from git hub, it generated the following errors. Thoughts??
vmime$ /usr/local/bin/cmake -G "Unix Makefiles"
CMake Error at CMakeLists.txt:20 (INCLUDE):
…

rmak
- 21
- 2
1
vote
2 answers
VMime and odd "commercial" LGPL licensing?
Greetings,
I'm looking for a MIME library, which is available under the LGPL. After some googling, I found VMime. After browsing their site some, I came across the Licensing page, which confuses me a bit.
Firstly, they offer VMime under the terms…

BastiBen
- 19,679
- 11
- 56
- 86
0
votes
0 answers
vmime connects but is not visible in the project
I need to include the vmime library in a project. I am using macOS. I cloned the repository from the github, compiled the library, there are no problems with this. The headers are in /usr/local/include/vmime and the dylib file is in /usr/local/lib.…

Deekep
- 31
- 4
0
votes
1 answer
Compiling VMime in VC++
EDIT:
I'm trying to compile Vmime from the Vc++ project file they supported in the zip and i get this : http://pastebin.com/RXpBQ2Wa
I searched on google but no one had this kind of error : /

shym
- 299
- 1
- 10
0
votes
0 answers
unable to use makefile with make command
when I cd to the path contains the makefile and run make command(from the MINGW64.exe) I get this error:
$ make
"C:\Program Files (x86)\CMake\bin\cmake.exe" -HC:\vmime-master -BC:\vmime-master\build --check-build-system CMakeFiles\Makefile.cmake…

иван нецкин
- 13
- 5
0
votes
1 answer
how to identify whether mingw compiled library with success
i'm tackling the problem of compiling vmime library using this guide with MinGW. As this guide states, first i need to compile libiconv library with these commands(yep i'm new to MinGW):
$ tar -xvvzf libiconv-1.13.1.tar.gz
$ cd ./libiconv-1.13.1
$…

иван нецкин
- 13
- 5
0
votes
1 answer
Garbled text when constructing emails with vmime
Hey, my Qt C++ program has a part where it needs to send the first 128 characters or so of the output of a bash command to an email address. The output from the tty is captured in a text box in my gui called textEdit_displayOutput and put into my…
Klaus Fiedler
0
votes
1 answer
Vmime Extract body of Email
How to extract the text content part of an email using the VMIME lib? I use the following code:
vmime::ref body = Msg -> getBody();
vmime::ref cts = body -> getContents();
cts -> extract(out);
However,…

Cherish
- 187
- 1
- 2
- 13
0
votes
1 answer
error: ISO C++ forbids declaration of 'ref' with no type
I have got this error.The code is below:
I have integrated vmime libraries in my code.Now i need to implement timeout handler with specific timeout entry 30sec here, as per the requirement so implementing this part of the code.
class…

user862833
- 299
- 2
- 5
- 16
0
votes
1 answer
How to detect when a mail is sent in vmime
I send mail from vmime using the following code:
vmime::string urlString;
urlString="smtp://outgoing.verizon.net";
vmime::utility::url url(urlString);
vmime::ref tr =
g_session->getTransport(url,vmime::create…

user862833
- 299
- 2
- 5
- 16
0
votes
1 answer
gnutls configure error: checking for libgcrypt... no
I configured and compiled libgpg-error and libgcrypt but could not install(make install) as i donot have the root permissions.
When I try to configure libgnutls, i get this error.
tactuser@eqhttd01:gnutls-2.10.0 >./configure…

user862833
- 299
- 2
- 5
- 16