]> code.citadel.org Git - citadel.git/blobdiff - citadel/modules/smtp/smtpqueue.h
Add busines logic for toggling multiple mx records etc.
[citadel.git] / citadel / modules / smtp / smtpqueue.h
index 0da68956184dcf1c0b5e0dd29006da1df5e3874e..1ae1034b4eac942ba886bdce7d18aeb65e8dcf23 100644 (file)
@@ -11,6 +11,7 @@ struct ParsedURL {
        const char *Pass;
        const char *LocalPart;
        int IsIP;
+       int IPv6;
        int af;
        struct hostent *HEnt;
        struct in6_addr Addr;
@@ -55,6 +56,7 @@ typedef struct queueitem {
        StrBuf *EnvelopeFrom;
        StrBuf *BounceTo;
        ParsedURL *URL;
+       ParsedURL *FallBackHost;
 } OneQueItem;
 typedef void (*QItemHandler)(OneQueItem *Item, StrBuf *Line, const char **Pos);