SMTP-Client: Implement AUTH LOGIN
[citadel.git] / citadel / modules / smtp / smtp_clienthandlers.h
index 149c3ddc54fbc6bceff972ea636bdfc33d0be5cc..afff029168bd798d35520aaf7095ae78d183fe39 100644 (file)
@@ -22,6 +22,8 @@ typedef enum _eSMTP_C_States {
        eEHLO,
        eHELO,
        eSMTPAuth,
+       eSMTPAuthPlain1,
+       eSMTPAuthPlain2,
        eFROM,
        eRCPT,
        eDATA,
@@ -67,6 +69,7 @@ typedef struct _stmp_out_msg {
        char name[1024];
        char mailfrom[1024];
 
+       long SendLogin;
        long Flags;
 } SmtpOutMsg;