aboutsummaryrefslogtreecommitdiff
path: root/mailutils/mail.h
blob: d1d783055a3b703b84d6e7fdacfc19ec14c190b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* vi: set sw=4 ts=4: */
/*
 * helper routines
 *
 * Copyright (C) 2008 by Vladimir Dronnikov <dronnikov@gmail.com>
 *
 * Licensed under GPLv2, see file LICENSE in this source tree.
 */

struct globals {
	pid_t helper_pid;
	unsigned timeout;
	unsigned verbose;
	unsigned opts;
	char *user;
	char *pass;
	FILE *fp0; // initial stdin
	char *opt_charset;
	char *content_type;
};

#define G (*ptr_to_globals)
#define timeout         (G.timeout  )
#define verbose         (G.verbose  )
#define opts            (G.opts     )
//#define user            (G.user     )
//#define pass            (G.pass     )
//#define fp0             (G.fp0      )
//#define opt_charset     (G.opt_charset)
//#define content_type    (G.content_type)
#define INIT_G() do { \
	SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
	G.opt_charset = (char *)CONFIG_FEATURE_MIME_CHARSET; \
	G.content_type = (char *)"text/plain"; \
} while (0)

//char FAST_FUNC *parse_url(char *url, char **user, char **pass);

void launch_helper(const char **argv) FAST_FUNC;
void get_cred_or_die(int fd) FAST_FUNC;

char *send_mail_command(const char *fmt, const char *param) FAST_FUNC;

void encode_base64(char *fname, const char *text, const char *eol) FAST_FUNC;