conn: with null certfile, do not verify the certificate
[smtp.git] / conf.h
blob4b2fe5eace4e0e03065a2bd181a8c0f0e1f4c967
1 #define HOSTNAME "hostname"
2 #define DPRINT(msg, len)
4 /* mails are matched against these accounts based on their from addresses */
5 struct account {
6 char *from; /* the from address to match */
7 char *server;
8 char *port;
9 char *user;
10 char *pass;
11 char *cert; /* root certificates PEM file */
12 } accounts [] = {
13 {"me@myserver.sth", "smtp.myserver.sth", "465", "me", "pass"},