1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
|
// The maildir package provides an interface to mailboxes in the Maildir format.
//
// Maildir mailboxes are designed to be safe for concurrent delivery. This
// means that at the same time, multiple processes can deliver to the same
// mailbox. However only one process can receive and read messages stored in
// the Maildir.
package maildir
import (
"crypto/rand"
"errors"
"fmt"
"io"
"os"
"path/filepath"
"sort"
"strings"
"sync/atomic"
"time"
)
// readdirChunk represents the number of files to load at once from the mailbox
// when searching for a message
var readdirChunk = 4096
var id int64 = 10000
// A KeyError occurs when a key matches more or less than one message.
type KeyError struct {
Key string // the (invalid) key
N int // number of matches (!= 1)
}
func (e *KeyError) Error() string {
return fmt.Sprintf("maildir: key %q matches %v files, expected exactly one", e.Key, e.N)
}
// A FlagError occurs when a non-standard info section is encountered.
type FlagError struct {
Info string // the encountered info section
Experimental bool // info section starts with 1
}
func (e *FlagError) Error() string {
if e.Experimental {
return "maildir: experimental info section encountered: " + e.Info[2:]
}
return "maildir: bad info section encountered: " + e.Info
}
// A MailfileError occurs when a mailfile has an invalid format
type MailfileError struct {
Name string // the name of the mailfile
}
func (e *MailfileError) Error() string {
return "maildir: invalid mailfile format: " + e.Name
}
// A Dir represents a single directory in a Maildir mailbox.
//
// Dir is used by programs receiving and reading messages from a Maildir. Only
// one process can perform these operations. Programs which only need to
// deliver new messages to the Maildir should use Delivery.
type Dir string
// Unseen moves messages from new to cur and returns their keys.
// This means the messages are now known to the application. To find out whether
// a user has seen a message, use Flags().
func (d Dir) Unseen() ([]string, error) {
f, err := os.Open(filepath.Join(string(d), "new"))
if err != nil {
return nil, err
}
defer f.Close()
var keys []string
for {
names, err := f.Readdirnames(readdirChunk)
if errors.Is(err, io.EOF) {
break
} else if err != nil {
return keys, err
}
for _, n := range names {
if n[0] == '.' {
continue
}
// Messages in new shouldn't have an info field, but some programs
// (e.g. offlineimap) do that anyways. Discard the info field in
// that case.
key, _, _ := strings.Cut(n, string(separator))
info := "2,"
err = os.Rename(filepath.Join(string(d), "new", n),
filepath.Join(string(d), "cur", key+string(separator)+info))
if err != nil {
return keys, err
}
keys = append(keys, key)
}
}
return keys, nil
}
// UnseenCount returns the number of messages in new without looking at them.
func (d Dir) UnseenCount() (int, error) {
f, err := os.Open(filepath.Join(string(d), "new"))
if err != nil {
return 0, err
}
defer f.Close()
c := 0
for {
names, err := f.Readdirnames(readdirChunk)
if errors.Is(err, io.EOF) {
break
} else if err != nil {
return 0, err
}
for _, n := range names {
if n[0] != '.' {
c++
}
}
}
return c, nil
}
// parseBasename splits a basename into its key and info fields.
func parseBasename(basename string) (key, info string, err error) {
split := strings.FieldsFunc(basename, func(r rune) bool {
return r == separator
})
if len(split) < 2 {
return "", "", &MailfileError{basename}
}
return split[0], split[1], nil
}
func parseKey(basename string) (string, error) {
key, _, err := parseBasename(basename)
return key, err
}
// Key returns the key for the given file path.
func (d Dir) Key(path string) (string, error) {
if filepath.Dir(path) != string(d) {
return "", fmt.Errorf("maildir: filepath %q belongs to a different Maildir", path)
}
filename := filepath.Base(path)
return parseKey(filename)
}
// Walk calls fn for every message.
func (d Dir) Walk(fn func(key string, flags []Flag) error) error {
f, err := os.Open(filepath.Join(string(d), "cur"))
if err != nil {
return err
}
defer f.Close()
for {
names, err := f.Readdirnames(readdirChunk)
if errors.Is(err, io.EOF) {
break
} else if err != nil {
return err
}
for _, n := range names {
if n[0] == '.' {
continue
}
key, err := parseKey(n)
if err != nil {
return err
}
flags, err := parseFlags(n)
if err != nil {
return err
}
if err := fn(key, flags); err != nil {
return err
}
}
}
return nil
}
// Keys returns a slice of valid keys to access messages by.
func (d Dir) Keys() ([]string, error) {
var keys []string
err := d.Walk(func(key string, flags []Flag) error {
keys = append(keys, key)
return nil
})
return keys, err
}
func (d Dir) filenameGuesses(key string) []string {
basename := filepath.Join(string(d), "cur", key+string(separator)+"2,")
return []string{
basename,
basename + string(FlagPassed),
basename + string(FlagReplied),
basename + string(FlagSeen),
basename + string(FlagDraft),
basename + string(FlagFlagged),
basename + string(FlagFlagged) + string(FlagPassed),
basename + string(FlagFlagged) + string(FlagPassed) + string(FlagSeen),
basename + string(FlagFlagged) + string(FlagReplied),
basename + string(FlagFlagged) + string(FlagReplied) + string(FlagSeen),
basename + string(FlagFlagged) + string(FlagSeen),
basename + string(FlagPassed),
basename + string(FlagPassed) + string(FlagSeen),
basename + string(FlagReplied) + string(FlagSeen),
}
}
// Filename returns the path to the file corresponding to the key.
func (d Dir) Filename(key string) (string, error) {
// before doing an expensive Glob, see if we can guess the path based on some
// common flags
for _, guess := range d.filenameGuesses(key) {
if _, err := os.Stat(guess); err == nil {
return guess, nil
}
}
file, err := os.Open(filepath.Join(string(d), "cur"))
if err != nil {
return "", err
}
defer file.Close()
// search for a valid candidate (in blocks of readdirChunk)
for {
names, err := file.Readdirnames(readdirChunk)
if errors.Is(err, io.EOF) {
// no match
return "", &KeyError{key, 0}
} else if err != nil {
return "", err
}
for _, name := range names {
if strings.HasPrefix(name, key+string(separator)) {
return filepath.Join(file.Name(), name), nil
}
}
}
}
// Open reads a message by key.
func (d Dir) Open(key string) (io.ReadCloser, error) {
filename, err := d.Filename(key)
if err != nil {
return nil, err
}
return os.Open(filename)
}
type Flag rune
const (
// The user has resent/forwarded/bounced this message to someone else.
FlagPassed Flag = 'P'
// The user has replied to this message.
FlagReplied Flag = 'R'
// The user has viewed this message, though perhaps he didn't read all the
// way through it.
FlagSeen Flag = 'S'
// The user has moved this message to the trash; the trash will be emptied
// by a later user action.
FlagTrashed Flag = 'T'
// The user considers this message a draft; toggled at user discretion.
FlagDraft Flag = 'D'
// User-defined flag; toggled at user discretion.
FlagFlagged Flag = 'F'
)
type flagList []Flag
func (s flagList) Len() int { return len(s) }
func (s flagList) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
func (s flagList) Less(i, j int) bool { return s[i] < s[j] }
func parseFlags(basename string) ([]Flag, error) {
_, info, err := parseBasename(basename)
if err != nil {
return nil, err
}
switch {
case len(info) < 2, info[1] != ',':
return nil, &FlagError{info, false}
case info[0] == '1':
return nil, &FlagError{info, true}
case info[0] != '2':
return nil, &FlagError{info, false}
}
fl := []Flag(info[2:])
sort.Sort(flagList(fl))
return []Flag(fl), nil
}
// Flags returns the flags for a message sorted in ascending order.
// See the documentation of SetFlags for details.
func (d Dir) Flags(key string) ([]Flag, error) {
filename, err := d.Filename(key)
if err != nil {
return nil, err
}
return parseFlags(filepath.Base(filename))
}
func formatInfo(flags []Flag) string {
info := "2,"
sort.Sort(flagList(flags))
for _, f := range flags {
if []rune(info)[len(info)-1] != rune(f) {
info += string(f)
}
}
return info
}
// SetFlags appends an info section to the filename according to the given flags.
// This function removes duplicates and sorts the flags, but doesn't check
// whether they conform with the Maildir specification.
func (d Dir) SetFlags(key string, flags []Flag) error {
return d.SetInfo(key, formatInfo(flags))
}
// Set the info part of the filename.
// Only use this if you plan on using a non-standard info part.
func (d Dir) SetInfo(key, info string) error {
filename, err := d.Filename(key)
if err != nil {
return err
}
err = os.Rename(filename, filepath.Join(string(d), "cur", key+
string(separator)+info))
return err
}
// newKey generates a new unique key as described in the Maildir specification.
// For the third part of the key (delivery identifier) it uses an internal
// counter, the process id and a cryptographical random number to ensure
// uniqueness among messages delivered in the same second.
func newKey() (string, error) {
host, err := os.Hostname()
if err != nil {
return "", err
}
host = strings.Replace(host, "/", "\057", -1)
host = strings.Replace(host, string(separator), "\072", -1)
bs := make([]byte, 10)
_, err = io.ReadFull(rand.Reader, bs)
if err != nil {
return "", err
}
key := fmt.Sprintf("%d.%d%d%x.%s",
time.Now().Unix(),
os.Getpid(),
atomic.AddInt64(&id, 1),
bs,
host,
)
return key, nil
}
// Init creates the directory structure for a Maildir.
//
// If the main directory already exists, it tries to create the subdirectories
// in there. If an error occurs while creating one of the subdirectories, this
// function may leave a partially created directory structure.
func (d Dir) Init() error {
dirnames := []string{
string(d),
filepath.Join(string(d), "tmp"),
filepath.Join(string(d), "new"),
filepath.Join(string(d), "cur"),
}
for _, name := range dirnames {
if err := os.Mkdir(name, 0700); err != nil && !os.IsExist(err) {
return err
}
}
return nil
}
// Move moves a message from this Maildir to another.
func (d Dir) Move(target Dir, key string) error {
path, err := d.Filename(key)
if err != nil {
return err
}
return os.Rename(path, filepath.Join(string(target), "cur", filepath.Base(path)))
}
// Copy copies the message with key from this Maildir to the target, preserving
// its flags, returning the newly generated key for the target maildir or an
// error.
func (d Dir) Copy(target Dir, key string) (string, error) {
flags, err := d.Flags(key)
if err != nil {
return "", err
}
targetKey, err := d.copyToTmp(target, key)
if err != nil {
return "", err
}
tmpfile := filepath.Join(string(target), "tmp", targetKey)
curfile := filepath.Join(string(target), "cur", targetKey+string(separator)+formatInfo(flags))
if err = os.Rename(tmpfile, curfile); err != nil {
return "", err
}
return targetKey, nil
}
// copyToTmp copies the message with key from d into a file in the target
// maildir's tmp directory with a new key, returning the newly generated key or
// an error.
func (d Dir) copyToTmp(target Dir, key string) (string, error) {
src, err := d.Open(key)
if err != nil {
return "", err
}
defer src.Close()
targetKey, err := newKey()
if err != nil {
return "", err
}
tmpfile := filepath.Join(string(target), "tmp", targetKey)
dst, err := os.OpenFile(tmpfile, os.O_CREATE|os.O_WRONLY|os.O_EXCL, 0666)
if err != nil {
return "", err
}
defer dst.Close()
if _, err = io.Copy(dst, src); err != nil {
return "", err
}
if err := dst.Close(); err != nil {
return "", err
}
return targetKey, nil
}
// Create inserts a new message into the Maildir.
func (d Dir) Create(flags []Flag) (key string, w io.WriteCloser, err error) {
key, err = newKey()
if err != nil {
return "", nil, err
}
basename := key + string(separator) + formatInfo(flags)
filename := filepath.Join(string(d), "cur", basename)
w, err = os.OpenFile(filename, os.O_CREATE|os.O_WRONLY|os.O_EXCL, 0666)
if err != nil {
return "", nil, err
}
return key, w, err
}
// Remove removes the actual file behind this message.
func (d Dir) Remove(key string) error {
f, err := d.Filename(key)
if err != nil {
return err
}
return os.Remove(f)
}
// Clean removes old files from tmp and should be run periodically.
// This does not use access time but modification time for portability reasons.
func (d Dir) Clean() error {
f, err := os.Open(filepath.Join(string(d), "tmp"))
if err != nil {
return err
}
defer f.Close()
now := time.Now()
for {
names, err := f.Readdirnames(readdirChunk)
if errors.Is(err, io.EOF) {
break
} else if err != nil {
return err
}
for _, n := range names {
fi, err := os.Stat(filepath.Join(string(d), "tmp", n))
if err != nil {
continue
}
if now.Sub(fi.ModTime()).Hours() > 36 {
err = os.Remove(filepath.Join(string(d), "tmp", n))
if err != nil {
return err
}
}
}
}
return nil
}
// Delivery represents an ongoing message delivery to the mailbox. It
// implements the io.WriteCloser interface. On Close the underlying file is
// moved/relinked to new.
//
// Multiple processes can perform a delivery on the same Maildir concurrently.
type Delivery struct {
file *os.File
d Dir
key string
}
// NewDelivery creates a new Delivery.
func NewDelivery(d string) (*Delivery, error) {
key, err := newKey()
if err != nil {
return nil, err
}
del := &Delivery{}
filename := filepath.Join(d, "tmp", key)
file, err := os.OpenFile(filename, os.O_CREATE|os.O_WRONLY|os.O_EXCL, 0666)
if err != nil {
return nil, err
}
del.file = file
del.d = Dir(d)
del.key = key
return del, nil
}
// Write implements io.Writer.
func (d *Delivery) Write(p []byte) (int, error) {
return d.file.Write(p)
}
// Close closes the underlying file and moves it to new.
func (d *Delivery) Close() error {
tmppath := d.file.Name()
err := d.file.Close()
if err != nil {
return err
}
newfile := filepath.Join(string(d.d), "new", d.key)
if err = os.Rename(tmppath, newfile); err != nil {
return err
}
return nil
}
// Abort closes the underlying file and removes it completely.
func (d *Delivery) Abort() error {
tmppath := d.file.Name()
err := d.file.Close()
if err != nil {
return err
}
return os.Remove(tmppath)
}
|