From 136e1e02a3c4f5fb7b7e96e2bc88ac7d5fe9f779 Mon Sep 17 00:00:00 2001 From: hiro Date: Mon, 14 Mar 2005 09:47:36 +0000 Subject: implemented PLAIN authentication method for SMTP AUTH. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@166 ee746299-78ed-0310-b773-934348b2243d --- src/smtp.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/smtp.h') 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, -- cgit v1.2.3