File: mailbox-iterate.at

package info (click to toggle)
mailutils 1%3A3.20-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,932 kB
  • sloc: ansic: 187,772; sh: 111,430; yacc: 7,463; cpp: 3,834; makefile: 3,166; lex: 1,972; python: 1,617; exp: 1,563; awk: 152; lisp: 132; sed: 31
file content (23 lines) | stat: -rw-r--r-- 960 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This file is part of GNU Mailutils                    -*- Autotest -*-
# Copyright (C) 2018-2025 Free Software Foundation, Inc.
# License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
# This is free software: you are free to change and redistribute it.
# There is NO WARRANTY, to the extent permitted by law.

AT_SETUP([mu-mailbox-first/next-message])
AT_KEYWORDS([mailbox])
WITH_MAILBOX([spool/mbox1],
 [MU_GUILE_CHECK([
(let ((mbox (mu-mailbox-open "mbox" "r")))
  (do ((msg (mu-mailbox-first-message mbox) (mu-mailbox-next-message mbox)))
      ((not (mu-mailbox-more-messages? mbox)))
    (display msg)(newline)))], 
 0,
[#<message "foobar@nonexistent.net" "Fri Dec 28 22:18" 44 1254>
#<message "bar@dontmailme.org" "Fri Dec 28 23:28" 13 534>
#<message "gray@example.net" "Sat Jul 13 00:43" 42 1569>
#<message "gray@example.net" "Sat Jul 13 00:50" 84 3399>
#<message "gray@example.net" "Sat Jul 13 00:43" 27 857>
])])
AT_CLEANUP