simplifications.
[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-lua/lib-lua.h>
32
33 #include <lib-mime/mime.h>
34
35 int luaopen_MAlias(lua_State *L);
36
37 typedef struct alias_t {
38     struct alias_t *next;
39     char *name;
40     address_t *addr;
41     short tagged;
42     short del;
43     short num;
44 } alias_t;
45
46 extern alias_t *Aliases;
47 extern rx_t *MailLists, *UnMailLists;
48 extern rx_t *SubscribedLists, *UnSubscribedLists;
49
50
51 DO_INIT(alias_t, alias);
52 static inline void alias_wipe(alias_t *a) {
53     address_list_wipe(&a->addr);
54 }
55 DO_NEW(alias_t, alias);
56 DO_DELETE(alias_t, alias);
57 DO_SLIST(alias_t, alias, alias_delete);
58
59 const address_t *alias_lookup(const char *s);
60 const address_t *alias_reverse_lookup(const address_t *);
61
62 int mutt_addr_is_user(address_t *);
63 address_t *mutt_get_address(ENVELOPE *, const char **);
64 void mutt_create_alias(ENVELOPE *, address_t *);
65
66 address_t *mutt_expand_aliases(address_t *);
67 void mutt_expand_aliases_env(ENVELOPE *);
68 int mutt_alias_complete(char *, size_t);
69
70 #endif /* !_MUTT_ALIAS_H */