mutt stable branch with some hacks
at master 61 lines 1.8 kB view raw
1/* 2 * Copyright (C) 2000-2007,2012 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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 */ 27enum 28{ 29 MUTT_ACCT_TYPE_NONE = 0, 30 MUTT_ACCT_TYPE_IMAP, 31 MUTT_ACCT_TYPE_POP, 32 MUTT_ACCT_TYPE_SMTP 33}; 34 35/* account flags */ 36#define MUTT_ACCT_PORT (1<<0) 37#define MUTT_ACCT_USER (1<<1) 38#define MUTT_ACCT_LOGIN (1<<2) 39#define MUTT_ACCT_PASS (1<<3) 40#define MUTT_ACCT_SSL (1<<4) 41 42typedef struct 43{ 44 char user[64]; 45 char login[64]; 46 char pass[128]; 47 char host[128]; 48 unsigned short port; 49 unsigned char type; 50 unsigned char flags; 51} ACCOUNT; 52 53int mutt_account_match (const ACCOUNT* a1, const ACCOUNT* m2); 54int mutt_account_fromurl (ACCOUNT* account, ciss_url_t* url); 55void mutt_account_tourl (ACCOUNT* account, ciss_url_t* url); 56int mutt_account_getuser (ACCOUNT* account); 57int mutt_account_getlogin (ACCOUNT* account); 58int mutt_account_getpass (ACCOUNT* account); 59void mutt_account_unsetpass (ACCOUNT* account); 60 61#endif /* _MUTT_ACCOUNT_H_ */