2 * Copyright (C) 2000-7 Brendan Cully <brendan@kublai.com>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 /* remote host account manipulation (POP/IMAP) */
21 #ifndef _MUTT_ACCOUNT_H_
22 #define _MUTT_ACCOUNT_H_ 1
36 #define M_ACCT_PORT (1<<0)
37 #define M_ACCT_USER (1<<1)
38 #define M_ACCT_LOGIN (1<<2)
39 #define M_ACCT_PASS (1<<3)
40 #define M_ACCT_SSL (1<<4)
53 int mutt_account_match (const ACCOUNT* a1, const ACCOUNT* m2);
54 int mutt_account_fromurl (ACCOUNT* account, ciss_url_t* url);
55 void mutt_account_tourl (ACCOUNT* account, ciss_url_t* url);
56 int mutt_account_getuser (ACCOUNT* account);
57 int mutt_account_getlogin (ACCOUNT* account);
58 int mutt_account_getpass (ACCOUNT* account);
59 void mutt_account_unsetpass (ACCOUNT* account);
61 #endif /* _MUTT_ACCOUNT_H_ */