aboutsummaryrefslogtreecommitdiff
path: root/src/smtp.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-14 09:47:36 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-14 09:47:36 +0000
commit136e1e02a3c4f5fb7b7e96e2bc88ac7d5fe9f779 (patch)
treefb88a02964a3212d53eb96795aa96bf46ad5ec68 /src/smtp.h
parentff8b73bd96a42dd5517d221c7ef8dca741571ebf (diff)
implemented PLAIN authentication method for SMTP AUTH.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@166 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/smtp.h')
-rw-r--r--src/smtp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/smtp.h b/src/smtp.h
index 19629333..445bba69 100644
--- a/src/smtp.h
+++ b/src/smtp.h
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2003 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2005 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -53,7 +53,8 @@ typedef enum
{
SMTPAUTH_LOGIN = 1 << 0,
SMTPAUTH_CRAM_MD5 = 1 << 1,
- SMTPAUTH_DIGEST_MD5 = 1 << 2
+ SMTPAUTH_DIGEST_MD5 = 1 << 2,
+ SMTPAUTH_PLAIN = 1 << 3
} SMTPAuthType;
typedef enum
@@ -65,6 +66,7 @@ typedef enum
SMTP_STARTTLS,
SMTP_FROM,
SMTP_AUTH,
+ SMTP_AUTH_PLAIN,
SMTP_AUTH_LOGIN_USER,
SMTP_AUTH_LOGIN_PASS,
SMTP_AUTH_CRAM_MD5,