/**
|
|
* @file email.c
|
|
* @brief File description for doxygen missing. FIXME
|
|
* @license GNU General Public License 3.0 - see LICENSE.txt
|
|
*/
|
|
|
|
#include "email.h"
|
|
|
|
PEP_STATUS email_sendto(PEP_SESSION session, const message *msg)
|
|
{
|
|
|
|
return PEP_STATUS_OK;
|
|
}
|
|
|
|
PEP_STATUS email_readnext(PEP_SESSION session, message **msg, PEP_transport_t **via)
|
|
{
|
|
|
|
return PEP_STATUS_OK;
|
|
}
|
|
|