summaryrefslogtreecommitdiff
path: root/esmtp.h
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@users.sourceforge.net>2003-07-03 17:37:11 +0000
committerJosé Fonseca <jrfonseca@users.sourceforge.net>2003-07-03 17:37:11 +0000
commit2867d16bc9bae9764904efbf44cd5131fca1bc9b (patch)
tree1e910b1566a40e9b02961bf5aed2958b9fa7b974 /esmtp.h
parent2b266bab3687c078061c7b8bf3676ef3a61d53a7 (diff)
Modularization of the code.
Hability to get the recipients from the message headers. Local delivery via a MDA.
Diffstat (limited to 'esmtp.h')
-rw-r--r--esmtp.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/esmtp.h b/esmtp.h
deleted file mode 100644
index 7c61e9a..0000000
--- a/esmtp.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * esmtp.h - global declarations
- */
-
-typedef struct {
- char *identity;
- char *host;
- char *user;
- char *pass;
- enum starttls_option starttls; /* it should default to Starttls_DISABLED */
- char *certificate_passphrase;
-} identity_t;
-
-extern identity_t default_identity;
-
-typedef struct identity_list_rec identity_list_t;
-
-struct identity_list_rec {
- identity_list_t *next;
- identity_t identity;
-} ;
-
-extern identity_list_t *identities_head, **identities_tail;
-
-
-extern char *rcfile;
-
-
-extern void parse_rcfile(void);
-