]> git.llucax.com Git - software/mutt-debian.git/blob - account.c
Remove myself from Uploaders.
[software/mutt-debian.git] / account.c
1 /*
2  * Copyright (C) 2000-7 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 #if HAVE_CONFIG_H
22 # include "config.h"
23 #endif
24
25 #include "mutt.h"
26 #include "account.h"
27 #include "url.h"
28
29 /* mutt_account_match: compare account info (host/port/user) */
30 int mutt_account_match (const ACCOUNT* a1, const ACCOUNT* a2)
31 {
32   const char* user = NONULL (Username);
33
34   if (a1->type != a2->type)
35     return 0;
36   if (ascii_strcasecmp (a1->host, a2->host))
37     return 0;
38   if (a1->port != a2->port)
39     return 0;
40
41 #ifdef USE_IMAP
42   if (a1->type == M_ACCT_TYPE_IMAP)
43   {
44     if (ImapUser)
45       user = ImapUser;
46   }
47 #endif
48
49 #ifdef USE_POP
50   if (a1->type == M_ACCT_TYPE_POP && PopUser)
51     user = PopUser;
52 #endif
53   
54   if (a1->flags & a2->flags & M_ACCT_USER)
55     return (!strcmp (a1->user, a2->user));
56   if (a1->flags & M_ACCT_USER)
57     return (!strcmp (a1->user, user));
58   if (a2->flags & M_ACCT_USER)
59     return (!strcmp (a2->user, user));
60
61   return 1;
62 }
63
64 /* mutt_account_fromurl: fill account with information from url. */
65 int mutt_account_fromurl (ACCOUNT* account, ciss_url_t* url)
66 {
67   /* must be present */
68   if (url->host)
69     strfcpy (account->host, url->host, sizeof (account->host));
70   else
71     return -1;
72
73   if (url->user)
74   {
75     strfcpy (account->user, url->user, sizeof (account->user));
76     account->flags |= M_ACCT_USER;
77   }
78   if (url->pass)
79   {
80     strfcpy (account->pass, url->pass, sizeof (account->pass));
81     account->flags |= M_ACCT_PASS;
82   }
83   if (url->port)
84   {
85     account->port = url->port;
86     account->flags |= M_ACCT_PORT;
87   }
88
89   return 0;
90 }
91
92 /* mutt_account_tourl: fill URL with info from account. The URL information
93  *   is a set of pointers into account - don't free or edit account until
94  *   you've finished with url (make a copy of account if you need it for
95  *   a while). */
96 void mutt_account_tourl (ACCOUNT* account, ciss_url_t* url)
97 {
98   url->scheme = U_UNKNOWN;
99   url->user = NULL;
100   url->pass = NULL;
101   url->port = 0;
102
103 #ifdef USE_IMAP
104   if (account->type == M_ACCT_TYPE_IMAP)
105   {
106     if (account->flags & M_ACCT_SSL)
107       url->scheme = U_IMAPS;
108     else
109       url->scheme = U_IMAP;
110   }
111 #endif
112
113 #ifdef USE_POP
114   if (account->type == M_ACCT_TYPE_POP)
115   {
116     if (account->flags & M_ACCT_SSL)
117       url->scheme = U_POPS;
118     else
119       url->scheme = U_POP;
120   }
121 #endif
122
123 #ifdef USE_SMTP
124   if (account->type == M_ACCT_TYPE_SMTP)
125   {
126     if (account->flags & M_ACCT_SSL)
127       url->scheme = U_SMTPS;
128     else
129       url->scheme = U_SMTP;
130   }
131 #endif
132
133   url->host = account->host;
134   if (account->flags & M_ACCT_PORT)
135     url->port = account->port;
136   if (account->flags & M_ACCT_USER)
137     url->user = account->user;
138   if (account->flags & M_ACCT_PASS)
139     url->pass = account->pass;
140 }
141
142 /* mutt_account_getuser: retrieve username into ACCOUNT, if necessary */
143 int mutt_account_getuser (ACCOUNT* account)
144 {
145   char prompt[SHORT_STRING];
146
147   /* already set */
148   if (account->flags & M_ACCT_USER)
149     return 0;
150 #ifdef USE_IMAP
151   else if ((account->type == M_ACCT_TYPE_IMAP) && ImapUser)
152     strfcpy (account->user, ImapUser, sizeof (account->user));
153 #endif
154 #ifdef USE_POP
155   else if ((account->type == M_ACCT_TYPE_POP) && PopUser)
156     strfcpy (account->user, PopUser, sizeof (account->user));
157 #endif
158   /* prompt (defaults to unix username), copy into account->user */
159   else
160   {
161     snprintf (prompt, sizeof (prompt), _("Username at %s: "), account->host);
162     strfcpy (account->user, NONULL (Username), sizeof (account->user));
163     if (mutt_get_field_unbuffered (prompt, account->user, sizeof (account->user), 0))
164       return -1;
165   }
166
167   account->flags |= M_ACCT_USER;
168
169   return 0;
170 }
171
172 int mutt_account_getlogin (ACCOUNT* account)
173 {
174   /* already set */
175   if (account->flags & M_ACCT_LOGIN)
176     return 0;
177 #ifdef USE_IMAP
178   else if (account->type == M_ACCT_TYPE_IMAP)
179   {
180     if (ImapLogin)
181     {
182       strfcpy (account->login, ImapLogin, sizeof (account->login));
183       account->flags |= M_ACCT_LOGIN;
184     }
185   }
186 #endif
187
188   if (!(account->flags & M_ACCT_LOGIN))
189   {
190     mutt_account_getuser (account);
191     strfcpy (account->login, account->user, sizeof (account->login));
192   }
193
194   account->flags |= M_ACCT_LOGIN;
195
196   return 0;
197 }
198
199 /* mutt_account_getpass: fetch password into ACCOUNT, if necessary */
200 int mutt_account_getpass (ACCOUNT* account)
201 {
202   char prompt[SHORT_STRING];
203
204   if (account->flags & M_ACCT_PASS)
205     return 0;
206 #ifdef USE_IMAP
207   else if ((account->type == M_ACCT_TYPE_IMAP) && ImapPass)
208     strfcpy (account->pass, ImapPass, sizeof (account->pass));
209 #endif
210 #ifdef USE_POP
211   else if ((account->type == M_ACCT_TYPE_POP) && PopPass)
212     strfcpy (account->pass, PopPass, sizeof (account->pass));
213 #endif
214 #ifdef USE_SMTP
215   else if ((account->type == M_ACCT_TYPE_SMTP) && SmtpPass)
216     strfcpy (account->pass, SmtpPass, sizeof (account->pass));
217 #endif
218   else
219   {
220     snprintf (prompt, sizeof (prompt), _("Password for %s@%s: "),
221               account->flags & M_ACCT_LOGIN ? account->login : account->user,
222               account->host);
223     account->pass[0] = '\0';
224     if (mutt_get_password (prompt, account->pass, sizeof (account->pass)))
225       return -1;
226   }
227
228   account->flags |= M_ACCT_PASS;
229
230   return 0;
231 }
232
233 void mutt_account_unsetpass (ACCOUNT* account)
234 {
235   account->flags &= ~M_ACCT_PASS;
236 }