a smtp client
[smtp.git] / config.h
blob078e3871ef4be65c891a503eda0d6352c66afec1
1 #define MAILLEN (1 << 21)
2 #define HOSTNAME "hostname"
3 #define SSL
5 struct account {
6 char *from;
7 char *server;
8 char *port;
9 char *user;
10 char *pass;
11 } accounts [] = {
12 {"me@myserver.sth", "smtp.myserver.sth", "465", "me", "pass"},