Andreas Krennmair:
[apps/madmutt.git] / account.h
1 /*
2  * Copyright (C) 2000-3 Brendan Cully <brendan@kublai.com>
3  * 
4  *     This program is free software; you can redistribute it and/or modify
5  *     it under the terms of the GNU General Public License as published by
6  *     the Free Software Foundation; either version 2 of the License, or
7  *     (at your option) any later version.
8  * 
9  *     This program is distributed in the hope that it will be useful,
10  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *     GNU General Public License for more details.
13  * 
14  *     You should have received a copy of the GNU General Public License
15  *     along with this program; if not, write to the Free Software
16  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
17  */
18
19 /* remote host account manipulation (POP/IMAP) */
20
21 #ifndef _MUTT_ACCOUNT_H_
22 #define _MUTT_ACCOUNT_H_ 1
23
24 #include "url.h"
25
26 /* account types */
27 enum {
28   M_ACCT_TYPE_NONE = 0,
29   M_ACCT_TYPE_IMAP,
30   M_ACCT_TYPE_NNTP,
31   M_ACCT_TYPE_POP
32 };
33
34 /* account flags */
35 #define M_ACCT_PORT (1<<0)
36 #define M_ACCT_USER (1<<1)
37 #define M_ACCT_PASS (1<<2)
38 #define M_ACCT_SSL  (1<<3)
39
40 typedef struct {
41   char user[64];
42   char pass[64];
43   char host[128];
44   unsigned short port;
45   unsigned char type;
46   unsigned char flags;
47 } ACCOUNT;
48
49 int mutt_account_match (const ACCOUNT * a1, const ACCOUNT * m2);
50 int mutt_account_fromurl (ACCOUNT * account, ciss_url_t * url);
51 void mutt_account_tourl (ACCOUNT * account, ciss_url_t * url);
52 int mutt_account_getuser (ACCOUNT * account);
53 int mutt_account_getpass (ACCOUNT * account);
54 void mutt_account_unsetpass (ACCOUNT * account);
55
56 #endif /* _MUTT_ACCOUNT_H_ */