maildir

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 24, 2021 License: MIT Imports: 6 Imported by: 2

README

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

Usage

Next, import the package

import (
  "github.com/amalfra/maildir"
)
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.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Maildir

type Maildir struct {
	// contains filtered or unexported fields
}

Maildir implements maildir format and it's operations

func NewMaildir

func NewMaildir(path string) *Maildir

NewMaildir will create new maildir at specified path

func (*Maildir) Add

func (m *Maildir) Add(data string) (*lib.Message, error)

Add writes data out as a new message. Returns Message instance

func (*Maildir) Delete

func (m *Maildir) Delete(key string) error

Delete a message by key

func (*Maildir) Get

func (m *Maildir) Get(key string) *lib.Message

Get returns a message object for key

func (*Maildir) List

func (m *Maildir) List(dir string) (map[string]*lib.Message, error)

List returns an array of messages from new or cur directory, sorted by key

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL