File: mbox.go

package info (click to toggle)
golang-github-emersion-go-mbox 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
// Package mbox parses and formats the mbox file format.
//
// As the mbox file format is not standardized this package expects the least
// common denominator, the so called mboxo format.
package mbox

var (
	header        = []byte("From ")
	escapedHeader = append([]byte{'>'}, header...)
)