SMTPSRV: migrate to use StrBuf
[citadel.git] / citadel / modules / smtp / smtp_util.h
index b3c4ae96b8f3fc80db7fa46b672afedc8c2f2f30..1da497de0b3c4f41eb69b1cc0ace38a9d92c7a98 100644 (file)
@@ -41,9 +41,11 @@ const char *smtp_get_Recipients(void);
 
 typedef struct _citsmtp {              /* Information about the current session */
        int command_state;
-       char helo_node[SIZ];
-       char from[SIZ];
-       char recipients[SIZ];
+       StrBuf *Cmd;
+       StrBuf *helo_node;
+       StrBuf *from;
+       StrBuf *recipients;
+       StrBuf *OneRcpt;
        int number_of_recipients;
        int delivery_mode;
        int message_originated_locally;