summaryrefslogtreecommitdiffstats
path: root/account.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2000-07-31 07:18:28 +0000
committerThomas Roessler <roessler@does-not-exist.org>2000-07-31 07:18:28 +0000
commit61333b001c09fb24709398d2ad2dae16b8451080 (patch)
treec9cfc5f76b32aa8f3a2780d213079be6f68a0c30 /account.h
parente15e685b533f3817a9adb99824f03f03342c64d9 (diff)
Brendan Cully's SASL patch. I hope I didn't miss any files.
Diffstat (limited to 'account.h')
-rw-r--r--account.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/account.h b/account.h
index 20c5e63a..9e21c269 100644
--- a/account.h
+++ b/account.h
@@ -32,9 +32,8 @@ enum
/* account flags */
#define M_ACCT_PORT (1<<0)
#define M_ACCT_USER (1<<1)
-#define M_ACCT_SSL (1<<2)
-#define M_ACCT_CRAM (1<<3)
-#define M_ACCT_PASS (1<<4)
+#define M_ACCT_PASS (1<<2)
+#define M_ACCT_SSL (1<<3)
typedef struct
{
@@ -46,7 +45,8 @@ typedef struct
unsigned char flags;
} ACCOUNT;
-/* imap_account_match: compare account info (host/port/user) */
int mutt_account_match (const ACCOUNT* a1, const ACCOUNT* m2);
+int mutt_account_getuser (ACCOUNT* account);
+int mutt_account_getpass (ACCOUNT* account);
#endif /* _MUTT_ACCOUNT_H_ */