Manage alias reverse lookups. More...
#include "config.h"#include <stddef.h>#include "mutt/lib.h"#include "address/lib.h"#include "core/lib.h"#include "reverse.h"#include "lib.h"#include "alias.h"#include "module_data.h"
Include dependency graph for reverse.c:Go to the source code of this file.
Functions | |
| struct HashTable * | alias_reverse_init (void) |
| Set up the Reverse Alias Hash Table. | |
| void | alias_reverse_cleanup (struct HashTable **reverse) |
| Clear up the Reverse Alias Hash Table. | |
| void | alias_reverse_add (struct Alias *alias) |
| Add an email address lookup for an Alias. | |
| void | alias_reverse_delete (struct Alias *alias) |
| Remove an email address lookup for an Alias. | |
| struct Address * | alias_reverse_lookup (const struct Address *addr) |
| Does the user have an alias for the given address. | |
Manage alias reverse lookups.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file reverse.c.
| struct HashTable * alias_reverse_init | ( | void | ) |
Set up the Reverse Alias Hash Table.
| ptr | Empty HashTable |
Definition at line 43 of file reverse.c.
Here is the call graph for this function:
Here is the caller graph for this function:| void alias_reverse_cleanup | ( | struct HashTable ** | reverse | ) |
Clear up the Reverse Alias Hash Table.
| reverse | HashTable to free |
Definition at line 53 of file reverse.c.
Here is the call graph for this function:
Here is the caller graph for this function:| void alias_reverse_add | ( | struct Alias * | alias | ) |
Add an email address lookup for an Alias.
| alias | Alias to use |
Definition at line 62 of file reverse.c.
Here is the call graph for this function:
Here is the caller graph for this function:| void alias_reverse_delete | ( | struct Alias * | alias | ) |
Remove an email address lookup for an Alias.
| alias | Alias to use |
Definition at line 87 of file reverse.c.
Here is the call graph for this function:
Here is the caller graph for this function:Does the user have an alias for the given address.
| addr | Address to lookup |
| ptr | Matching Address |
Definition at line 112 of file reverse.c.
Here is the call graph for this function:
Here is the caller graph for this function: