2010-12-20 09:42:39 +05:30
|
|
|
/* 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.
|
|
|
|
*/
|
2008-11-07 05:12:42 +05:30
|
|
|
|
|
|
|
struct globals {
|
|
|
|
pid_t helper_pid;
|
|
|
|
unsigned timeout;
|
2010-12-20 09:42:39 +05:30
|
|
|
unsigned verbose;
|
2008-11-07 05:12:42 +05:30
|
|
|
unsigned opts;
|
|
|
|
char *user;
|
|
|
|
char *pass;
|
|
|
|
FILE *fp0; // initial stdin
|
|
|
|
char *opt_charset;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define G (*ptr_to_globals)
|
|
|
|
#define timeout (G.timeout )
|
2010-12-20 09:42:39 +05:30
|
|
|
#define verbose (G.verbose )
|
2008-11-07 05:12:42 +05:30
|
|
|
#define opts (G.opts )
|
|
|
|
#define INIT_G() do { \
|
|
|
|
SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
|
|
|
|
G.opt_charset = (char *)CONFIG_FEATURE_MIME_CHARSET; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
//char FAST_FUNC *parse_url(char *url, char **user, char **pass);
|
|
|
|
|
2010-12-20 09:42:39 +05:30
|
|
|
void launch_helper(const char **argv) FAST_FUNC;
|
|
|
|
void get_cred_or_die(int fd) FAST_FUNC;
|
2008-11-07 05:12:42 +05:30
|
|
|
|
2010-12-20 09:42:39 +05:30
|
|
|
char *send_mail_command(const char *fmt, const char *param) FAST_FUNC;
|
2008-11-07 05:12:42 +05:30
|
|
|
|
2010-12-20 09:42:39 +05:30
|
|
|
void encode_base64(char *fname, const char *text, const char *eol) FAST_FUNC;
|