Skip to content
/ imap Public

IMAP Client implementation for Poco c++ framework

Notifications You must be signed in to change notification settings

kmribti/imap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

IMAP client implmentation using Poco C++ framework, work are in progress but the code are quite usable for basic operations.

This code has been tested only with VS2015 build type.

Sample code:

   
   typedef std::vector<IMAPClientSession::FolderInfo> folders_type;
   
   try {
      IMAPClientSession  imap(host, port);
	  imap.login (user, password);
	  
	  folders_type  Folders;
	  
	  imap.listFolders("", Folders);
	  
	  for (auto f: Folders)
	  {
	      std::cout << f.name << std::endl;
	  }
	  
	} catch (IMAPException e) {
	   std::cout << e.message() << std::endl;
	}
	  
   

About

IMAP Client implementation for Poco c++ framework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages