Use m_tempfile()
[apps/madmutt.git] / alias.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19 /*
20  * Copyright notice from original mutt:
21  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
22  *
23  * This file is part of mutt-ng, see http://www.muttng.org/.
24  * It's licensed under the GNU General Public License,
25  * please see the file GPL in the top level source directory.
26  */
27 #ifndef _MUTT_ALIAS_H
28 #define _MUTT_ALIAS_H
29
30 #include <lib-lib/lib-lib.h>
31 #include <lib-mime/mime.h>
32
33 typedef struct alias_t {
34     struct alias_t *next;
35     char *name;
36     address_t *addr;
37     short tagged;
38     short del;
39     short num;
40 } alias_t;
41
42 extern char    *AliasFmt;
43 extern char    *AliasFile;
44 extern alias_t *Aliases;
45 extern rx_t     GecosMask;
46
47 DO_INIT(alias_t, alias);
48 static inline void alias_wipe(alias_t *a) {
49     address_list_wipe(&a->addr);
50 }
51 DO_NEW(alias_t, alias);
52 DO_DELETE(alias_t, alias);
53 DO_SLIST(alias_t, alias, alias_delete);
54
55 const address_t *alias_lookup(const char *s);
56 const address_t *alias_reverse_lookup(const address_t *);
57
58 int mutt_addr_is_user(address_t *);
59 address_t *mutt_get_address(ENVELOPE *, const char **);
60 void mutt_create_alias(ENVELOPE *, address_t *);
61
62 address_t *mutt_expand_aliases(address_t *);
63 void mutt_expand_aliases_env(ENVELOPE *);
64 int mutt_alias_complete(char *, size_t);
65
66 #endif /* !_MUTT_ALIAS_H */