parent
8e80564cf5
commit
53b109dd2b
@ -0,0 +1,15 @@
|
||||
/** @file test/secrets.hh
|
||||
* @brief variable declarations for working test data
|
||||
*
|
||||
* Populate those variables in a custom file secrets.cc by defining populate_secrets() accordingly.
|
||||
*/
|
||||
#include "../src/login.hh"
|
||||
|
||||
using namespace pEp::Mail;
|
||||
|
||||
std::string mailaddress;
|
||||
std::string password;
|
||||
Login lsend; // = Login(Login::smtps, "smtp.example.com", 587, "username", password, Login::auth_method_t::START_TLS);
|
||||
Login lrecv; // = Login(Login::imaps, "imap.example.com", 143, "username", password, Login::auth_method_t::START_TLS);
|
||||
|
||||
void populate_secrets();
|
Loading…
Reference in new issue