Email::Notmuch

Raku binding for NotmuchMail email database

NAME

Email::Notmuch - Raku binding for NotmuchMail email database

SYNOPSIS

use Email::Notmuch;

my $database = Database.new('/home/goneri/Maildir');
my $query = Query.new($database, 'tag:todo');
my $messages = $query.search_messages();
for $messages.all() -> $message {
    say $message.get_header('from');
    $message.add_tag('seen');
    say $message.get_tags().all();
}

DESCRIPTION

Notmuchmail ( https://notmuchmail.org/ ) is a mail indexation tool. This Raku module provides binding for a limited subset of its API.

The library has been tested with Notmuch 0.25 and greater, it does not work anymore with the older versions.

AUTHOR

Gonéri Le Bouder

COPYRIGHT AND LICENSE

Copyright 2015 - 2018 Gonéri Le Bouder

Copyright 2024 Raku Community

The project uses the GPLv3 or greater.

Email::Notmuch v0.7

Raku binding for NotmuchMail email database

Authors

  • Gonéri Le Bouder

License

GPL-3.0

Dependencies

Test Dependencies

Provides

  • Email::Notmuch

Documentation

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.