All Projects → amalfra → maildir

amalfra / maildir

Licence: MIT license
A Go package for reading & writing messages in maildir format

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to maildir

mp4-rust
🎥 MP4 reader and writer library in Rust! 🦀
Stars: ✭ 149 (+1046.15%)
Mutual labels:  writer, reader
Ini
Ini file reader/writer for C# / .NET written in pure .NET in a single source file
Stars: ✭ 43 (+230.77%)
Mutual labels:  writer, reader
Spout
Read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way
Stars: ✭ 3,861 (+29600%)
Mutual labels:  writer, reader
java-class-tools
Read and write java class files in Node.js or in the browser.
Stars: ✭ 27 (+107.69%)
Mutual labels:  writer, reader
Parquet4s
Read and write Parquet in Scala. Use Scala classes as schema. No need to start a cluster.
Stars: ✭ 125 (+861.54%)
Mutual labels:  writer, reader
Asmresolver
A library for editing PE files with full .NET metadata support
Stars: ✭ 267 (+1953.85%)
Mutual labels:  writer, reader
Xml
XML without worries
Stars: ✭ 35 (+169.23%)
Mutual labels:  writer, reader
iobit
Package iobit provides primitives for reading & writing bits
Stars: ✭ 16 (+23.08%)
Mutual labels:  writer, reader
Iostreams
IOStreams is an incredibly powerful streaming library that makes changes to file formats, compression, encryption, or storage mechanism transparent to the application.
Stars: ✭ 84 (+546.15%)
Mutual labels:  writer, reader
Cistern
Ruby API client framework
Stars: ✭ 81 (+523.08%)
Mutual labels:  writer, reader
Choetl
ETL Framework for .NET / c# (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value, Parquet, Yaml, Avro formatted files)
Stars: ✭ 372 (+2761.54%)
Mutual labels:  writer, reader
Qtcsv
Library for reading and writing csv-files in Qt.
Stars: ✭ 156 (+1100%)
Mutual labels:  writer, reader
Xopen
open files for buffered reading and writing in #golang
Stars: ✭ 55 (+323.08%)
Mutual labels:  writer, reader
Bitio
Optimized bit-level Reader and Writer for Go.
Stars: ✭ 145 (+1015.38%)
Mutual labels:  writer, reader
Acr122u Reader Writer
A simple tool to read/write Mifare RFID tags with an ACR122U device
Stars: ✭ 169 (+1200%)
Mutual labels:  writer, reader
osmosfeed
Turn GitHub into an RSS reader
Stars: ✭ 839 (+6353.85%)
Mutual labels:  reader
react-viewer
Online EPUB/Comics viewer
Stars: ✭ 52 (+300%)
Mutual labels:  reader
DocumentReader-iOS
iOS Framework for reading and validation of identification documents
Stars: ✭ 54 (+315.38%)
Mutual labels:  reader
attributes
PHP Attributes Reader. Subtree split of the Spiral Attributes component (see spiral/framework)
Stars: ✭ 22 (+69.23%)
Mutual labels:  reader
react-native-config-reader
🛠 Easily access any of the build configs defined in build.gradle or info.plist from your JS code.
Stars: ✭ 44 (+238.46%)
Mutual labels:  reader

maildir

GitHub release Build Status GoDoc Go Report Card

A go package for reading and writing messages in the maildir format.

The Maildir e-mail format is a common way of storing e-mail messages, where each message is kept in a separate file with a unique name, and each folder is a directory. The local filesystem handles file locking as messages are added, moved and deleted. A major design goal of Maildir is to eliminate program code having to handle locking, which is often difficult.

Refer http://cr.yp.to/proto/maildir.html and http://en.wikipedia.org/wiki/Maildir

Installation

You can download the package using

go get github.com/amalfra/maildir/v2

Usage

Next, import the package

import (
  "github.com/amalfra/maildir/v2"
)

Create a maildir in /home/amal/mail

myMaildir := maildir.NewMaildir("/home/amal/mail")

This command automatically creates the standard Maildir directories - cur, new, and tmp - if they do not exist.

Add a new message

This creates a new file with the contents "foo"; returns the Message struct reference. Messages are written to the tmp dir then moved to new.

message, err := myMaildir.Add("foo")

List new messages

mailList, err := myMaildir.List("new")

This will return a map of messages by key, sorted by key

List current messages

mailList, err := myMaildir.List("cur")

This will return a map of messages by key, sorted by key

Find the message using key

message := maildir.Get(key)

Delete the message from disk by key

err := maildir.Delete(key)

Below are the methods that are available on Message instance

Get the key used to uniquely identify the message

key := message.Key()

Load the message content from file

data, err := message.GetData()

Process message - move the message from "new" to "cur"

This is usaully done to indicate that some process has retrieved the message.

key, err := message.Process("new")

Development

Questions, problems or suggestions? Please post them on the issue tracker.

You can contribute changes by forking the project and submitting a pull request. You can ensure the tests are passing by running make test. Feel free to contribute 😍

UNDER MIT LICENSE

The MIT License (MIT)

Copyright (c) 2017 Amal Francis

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].