sm*: clean up sml, smq, and smr
[smtp.git] / conf.h
blobfa2d6bc62741a7a83ecd3873c1efe7cc0ad9c47d
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 int stls; /* enable starttls */
13 } accounts [] = {
14 {"me@myserver.sth", "smtp.myserver.sth", "465", "me", "pass"},