2016-07-13 13:52:39 +00:00
|
|
|
#include <sys/types.h>
|
2016-07-11 12:23:41 +00:00
|
|
|
|
2016-08-08 14:28:25 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <time.h>
|
2018-01-25 12:09:45 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#if !defined(PATH_MAX)
|
|
|
|
#define PATH_MAX 4096
|
|
|
|
#endif
|
2016-08-08 14:28:25 +00:00
|
|
|
|
2016-07-11 12:23:41 +00:00
|
|
|
struct message;
|
|
|
|
|
2016-07-13 13:52:39 +00:00
|
|
|
// blaze822.c
|
|
|
|
|
|
|
|
struct message *blaze822(char *file); // just header
|
2016-07-14 13:21:37 +00:00
|
|
|
struct message *blaze822_file(char *file); // header + body (read(2))
|
|
|
|
struct message *blaze822_mmap(char *file); // header + body (mmap(2))
|
2016-07-13 13:52:39 +00:00
|
|
|
struct message *blaze822_mem(char *buf, size_t len); // header + body
|
|
|
|
|
2016-07-11 12:23:41 +00:00
|
|
|
char *blaze822_hdr_(struct message *mesg, const char *hdr, size_t len);
|
|
|
|
#define blaze822_hdr(mesg, hdr) blaze822_hdr_(mesg, "\0" hdr ":", 2+strlen((hdr)))
|
2016-07-16 17:44:21 +00:00
|
|
|
char *blaze822_chdr(struct message *mesg, const char *chdr);
|
2016-07-11 12:23:41 +00:00
|
|
|
|
2016-07-14 13:40:48 +00:00
|
|
|
char *blaze822_next_header(struct message *mesg, char *prev);
|
|
|
|
|
2016-07-13 13:52:39 +00:00
|
|
|
void blaze822_free(struct message *mesg);
|
2016-07-11 14:28:22 +00:00
|
|
|
|
2016-07-11 12:23:41 +00:00
|
|
|
time_t blaze822_date(char *);
|
|
|
|
char *blaze822_addr(char *, char **, char **);
|
2016-07-13 13:52:39 +00:00
|
|
|
char *blaze822_body(struct message *mesg);
|
|
|
|
size_t blaze822_bodylen(struct message *mesg);
|
2016-07-16 20:18:29 +00:00
|
|
|
size_t blaze822_headerlen(struct message *mesg);
|
2016-07-13 13:52:39 +00:00
|
|
|
|
2016-08-06 17:27:02 +00:00
|
|
|
char *blaze822_orig_header(struct message *mesg);
|
|
|
|
|
2016-07-13 13:52:39 +00:00
|
|
|
// rfc2047.c
|
2016-07-11 21:40:00 +00:00
|
|
|
|
|
|
|
int blaze822_decode_rfc2047(char *, char *, size_t, char *);
|
2016-11-08 15:19:26 +00:00
|
|
|
int blaze822_decode_qp(char *start, char *stop, char **deco, size_t *decleno, int underscore);
|
2016-07-13 13:52:39 +00:00
|
|
|
int blaze822_decode_b64(char *start, char *stop, char **deco, size_t *decleno);
|
2016-07-11 21:40:00 +00:00
|
|
|
|
2016-07-13 13:53:27 +00:00
|
|
|
// rfc2045.c
|
|
|
|
|
|
|
|
int blaze822_check_mime(struct message *msg);
|
2016-07-13 19:56:16 +00:00
|
|
|
int blaze822_mime_body(struct message *msg, char **cto, char **bodyo, size_t *bodyleno, char **bodychunko);
|
2016-07-13 13:53:27 +00:00
|
|
|
int blaze822_multipart(struct message *msg, struct message **imsg);
|
2016-07-16 20:18:46 +00:00
|
|
|
int blaze822_mime_parameter(char *s, char *name, char **starto, char **stopo);
|
2016-07-17 19:51:41 +00:00
|
|
|
|
2016-08-02 14:13:25 +00:00
|
|
|
typedef enum { MIME_CONTINUE, MIME_STOP, MIME_PRUNE } blaze822_mime_action;
|
|
|
|
typedef blaze822_mime_action (*blaze822_mime_callback)(int, struct message *, char *, size_t);
|
|
|
|
blaze822_mime_action blaze822_walk_mime(struct message *, int, blaze822_mime_callback);
|
|
|
|
|
2017-04-06 18:59:41 +00:00
|
|
|
// rfc2231.c
|
|
|
|
|
|
|
|
int blaze822_mime2231_parameter(char *, char *, char *, size_t, char *);
|
|
|
|
|
2016-07-17 19:51:41 +00:00
|
|
|
// seq.c
|
|
|
|
|
|
|
|
char *blaze822_seq_open(char *file);
|
|
|
|
int blaze822_seq_load(char *map);
|
|
|
|
long blaze822_seq_find(char *ref);
|
2016-07-17 22:09:23 +00:00
|
|
|
|
|
|
|
|
2016-09-01 13:42:35 +00:00
|
|
|
char *blaze822_seq_cur(void);
|
2016-07-17 22:09:23 +00:00
|
|
|
int blaze822_seq_setcur(char *s);
|
|
|
|
|
|
|
|
struct blaze822_seq_iter {
|
|
|
|
long lines;
|
|
|
|
long cur;
|
|
|
|
long start;
|
|
|
|
long stop;
|
|
|
|
|
|
|
|
long line;
|
|
|
|
char *s;
|
|
|
|
};
|
|
|
|
|
|
|
|
char *blaze822_seq_next(char *map, char *range, struct blaze822_seq_iter *iter);
|
2018-01-07 20:13:59 +00:00
|
|
|
long blaze822_loop(int, char **, void (*)(char *));
|
|
|
|
long blaze822_loop1(char *arg, void (*cb)(char *));
|
2016-07-20 12:07:46 +00:00
|
|
|
char *blaze822_home_file(char *basename);
|
2016-07-29 13:15:57 +00:00
|
|
|
|
|
|
|
// filter.c
|
|
|
|
|
|
|
|
int filter(char *input, size_t inlen, char *cmd, char **outputo, size_t *outleno);
|
2016-08-08 14:28:25 +00:00
|
|
|
|
|
|
|
// mygmtime.c
|
|
|
|
|
|
|
|
time_t tm_to_secs(const struct tm *tm);
|
2016-10-05 12:44:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
// slurp.c
|
|
|
|
|
|
|
|
int slurp(char *filename, char **bufo, off_t *leno);
|
2017-03-13 14:50:41 +00:00
|
|
|
|
|
|
|
// safe_u8putstr.c
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
void safe_u8putstr(char *s0, size_t l, FILE *stream);
|
2017-05-23 13:16:27 +00:00
|
|
|
|
|
|
|
// pipeto.c
|
|
|
|
|
|
|
|
pid_t pipeto(const char *cmdline);
|
|
|
|
int pipeclose(pid_t pid);
|
|
|
|
|
2017-07-12 20:31:01 +00:00
|
|
|
// squeeze_slash.c
|
|
|
|
|
|
|
|
void squeeze_slash(char *);
|