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