mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 07:40:12 +01:00
added zip support
This commit is contained in:
parent
69fa244dfa
commit
152351e373
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
#define VERSION "0.1.21"
|
#define VERSION "0.1.21"
|
||||||
|
|
||||||
#define BUILD 701
|
#define BUILD 704
|
||||||
|
|
||||||
#define HOSTID "mailarchiver"
|
#define HOSTID "mailarchiver"
|
||||||
|
|
||||||
@ -70,6 +70,7 @@
|
|||||||
#define DELIMITER ' '
|
#define DELIMITER ' '
|
||||||
#define BOUNDARY_LEN 255
|
#define BOUNDARY_LEN 255
|
||||||
#define MAX_ATTACHMENTS 16
|
#define MAX_ATTACHMENTS 16
|
||||||
|
#define MAX_ZIP_RECURSION_LEVEL 2
|
||||||
|
|
||||||
/* SQL stuff */
|
/* SQL stuff */
|
||||||
|
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <fcntl.h>
|
||||||
#include <piler.h>
|
#include <piler.h>
|
||||||
|
|
||||||
#ifdef HAVE_ZIP
|
#ifdef HAVE_ZIP
|
||||||
@ -38,6 +42,7 @@ void remove_xml(char *buf, int *html){
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef HAVE_ZIP
|
||||||
int extract_opendocument(struct session_data *sdata, struct _state *state, char *filename, char *prefix){
|
int extract_opendocument(struct session_data *sdata, struct _state *state, char *filename, char *prefix){
|
||||||
int errorp, i=0, len=0, html=0;
|
int errorp, i=0, len=0, html=0;
|
||||||
char buf[MAXBUFSIZE];
|
char buf[MAXBUFSIZE];
|
||||||
@ -69,6 +74,7 @@ int extract_opendocument(struct session_data *sdata, struct _state *state, char
|
|||||||
}
|
}
|
||||||
zip_fclose(zf);
|
zip_fclose(zf);
|
||||||
}
|
}
|
||||||
|
else syslog(LOG_PRIORITY, "%s: cannot extract '%s' from '%s'", sdata->ttmpfile, sb.name, filename);
|
||||||
|
|
||||||
if(state->bodylen > BIGBUFSIZE-1024) break;
|
if(state->bodylen > BIGBUFSIZE-1024) break;
|
||||||
}
|
}
|
||||||
@ -83,6 +89,60 @@ int extract_opendocument(struct session_data *sdata, struct _state *state, char
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int unzip_file(struct session_data *sdata, struct _state *state, char *filename, int *rec){
|
||||||
|
int errorp, i=0, len=0, fd;
|
||||||
|
char *p, extracted_filename[SMALLBUFSIZE], buf[MAXBUFSIZE];
|
||||||
|
struct zip *z;
|
||||||
|
struct zip_stat sb;
|
||||||
|
struct zip_file *zf;
|
||||||
|
|
||||||
|
(*rec)++;
|
||||||
|
|
||||||
|
z = zip_open(filename, 0, &errorp);
|
||||||
|
if(!z) return 1;
|
||||||
|
|
||||||
|
while(zip_stat_index(z, i, 0, &sb) == 0){
|
||||||
|
p = strrchr(sb.name, '.');
|
||||||
|
|
||||||
|
if(p && strcmp(get_attachment_extractor_by_filename((char*)sb.name), "other")){
|
||||||
|
|
||||||
|
snprintf(extracted_filename, sizeof(extracted_filename)-1, "%s-%d-%d%s", sdata->ttmpfile, *rec, i, p);
|
||||||
|
|
||||||
|
fd = open(extracted_filename, O_CREAT|O_RDWR, S_IRUSR|S_IWUSR);
|
||||||
|
if(fd != -1){
|
||||||
|
zf = zip_fopen_index(z, i, 0);
|
||||||
|
if(zf){
|
||||||
|
while((len = zip_fread(zf, buf, sizeof(buf))) > 0){
|
||||||
|
write(fd, buf, len);
|
||||||
|
}
|
||||||
|
zip_fclose(zf);
|
||||||
|
}
|
||||||
|
else syslog(LOG_PRIORITY, "%s: cannot extract '%s' from '%s'", sdata->ttmpfile, sb.name, extracted_filename);
|
||||||
|
|
||||||
|
close(fd);
|
||||||
|
|
||||||
|
extract_attachment_content(sdata, state, extracted_filename, get_attachment_extractor_by_filename(extracted_filename), rec);
|
||||||
|
|
||||||
|
unlink(extracted_filename);
|
||||||
|
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
syslog(LOG_PRIORITY, "%s: cannot open '%s'", sdata->ttmpfile, extracted_filename);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
zip_close(z);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
void read_content_with_popen(struct session_data *sdata, struct _state *state, char *cmd){
|
void read_content_with_popen(struct session_data *sdata, struct _state *state, char *cmd){
|
||||||
int len;
|
int len;
|
||||||
char buf[MAXBUFSIZE];
|
char buf[MAXBUFSIZE];
|
||||||
@ -157,9 +217,13 @@ void extract_attachment_content(struct session_data *sdata, struct _state *state
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strcmp(type, "zip") == 0 && *rec == 0){
|
if(strcmp(type, "zip") == 0){
|
||||||
(*rec)++;
|
if(*rec < MAX_ZIP_RECURSION_LEVEL){
|
||||||
|
unzip_file(sdata, state, filename, rec);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
syslog(LOG_PRIORITY, "%s: multiple recursion level zip attachment, skipping %s", sdata->ttmpfile, filename);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
#ifndef _EXTRACT_H
|
|
||||||
#define _EXTRACT_H
|
|
||||||
|
|
||||||
#include "defs.h"
|
|
||||||
|
|
||||||
void extract_attachment_content(struct session_data *sdata, struct _state *state, char *filename, char *type, int *rec);
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* _EXTRACT_H */
|
|
@ -13,7 +13,6 @@
|
|||||||
#include <decoder.h>
|
#include <decoder.h>
|
||||||
#include <list.h>
|
#include <list.h>
|
||||||
#include <rules.h>
|
#include <rules.h>
|
||||||
#include <extract.h>
|
|
||||||
#include <defs.h>
|
#include <defs.h>
|
||||||
#include <tai.h>
|
#include <tai.h>
|
||||||
#include <sig.h>
|
#include <sig.h>
|
||||||
@ -58,5 +57,7 @@ unsigned long add_new_folder(struct session_data *sdata, char *foldername, int p
|
|||||||
|
|
||||||
int store_index_data(struct session_data *sdata, struct _state *state, struct __data *data, uint64 id, struct __config *cfg);
|
int store_index_data(struct session_data *sdata, struct _state *state, struct __data *data, uint64 id, struct __config *cfg);
|
||||||
|
|
||||||
|
void extract_attachment_content(struct session_data *sdata, struct _state *state, char *filename, char *type, int *rec);
|
||||||
|
|
||||||
#endif /* _PILER_H */
|
#endif /* _PILER_H */
|
||||||
|
|
||||||
|
@ -25,11 +25,14 @@ OBJS = import_helper.o
|
|||||||
|
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
|
|
||||||
all: $(OBJS) parser debug import
|
all: $(OBJS) parser debug import ptest
|
||||||
|
|
||||||
parser: parser.c ../src/libpiler.a
|
parser: parser.c ../src/libpiler.a
|
||||||
$(CC) $(CFLAGS) $(INCDIR) $(DEFS) -o $@ $< -lpiler $(LIBS) $(LIBDIR)
|
$(CC) $(CFLAGS) $(INCDIR) $(DEFS) -o $@ $< -lpiler $(LIBS) $(LIBDIR)
|
||||||
|
|
||||||
|
ptest: ptest.c ../src/libpiler.a
|
||||||
|
$(CC) $(CFLAGS) $(INCDIR) $(DEFS) -o $@ $< -lpiler $(LIBS) $(LIBDIR)
|
||||||
|
|
||||||
debug: debug.c ../src/libpiler.a
|
debug: debug.c ../src/libpiler.a
|
||||||
$(CC) $(CFLAGS) $(INCDIR) $(DEFS) -o $@ $< -lpiler $(LIBS) $(LIBDIR)
|
$(CC) $(CFLAGS) $(INCDIR) $(DEFS) -o $@ $< -lpiler $(LIBS) $(LIBDIR)
|
||||||
|
|
||||||
@ -44,7 +47,7 @@ import: import.c ../src/libpiler.a
|
|||||||
install:
|
install:
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f parser debug import
|
rm -f parser debug import ptest
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile
|
rm -f Makefile
|
||||||
|
449
test/ptest.c
Normal file
449
test/ptest.c
Normal file
@ -0,0 +1,449 @@
|
|||||||
|
/*
|
||||||
|
* pilerimport.c, SJ
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <time.h>
|
||||||
|
#include <locale.h>
|
||||||
|
#include <getopt.h>
|
||||||
|
#include <syslog.h>
|
||||||
|
#include <piler.h>
|
||||||
|
|
||||||
|
|
||||||
|
#define SKIPLIST "junk,trash,spam,draft"
|
||||||
|
#define MBOX_ARGS 1024
|
||||||
|
|
||||||
|
extern char *optarg;
|
||||||
|
extern int optind;
|
||||||
|
|
||||||
|
int quiet=0;
|
||||||
|
|
||||||
|
int connect_to_imap_server(int sd, int *seq, char *imapserver, char *username, char *password);
|
||||||
|
int list_folders(int sd, int *seq, char *folders, int foldersize);
|
||||||
|
int process_imap_folder(int sd, int *seq, char *folder, struct session_data *sdata, struct __data *data, struct __config *cfg);
|
||||||
|
|
||||||
|
|
||||||
|
int parse_it(char *filename, struct session_data *sdata, struct __data *data, struct __config *cfg){
|
||||||
|
int i, rc=ERR, fd;
|
||||||
|
struct stat st;
|
||||||
|
struct _state state;
|
||||||
|
|
||||||
|
|
||||||
|
init_session_data(sdata);
|
||||||
|
|
||||||
|
if(stat(filename, &st) != 0){
|
||||||
|
printf("cannot stat() %s\n", filename);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(S_ISREG(st.st_mode) == 0){
|
||||||
|
printf("%s is not a file\n", filename);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
fd = open(filename, O_RDONLY);
|
||||||
|
if(fd == -1){
|
||||||
|
printf("cannot open %s\n", filename);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
close(fd);
|
||||||
|
|
||||||
|
snprintf(sdata->filename, SMALLBUFSIZE-1, "%s", filename);
|
||||||
|
|
||||||
|
sdata->tot_len = st.st_size;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
sdata->sent = 0;
|
||||||
|
|
||||||
|
state = parse_message(sdata, 1, cfg);
|
||||||
|
post_parse(sdata, &state, cfg);
|
||||||
|
|
||||||
|
unlink(sdata->tmpframe);
|
||||||
|
|
||||||
|
for(i=1; i<=state.n_attachments; i++) unlink(state.attachments[i].internalname);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int import_from_mailbox(char *mailbox, struct session_data *sdata, struct __data *data, struct __config *cfg){
|
||||||
|
FILE *F, *f=NULL;
|
||||||
|
int rc=ERR, tot_msgs=0, ret=OK;
|
||||||
|
char buf[MAXBUFSIZE], fname[SMALLBUFSIZE];
|
||||||
|
time_t t;
|
||||||
|
|
||||||
|
|
||||||
|
F = fopen(mailbox, "r");
|
||||||
|
if(!F){
|
||||||
|
printf("cannot open mailbox: %s\n", mailbox);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
t = time(NULL);
|
||||||
|
|
||||||
|
while(fgets(buf, sizeof(buf)-1, F)){
|
||||||
|
|
||||||
|
if(buf[0] == 'F' && buf[1] == 'r' && buf[2] == 'o' && buf[3] == 'm' && buf[4] == ' '){
|
||||||
|
tot_msgs++;
|
||||||
|
if(f){
|
||||||
|
fclose(f);
|
||||||
|
rc = parse_it(fname, sdata, data, cfg);
|
||||||
|
if(rc == ERR) ret = ERR;
|
||||||
|
unlink(fname);
|
||||||
|
|
||||||
|
if(quiet == 0) printf("processed: %7d\r", tot_msgs); fflush(stdout);
|
||||||
|
}
|
||||||
|
|
||||||
|
snprintf(fname, sizeof(fname)-1, "%ld-%d", t, tot_msgs);
|
||||||
|
f = fopen(fname, "w+");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(f) fprintf(f, "%s", buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(f){
|
||||||
|
fclose(f);
|
||||||
|
rc = parse_it(fname, sdata, data, cfg);
|
||||||
|
if(rc == ERR) ret = ERR;
|
||||||
|
unlink(fname);
|
||||||
|
|
||||||
|
if(quiet == 0) printf("processed: %7d\r", ++tot_msgs); fflush(stdout);
|
||||||
|
}
|
||||||
|
|
||||||
|
fclose(F);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int import_mbox_from_dir(char *directory, struct session_data *sdata, struct __data *data, int *tot_msgs, struct __config *cfg){
|
||||||
|
DIR *dir;
|
||||||
|
struct dirent *de;
|
||||||
|
int rc=ERR, ret=OK;
|
||||||
|
char fname[SMALLBUFSIZE];
|
||||||
|
struct stat st;
|
||||||
|
|
||||||
|
dir = opendir(directory);
|
||||||
|
if(!dir){
|
||||||
|
printf("cannot open directory: %s\n", directory);
|
||||||
|
return ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
while((de = readdir(dir))){
|
||||||
|
if(strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
|
||||||
|
|
||||||
|
snprintf(fname, sizeof(fname)-1, "%s/%s", directory, de->d_name);
|
||||||
|
|
||||||
|
if(stat(fname, &st) == 0){
|
||||||
|
if(S_ISDIR(st.st_mode)){
|
||||||
|
rc = import_mbox_from_dir(fname, sdata, data, tot_msgs, cfg);
|
||||||
|
if(rc == ERR) ret = ERR;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
if(S_ISREG(st.st_mode)){
|
||||||
|
rc = import_from_mailbox(fname, sdata, data, cfg);
|
||||||
|
if(rc == OK) (*tot_msgs)++;
|
||||||
|
else ret = ERR;
|
||||||
|
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("%s is not a file\n", fname);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("cannot stat() %s\n", fname);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
closedir(dir);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int import_from_maildir(char *directory, struct session_data *sdata, struct __data *data, int *tot_msgs, struct __config *cfg){
|
||||||
|
DIR *dir;
|
||||||
|
struct dirent *de;
|
||||||
|
int rc=ERR, ret=OK;
|
||||||
|
char fname[SMALLBUFSIZE];
|
||||||
|
struct stat st;
|
||||||
|
|
||||||
|
dir = opendir(directory);
|
||||||
|
if(!dir){
|
||||||
|
printf("cannot open directory: %s\n", directory);
|
||||||
|
return ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
while((de = readdir(dir))){
|
||||||
|
if(strcmp(de->d_name, ".") == 0 || strcmp(de->d_name, "..") == 0) continue;
|
||||||
|
|
||||||
|
snprintf(fname, sizeof(fname)-1, "%s/%s", directory, de->d_name);
|
||||||
|
|
||||||
|
if(stat(fname, &st) == 0){
|
||||||
|
if(S_ISDIR(st.st_mode)){
|
||||||
|
rc = import_from_maildir(fname, sdata, data, tot_msgs, cfg);
|
||||||
|
if(rc == ERR) ret = ERR;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
if(S_ISREG(st.st_mode)){
|
||||||
|
rc = parse_it(fname, sdata, data, cfg);
|
||||||
|
if(rc == OK) (*tot_msgs)++;
|
||||||
|
else ret = ERR;
|
||||||
|
|
||||||
|
if(quiet == 0) printf("processed: %7d\r", *tot_msgs); fflush(stdout);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("%s is not a file\n", fname);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
printf("cannot stat() %s\n", fname);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
closedir(dir);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int import_from_imap_server(char *imapserver, char *username, char *password, struct session_data *sdata, struct __data *data, char *skiplist, struct __config *cfg){
|
||||||
|
int rc=ERR, ret=OK, sd, seq=1, skipmatch;
|
||||||
|
char *p, puf[SMALLBUFSIZE];
|
||||||
|
char *q, muf[SMALLBUFSIZE];
|
||||||
|
char folders[MAXBUFSIZE];
|
||||||
|
|
||||||
|
if((sd = socket(AF_INET, SOCK_STREAM, 0)) == -1){
|
||||||
|
printf("cannot create socket\n");
|
||||||
|
return ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(connect_to_imap_server(sd, &seq, imapserver, username, password) == ERR){
|
||||||
|
close(sd);
|
||||||
|
return ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
list_folders(sd, &seq, &folders[0], sizeof(folders));
|
||||||
|
|
||||||
|
|
||||||
|
p = &folders[0];
|
||||||
|
do {
|
||||||
|
memset(puf, 0, sizeof(puf));
|
||||||
|
p = split(p, '\n', puf, sizeof(puf)-1);
|
||||||
|
|
||||||
|
if(strlen(puf) < 1) continue;
|
||||||
|
|
||||||
|
skipmatch = 0;
|
||||||
|
|
||||||
|
if(skiplist && strlen(skiplist) > 0){
|
||||||
|
q = skiplist;
|
||||||
|
do {
|
||||||
|
memset(muf, 0, sizeof(muf));
|
||||||
|
q = split(q, ',', muf, sizeof(muf)-1);
|
||||||
|
if(strncasecmp(puf, muf, strlen(muf)) == 0){
|
||||||
|
skipmatch = 1;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} while(q);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(skipmatch == 1){
|
||||||
|
if(quiet == 0) printf("SKIPPING FOLDER: %s\n", puf);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(quiet == 0) printf("processing folder: %s... ", puf);
|
||||||
|
|
||||||
|
rc = process_imap_folder(sd, &seq, puf, sdata, data, cfg);
|
||||||
|
if(rc == ERR) ret = ERR;
|
||||||
|
|
||||||
|
} while(p);
|
||||||
|
|
||||||
|
|
||||||
|
close(sd);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void usage(){
|
||||||
|
printf("usage: pilerimport [-c <config file>] -e <eml file> | -m <mailbox file> | -M <mailbox directory> | -d <directory> | -i <imap server> -u <imap username> -p <imap password>\n");
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, char **argv){
|
||||||
|
int i, c, rc=0, n_mbox=0, tot_msgs=0;
|
||||||
|
char *configfile=CONFIG_FILE, *emlfile=NULL, *mboxdir=NULL, *mbox[MBOX_ARGS], *directory=NULL;
|
||||||
|
char *imapserver=NULL, *username=NULL, *password=NULL, *skiplist=SKIPLIST, *folder=NULL;
|
||||||
|
struct session_data sdata;
|
||||||
|
struct __config cfg;
|
||||||
|
struct __data data;
|
||||||
|
|
||||||
|
for(i=0; i<MBOX_ARGS; i++) mbox[i] = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
data.folder = 0;
|
||||||
|
data.archiving_rules = NULL;
|
||||||
|
data.retention_rules = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
while(1){
|
||||||
|
|
||||||
|
#ifdef _GNU_SOURCE
|
||||||
|
static struct option long_options[] =
|
||||||
|
{
|
||||||
|
{"config", required_argument, 0, 'c' },
|
||||||
|
{"eml", required_argument, 0, 'e' },
|
||||||
|
{"dir", required_argument, 0, 'd' },
|
||||||
|
{"mbox", required_argument, 0, 'm' },
|
||||||
|
{"mboxdir", required_argument, 0, 'M' },
|
||||||
|
{"imapserver", required_argument, 0, 'i' },
|
||||||
|
{"username", required_argument, 0, 'u' },
|
||||||
|
{"password", required_argument, 0, 'p' },
|
||||||
|
{"skiplist", required_argument, 0, 'x' },
|
||||||
|
{"folder", required_argument, 0, 'F' },
|
||||||
|
{"help", no_argument, 0, 'h' },
|
||||||
|
{0,0,0,0}
|
||||||
|
};
|
||||||
|
|
||||||
|
int option_index = 0;
|
||||||
|
|
||||||
|
c = getopt_long(argc, argv, "c:m:M:e:d:i:u:p:x:F:h?", long_options, &option_index);
|
||||||
|
#else
|
||||||
|
c = getopt(argc, argv, "c:m:M:e:d:i:u:p:x:F:h?");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if(c == -1) break;
|
||||||
|
|
||||||
|
switch(c){
|
||||||
|
|
||||||
|
case 'c' :
|
||||||
|
configfile = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'e' :
|
||||||
|
emlfile = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'd' :
|
||||||
|
directory = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'm' :
|
||||||
|
if(n_mbox < MBOX_ARGS){
|
||||||
|
mbox[n_mbox++] = optarg;
|
||||||
|
} else {
|
||||||
|
printf("too many -m <mailbox> arguments: %s\n", optarg);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'M' :
|
||||||
|
mboxdir = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'i' :
|
||||||
|
imapserver = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'u' :
|
||||||
|
username = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'p' :
|
||||||
|
password = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'x' :
|
||||||
|
skiplist = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'F' :
|
||||||
|
folder = optarg;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'h' :
|
||||||
|
case '?' :
|
||||||
|
usage();
|
||||||
|
break;
|
||||||
|
|
||||||
|
|
||||||
|
default :
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if(!mbox[0] && !mboxdir && !emlfile && !directory && !imapserver) usage();
|
||||||
|
|
||||||
|
|
||||||
|
cfg = read_config(configfile);
|
||||||
|
|
||||||
|
if(read_key(&cfg)){
|
||||||
|
printf("%s\n", ERR_READING_KEY);
|
||||||
|
return ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
mysql_init(&(sdata.mysql));
|
||||||
|
mysql_options(&(sdata.mysql), MYSQL_OPT_CONNECT_TIMEOUT, (const char*)&cfg.mysql_connect_timeout);
|
||||||
|
if(mysql_real_connect(&(sdata.mysql), cfg.mysqlhost, cfg.mysqluser, cfg.mysqlpwd, cfg.mysqldb, cfg.mysqlport, cfg.mysqlsocket, 0) == 0){
|
||||||
|
printf("cant connect to mysql server\n");
|
||||||
|
return ERR;
|
||||||
|
}
|
||||||
|
|
||||||
|
mysql_real_query(&(sdata.mysql), "SET NAMES utf8", strlen("SET NAMES utf8"));
|
||||||
|
mysql_real_query(&(sdata.mysql), "SET CHARACTER SET utf8", strlen("SET CHARACTER SET utf8"));
|
||||||
|
|
||||||
|
setlocale(LC_CTYPE, cfg.locale);
|
||||||
|
|
||||||
|
(void) openlog("pilerimport", LOG_PID, LOG_MAIL);
|
||||||
|
|
||||||
|
load_rules(&sdata, &(data.archiving_rules), SQL_ARCHIVING_RULE_TABLE);
|
||||||
|
load_rules(&sdata, &(data.retention_rules), SQL_RETENTION_RULE_TABLE);
|
||||||
|
|
||||||
|
if(emlfile) rc = import_message(emlfile, &sdata, &data, &cfg);
|
||||||
|
if(mbox[0]){
|
||||||
|
for(i=0; i<n_mbox; i++){
|
||||||
|
rc = import_from_mailbox(mbox[i], &sdata, &data, &cfg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(mboxdir) rc = import_mbox_from_dir(mboxdir, &sdata, &data, &tot_msgs, &cfg);
|
||||||
|
if(directory) rc = import_from_maildir(directory, &sdata, &data, &tot_msgs, &cfg);
|
||||||
|
if(imapserver && username && password) rc = import_from_imap_server(imapserver, username, password, &sdata, &data, skiplist, &cfg);
|
||||||
|
|
||||||
|
|
||||||
|
if(quiet == 0) printf("\n");
|
||||||
|
|
||||||
|
free_rule(data.archiving_rules);
|
||||||
|
free_rule(data.retention_rules);
|
||||||
|
|
||||||
|
mysql_close(&(sdata.mysql));
|
||||||
|
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user