Moving email sending functionality into muse_send.[c/h]

Signed-off-by: R. Tyler Ballance <tyler@monkeypox.org>
This commit is contained in:
R. Tyler Ballance 2009-01-23 00:25:41 -08:00
parent b940d26476
commit 653ab7c2f8
3 changed files with 32 additions and 2 deletions

View File

@ -4,8 +4,8 @@ TAR ?= tar
RM ?= -rm
CFLAGS := -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=22 -ggdb `pkg-config --cflags glib-2.0`
LDFLAGS := -lfuse `pkg-config --libs glib-2.0`
SRCS := imuse.c imapper.c
OBJS := imuse.o imapper.o
SRCS := imuse.c imapper.c muse_send.c
OBJS := imuse.o imapper.o muse_send.o
OUT ?= imuse
README := /dev/null

18
muse_send.c Normal file
View File

@ -0,0 +1,18 @@
/*
* imuse -- A FUSE filesystem for exposing IMAP accounts as a locally browsable filesystem, neat!
*
* (c) 2009 - R. Tyler Ballance <tyler@monkeypox.org>
*/
#include <glib.h>
#include <imap/c-client.h>
#include "muse_send.h"
struct muse_send_config *config_by_account(const char *accountname) {
return NULL;
}

12
muse_send.h Normal file
View File

@ -0,0 +1,12 @@
/*
* imuse -- A FUSE filesystem for exposing IMAP accounts as a locally browsable filesystem, neat!
*
* (c) 2009 - R. Tyler Ballance <tyler@monkeypox.org>
*/
#ifndef __MUSE_SEND_H
#define __MUSE_SEND_H
#endif