sup 1.1 → 1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/checks.yml +27 -39
  3. data/CONTRIBUTORS +3 -1
  4. data/History.txt +16 -3
  5. data/Manifest.txt +22 -0
  6. data/README.md +0 -1
  7. data/bin/sup-sync-back-maildir +1 -1
  8. data/contrib/nix/Gemfile +22 -0
  9. data/contrib/nix/Gemfile.lock +80 -0
  10. data/contrib/nix/README +7 -0
  11. data/contrib/nix/gem-install-shell.nix +12 -0
  12. data/contrib/nix/gemset.nix +339 -0
  13. data/contrib/nix/ruby2.4-Gemfile.lock +81 -0
  14. data/contrib/nix/ruby2.4-gemset.nix +309 -0
  15. data/contrib/nix/ruby2.4-shell.nix +30 -0
  16. data/contrib/nix/ruby2.5-Gemfile.lock +81 -0
  17. data/contrib/nix/ruby2.5-gemset.nix +309 -0
  18. data/contrib/nix/ruby2.5-shell.nix +30 -0
  19. data/contrib/nix/ruby2.6-Gemfile.lock +83 -0
  20. data/contrib/nix/ruby2.6-gemset.nix +319 -0
  21. data/contrib/nix/ruby2.6-shell.nix +30 -0
  22. data/contrib/nix/ruby2.7-shell.nix +23 -0
  23. data/contrib/nix/ruby3.0-shell.nix +23 -0
  24. data/contrib/nix/ruby3.1-shell.nix +23 -0
  25. data/contrib/nix/ruby3.2-shell.nix +23 -0
  26. data/contrib/nix/ruby3.3-shell.nix +23 -0
  27. data/contrib/nix/test-all-rubies.sh +6 -0
  28. data/doc/Hooks.txt +1 -1
  29. data/ext/mkrf_conf_xapian.rb +2 -2
  30. data/lib/sup/crypto.rb +1 -1
  31. data/lib/sup/index.rb +2 -2
  32. data/lib/sup/maildir.rb +1 -1
  33. data/lib/sup/mbox.rb +1 -1
  34. data/lib/sup/message.rb +2 -2
  35. data/lib/sup/modes/console_mode.rb +1 -1
  36. data/lib/sup/thread.rb +20 -20
  37. data/lib/sup/util.rb +3 -5
  38. data/lib/sup/version.rb +1 -1
  39. data/man/sup-add.1 +27 -27
  40. data/man/sup-config.1 +23 -19
  41. data/man/sup-dump.1 +28 -29
  42. data/man/sup-import-dump.1 +24 -20
  43. data/man/sup-psych-ify-config-files.1 +23 -19
  44. data/man/sup-recover-sources.1 +23 -19
  45. data/man/sup-sync-back-maildir.1 +23 -19
  46. data/man/sup-sync.1 +23 -19
  47. data/man/sup-tweak-labels.1 +23 -19
  48. data/man/sup.1 +23 -19
  49. data/shell.nix +1 -0
  50. data/test/integration/test_maildir.rb +3 -0
  51. data/test/integration/test_mbox.rb +3 -0
  52. data/test/integration/test_sup-sync-back-maildir.rb +40 -0
  53. data/test/test_header_parsing.rb +2 -2
  54. metadata +26 -3
data/lib/sup/version.rb CHANGED
@@ -8,5 +8,5 @@ def git_suffix
8
8
  end
9
9
 
10
10
  module Redwood
11
- VERSION = "1.1"
11
+ VERSION = "1.2"
12
12
  end
data/man/sup-add.1 CHANGED
@@ -1,36 +1,28 @@
1
- .\" Automatically generated by Pandoc 2.9.2.1
1
+ .\" Automatically generated by Pandoc 3.1.9
2
2
  .\"
3
3
  .TH "SUP-ADD" "1" "April 9, 2012" "Sup User Manual" ""
4
- .hy
5
4
  .SH NAME
6
- .PP
7
5
  sup-add - add a source to the Sup source list
8
6
  .SH SYNOPSIS
9
- .PP
10
7
  sup-add [\f[I]options\f[R]] [\f[I]source uri\&...\f[R]]
11
8
  .SH DESCRIPTION
12
- .PP
13
9
  Add one ore more sources to the Sup source list
14
10
  .PP
15
11
  For mbox files on local disk, use the form:
16
12
  .IP
17
- .nf
18
- \f[C]
13
+ .EX
19
14
  mbox:<path to mbox file>, or
20
15
 
21
16
  mbox://<path to mbox file>
22
- \f[R]
23
- .fi
17
+ .EE
24
18
  .PP
25
19
  For Maildir folders, use the form:
26
20
  .IP
27
- .nf
28
- \f[C]
21
+ .EX
29
22
  maildir:<path to Maildir directory>; or
30
23
 
31
24
  maildir://<path to Maildir directory>
32
- \f[R]
33
- .fi
25
+ .EE
34
26
  .SH OPTIONS
35
27
  .TP
36
28
  -a, --archive
@@ -59,27 +51,30 @@ Show help message
59
51
  $HOME/.sup/sources.yaml
60
52
  Configuration file for Sup mail sources
61
53
  .SH SEE ALSO
62
- .PP
63
54
  sup(1), sup-config(1)
64
55
  .SH REPORTING BUGS
65
- .PP
66
56
  You are welcome to submit bug reports to the Sup issue tracker, located
67
57
  at
68
58
  .PP
69
- <https://github.com/sup-heliotrope/sup/issues>
59
+ \c
60
+ .UR https://github.com/sup-heliotrope/sup/issues
61
+ .UE \c
70
62
  .SH CONTACT INFORMATION
71
63
  .TP
72
64
  The Sup web page:
73
- <https://sup-heliotrope.github.io/>
65
+ \c
66
+ .UR https://sup-heliotrope.github.io/
67
+ .UE \c
74
68
  .TP
75
69
  Code repository:
76
- <https://github.com/sup-heliotrope/sup/>
70
+ \c
71
+ .UR https://github.com/sup-heliotrope/sup/
72
+ .UE \c
77
73
  .TP
78
74
  Sup Wiki:
79
- <https://github.com/sup-heliotrope/sup/wiki/>
80
- .TP
81
- Sup IRC channel:
82
- #sup \[at] freenode.net
75
+ \c
76
+ .UR https://github.com/sup-heliotrope/sup/wiki/
77
+ .UE \c
83
78
  .TP
84
79
  Mailing list:
85
80
  supmua\[at]googlegroups.com
@@ -87,11 +82,14 @@ supmua\[at]googlegroups.com
87
82
  .PP
88
83
  supmua+subscribe\[at]googlegroups.com
89
84
  .PP
90
- Archives: <https://groups.google.com/d/forum/supmua/>
85
+ Archives: \c
86
+ .UR https://groups.google.com/d/forum/supmua/
87
+ .UE \c
91
88
  .RE
92
89
  .SH COPYRIGHT
93
- .PP
94
- Copyright \[co] 2006-2009 William Morgan <mworgan-sup@masanjin.net>
90
+ Copyright © 2006-2009 William Morgan \c
91
+ .MT mworgan-sup@masanjin.net
92
+ .ME \c
95
93
  .PP
96
94
  Copyright \[at] 2013-2014 Sup developers
97
95
  .PP
@@ -99,5 +97,7 @@ Permission is granted to copy and distribute this manual under the terms
99
97
  of the GNU General Public License; either version 2 or (at your option)
100
98
  any later version.
101
99
  .SH AUTHORS
102
- Sup was originally written by William Morgan <wmorgan-sup@masanjin.net>
103
- and is now developed and maintained by the Sup developers.
100
+ Sup was originally written by William Morgan \c
101
+ .MT wmorgan-sup@masanjin.net
102
+ .ME \c
103
+ \ and is now developed and maintained by the Sup developers.
data/man/sup-config.1 CHANGED
@@ -1,15 +1,11 @@
1
- .\" Automatically generated by Pandoc 2.9.2.1
1
+ .\" Automatically generated by Pandoc 3.1.9
2
2
  .\"
3
3
  .TH "SUP-CONFIG" "1" "April 9, 2012" "Sup User Manual" ""
4
- .hy
5
4
  .SH NAME
6
- .PP
7
5
  sup-config - interactive configuration tool for Sup
8
6
  .SH SYNOPSIS
9
- .PP
10
7
  sup-config [\f[I]options\f[R]]
11
8
  .SH DESCRIPTION
12
- .PP
13
9
  Interactive configuration tool for Sup.
14
10
  Won\[cq]t destroy existing configuration.
15
11
  .SH OPTIONS
@@ -27,27 +23,30 @@ Configuration file for Sup
27
23
  $HOME/.sup/sources.yaml
28
24
  Configuration file for Sup mail sources
29
25
  .SH SEE ALSO
30
- .PP
31
26
  sup(1), sup-add(1)
32
27
  .SH REPORTING BUGS
33
- .PP
34
28
  You are welcome to submit bug reports to the Sup issue tracker, located
35
29
  at
36
30
  .PP
37
- <https://github.com/sup-heliotrope/sup/issues>
31
+ \c
32
+ .UR https://github.com/sup-heliotrope/sup/issues
33
+ .UE \c
38
34
  .SH CONTACT INFORMATION
39
35
  .TP
40
36
  The Sup web page:
41
- <https://sup-heliotrope.github.io/>
37
+ \c
38
+ .UR https://sup-heliotrope.github.io/
39
+ .UE \c
42
40
  .TP
43
41
  Code repository:
44
- <https://github.com/sup-heliotrope/sup/>
42
+ \c
43
+ .UR https://github.com/sup-heliotrope/sup/
44
+ .UE \c
45
45
  .TP
46
46
  Sup Wiki:
47
- <https://github.com/sup-heliotrope/sup/wiki/>
48
- .TP
49
- Sup IRC channel:
50
- #sup \[at] freenode.net
47
+ \c
48
+ .UR https://github.com/sup-heliotrope/sup/wiki/
49
+ .UE \c
51
50
  .TP
52
51
  Mailing list:
53
52
  supmua\[at]googlegroups.com
@@ -55,11 +54,14 @@ supmua\[at]googlegroups.com
55
54
  .PP
56
55
  supmua+subscribe\[at]googlegroups.com
57
56
  .PP
58
- Archives: <https://groups.google.com/d/forum/supmua/>
57
+ Archives: \c
58
+ .UR https://groups.google.com/d/forum/supmua/
59
+ .UE \c
59
60
  .RE
60
61
  .SH COPYRIGHT
61
- .PP
62
- Copyright \[co] 2006-2009 William Morgan <mworgan-sup@masanjin.net>
62
+ Copyright © 2006-2009 William Morgan \c
63
+ .MT mworgan-sup@masanjin.net
64
+ .ME \c
63
65
  .PP
64
66
  Copyright \[at] 2013-2014 Sup developers
65
67
  .PP
@@ -67,5 +69,7 @@ Permission is granted to copy and distribute this manual under the terms
67
69
  of the GNU General Public License; either version 2 or (at your option)
68
70
  any later version.
69
71
  .SH AUTHORS
70
- Sup was originally written by William Morgan <wmorgan-sup@masanjin.net>
71
- and is now developed and maintained by the Sup developers.
72
+ Sup was originally written by William Morgan \c
73
+ .MT wmorgan-sup@masanjin.net
74
+ .ME \c
75
+ \ and is now developed and maintained by the Sup developers.
data/man/sup-dump.1 CHANGED
@@ -1,17 +1,13 @@
1
- .\" Automatically generated by Pandoc 2.9.2.1
1
+ .\" Automatically generated by Pandoc 3.1.9
2
2
  .\"
3
3
  .TH "SUP-DUMP" "1" "April 9, 2012" "Sup User Manual" ""
4
- .hy
5
4
  .SH NAME
6
- .PP
7
5
  sup-dump - dumps message state from Sup index
8
6
  .SH SYNOPSIS
9
- .PP
10
7
  sup-dump [\f[I]options\f[R]]
11
8
  .SH DESCRIPTION
12
- .PP
13
9
  Dumps all message state from the Sup index to standard out.
14
- You can later use sup-sync --restored --restore to recover the index.
10
+ You can later use sup-sync --restored --restore to recover the index.
15
11
  .PP
16
12
  This tool is primarily useful in the event that a Sup upgrade breaks
17
13
  index format compatibility.
@@ -23,44 +19,42 @@ Print version and exit
23
19
  -h, --help
24
20
  Show help message
25
21
  .SH EXAMPLES
26
- .PP
27
22
  Dump message state and store in file
28
23
  .IP
29
- .nf
30
- \f[C]
24
+ .EX
31
25
  sup-dump > filename
32
- \f[R]
33
- .fi
26
+ .EE
34
27
  .PP
35
28
  Dump message state and compress output to store in file
36
29
  .IP
37
- .nf
38
- \f[C]
30
+ .EX
39
31
  sup-dump | bzip2 > filename.bz2
40
- \f[R]
41
- .fi
32
+ .EE
42
33
  .SH SEE ALSO
43
- .PP
44
34
  sup(1), sup-sync(1), sup-import-dump(1)
45
35
  .SH REPORTING BUGS
46
- .PP
47
36
  You are welcome to submit bug reports to the Sup issue tracker, located
48
37
  at
49
38
  .PP
50
- <https://github.com/sup-heliotrope/sup/issues>
39
+ \c
40
+ .UR https://github.com/sup-heliotrope/sup/issues
41
+ .UE \c
51
42
  .SH CONTACT INFORMATION
52
43
  .TP
53
44
  The Sup web page:
54
- <https://sup-heliotrope.github.io/>
45
+ \c
46
+ .UR https://sup-heliotrope.github.io/
47
+ .UE \c
55
48
  .TP
56
49
  Code repository:
57
- <https://github.com/sup-heliotrope/sup/>
50
+ \c
51
+ .UR https://github.com/sup-heliotrope/sup/
52
+ .UE \c
58
53
  .TP
59
54
  Sup Wiki:
60
- <https://github.com/sup-heliotrope/sup/wiki/>
61
- .TP
62
- Sup IRC channel:
63
- #sup \[at] freenode.net
55
+ \c
56
+ .UR https://github.com/sup-heliotrope/sup/wiki/
57
+ .UE \c
64
58
  .TP
65
59
  Mailing list:
66
60
  supmua\[at]googlegroups.com
@@ -68,11 +62,14 @@ supmua\[at]googlegroups.com
68
62
  .PP
69
63
  supmua+subscribe\[at]googlegroups.com
70
64
  .PP
71
- Archives: <https://groups.google.com/d/forum/supmua/>
65
+ Archives: \c
66
+ .UR https://groups.google.com/d/forum/supmua/
67
+ .UE \c
72
68
  .RE
73
69
  .SH COPYRIGHT
74
- .PP
75
- Copyright \[co] 2006-2009 William Morgan <mworgan-sup@masanjin.net>
70
+ Copyright © 2006-2009 William Morgan \c
71
+ .MT mworgan-sup@masanjin.net
72
+ .ME \c
76
73
  .PP
77
74
  Copyright \[at] 2013-2014 Sup developers
78
75
  .PP
@@ -80,5 +77,7 @@ Permission is granted to copy and distribute this manual under the terms
80
77
  of the GNU General Public License; either version 2 or (at your option)
81
78
  any later version.
82
79
  .SH AUTHORS
83
- Sup was originally written by William Morgan <wmorgan-sup@masanjin.net>
84
- and is now developed and maintained by the Sup developers.
80
+ Sup was originally written by William Morgan \c
81
+ .MT wmorgan-sup@masanjin.net
82
+ .ME \c
83
+ \ and is now developed and maintained by the Sup developers.
@@ -1,19 +1,15 @@
1
- .\" Automatically generated by Pandoc 2.9.2.1
1
+ .\" Automatically generated by Pandoc 3.1.9
2
2
  .\"
3
3
  .TH "SUP-IMPORT-DUMP" "1" "April 9, 2012" "Sup User Manual" ""
4
- .hy
5
4
  .SH NAME
6
- .PP
7
5
  sup-import-dump - import message state dump to Sup index
8
6
  .SH SYNOPSIS
9
- .PP
10
7
  sup-import-dump [\f[I]options\f[R]] dumpfile
11
8
  .SH DESCRIPTION
12
- .PP
13
9
  Imports message state previously exported by sup-dump into the index.
14
10
  sup-import-dump operates on the index only, so the messages must have
15
11
  already been added using sup-sync.
16
- If you need to recreate the index, see sup-sync --restore instead.
12
+ If you need to recreate the index, see sup-sync --restore instead.
17
13
  .PP
18
14
  Messages not mentioned in the dump file will not be modified.
19
15
  .SH OPTIONS
@@ -43,27 +39,30 @@ Show version information
43
39
  -h, --help
44
40
  Show help message
45
41
  .SH SEE ALSO
46
- .PP
47
42
  sup(1), sup-sync(1), sup-dump(1)
48
43
  .SH REPORTING BUGS
49
- .PP
50
44
  You are welcome to submit bug reports to the Sup issue tracker, located
51
45
  at
52
46
  .PP
53
- <https://github.com/sup-heliotrope/sup/issues>
47
+ \c
48
+ .UR https://github.com/sup-heliotrope/sup/issues
49
+ .UE \c
54
50
  .SH CONTACT INFORMATION
55
51
  .TP
56
52
  The Sup web page:
57
- <https://sup-heliotrope.github.io/>
53
+ \c
54
+ .UR https://sup-heliotrope.github.io/
55
+ .UE \c
58
56
  .TP
59
57
  Code repository:
60
- <https://github.com/sup-heliotrope/sup/>
58
+ \c
59
+ .UR https://github.com/sup-heliotrope/sup/
60
+ .UE \c
61
61
  .TP
62
62
  Sup Wiki:
63
- <https://github.com/sup-heliotrope/sup/wiki/>
64
- .TP
65
- Sup IRC channel:
66
- #sup \[at] freenode.net
63
+ \c
64
+ .UR https://github.com/sup-heliotrope/sup/wiki/
65
+ .UE \c
67
66
  .TP
68
67
  Mailing list:
69
68
  supmua\[at]googlegroups.com
@@ -71,11 +70,14 @@ supmua\[at]googlegroups.com
71
70
  .PP
72
71
  supmua+subscribe\[at]googlegroups.com
73
72
  .PP
74
- Archives: <https://groups.google.com/d/forum/supmua/>
73
+ Archives: \c
74
+ .UR https://groups.google.com/d/forum/supmua/
75
+ .UE \c
75
76
  .RE
76
77
  .SH COPYRIGHT
77
- .PP
78
- Copyright \[co] 2006-2009 William Morgan <mworgan-sup@masanjin.net>
78
+ Copyright © 2006-2009 William Morgan \c
79
+ .MT mworgan-sup@masanjin.net
80
+ .ME \c
79
81
  .PP
80
82
  Copyright \[at] 2013-2014 Sup developers
81
83
  .PP
@@ -83,5 +85,7 @@ Permission is granted to copy and distribute this manual under the terms
83
85
  of the GNU General Public License; either version 2 or (at your option)
84
86
  any later version.
85
87
  .SH AUTHORS
86
- Sup was originally written by William Morgan <wmorgan-sup@masanjin.net>
87
- and is now developed and maintained by the Sup developers.
88
+ Sup was originally written by William Morgan \c
89
+ .MT wmorgan-sup@masanjin.net
90
+ .ME \c
91
+ \ and is now developed and maintained by the Sup developers.
@@ -1,15 +1,11 @@
1
- .\" Automatically generated by Pandoc 2.9.2.1
1
+ .\" Automatically generated by Pandoc 3.1.9
2
2
  .\"
3
3
  .TH "SUP-SYNC" "1" "September 3, 2014" "Sup User Manual" ""
4
- .hy
5
4
  .SH NAME
6
- .PP
7
5
  sup-psych-ify-config-files - migrate Sup configuration
8
6
  .SH SYNOPSIS
9
- .PP
10
7
  sup-psych-ify-config-files
11
8
  .SH DESCRIPTION
12
- .PP
13
9
  \f[B]YAML migration is deprecated by Ruby 2.1 and newer.\f[R]
14
10
  .PP
15
11
  If sup-psych-ify-config-files is executed by Ruby <= 2.0 it migrates the
@@ -28,27 +24,30 @@ Sup configuration file
28
24
  $HOME/.sup/sources.yaml
29
25
  Configuration file for Sup mail sources
30
26
  .SH SEE ALSO
31
- .PP
32
27
  sup(1), sup-add(1), sup-config(1), sup-dump(1)
33
28
  .SH REPORTING BUGS
34
- .PP
35
29
  You are welcome to submit bug reports to the Sup issue tracker, located
36
30
  at
37
31
  .PP
38
- <https://github.com/sup-heliotrope/sup/issues>
32
+ \c
33
+ .UR https://github.com/sup-heliotrope/sup/issues
34
+ .UE \c
39
35
  .SH CONTACT INFORMATION
40
36
  .TP
41
37
  The Sup web page:
42
- <https://sup-heliotrope.github.io/>
38
+ \c
39
+ .UR https://sup-heliotrope.github.io/
40
+ .UE \c
43
41
  .TP
44
42
  Code repository:
45
- <https://github.com/sup-heliotrope/sup/>
43
+ \c
44
+ .UR https://github.com/sup-heliotrope/sup/
45
+ .UE \c
46
46
  .TP
47
47
  Sup Wiki:
48
- <https://github.com/sup-heliotrope/sup/wiki/>
49
- .TP
50
- Sup IRC channel:
51
- #sup \[at] freenode.net
48
+ \c
49
+ .UR https://github.com/sup-heliotrope/sup/wiki/
50
+ .UE \c
52
51
  .TP
53
52
  Mailing list:
54
53
  supmua\[at]googlegroups.com
@@ -56,11 +55,14 @@ supmua\[at]googlegroups.com
56
55
  .PP
57
56
  supmua+subscribe\[at]googlegroups.com
58
57
  .PP
59
- Archives: <https://groups.google.com/d/forum/supmua/>
58
+ Archives: \c
59
+ .UR https://groups.google.com/d/forum/supmua/
60
+ .UE \c
60
61
  .RE
61
62
  .SH COPYRIGHT
62
- .PP
63
- Copyright \[co] 2006-2009 William Morgan <mworgan-sup@masanjin.net>
63
+ Copyright © 2006-2009 William Morgan \c
64
+ .MT mworgan-sup@masanjin.net
65
+ .ME \c
64
66
  .PP
65
67
  Copyright \[at] 2013-2014 Sup developers
66
68
  .PP
@@ -68,5 +70,7 @@ Permission is granted to copy and distribute this manual under the terms
68
70
  of the GNU General Public License; either version 2 or (at your option)
69
71
  any later version.
70
72
  .SH AUTHORS
71
- Sup was originally written by William Morgan <wmorgan-sup@masanjin.net>
72
- and is now developed and maintained by the Sup developers.
73
+ Sup was originally written by William Morgan \c
74
+ .MT wmorgan-sup@masanjin.net
75
+ .ME \c
76
+ \ and is now developed and maintained by the Sup developers.
@@ -1,15 +1,11 @@
1
- .\" Automatically generated by Pandoc 2.9.2.1
1
+ .\" Automatically generated by Pandoc 3.1.9
2
2
  .\"
3
3
  .TH "SUP-RECOVER-SOURCES" "1" "April 9, 2012" "Sup User Manual" ""
4
- .hy
5
4
  .SH NAME
6
- .PP
7
5
  sup-recover-sources - rebuild a lost Sup source configuration file
8
6
  .SH SYNOPSIS
9
- .PP
10
7
  sup-recover-sources [\f[I]options\f[R]] [\f[I]source uri\&...\f[R]]
11
8
  .SH DESCRIPTION
12
- .PP
13
9
  Rebuilds a lost sources.yaml file by reading messages from a list of
14
10
  sources and determining, for each source, the most prevalent `source_id'
15
11
  field of messages from that source in the index.
@@ -47,27 +43,30 @@ Show help message
47
43
  $HOME/.sup/sources.yaml
48
44
  Configuration file for Sup mail sources
49
45
  .SH SEE ALSO
50
- .PP
51
46
  sup(1), sup-config(1), sup-add(1), sup-import(1)
52
47
  .SH REPORTING BUGS
53
- .PP
54
48
  You are welcome to submit bug reports to the Sup issue tracker, located
55
49
  at
56
50
  .PP
57
- <https://github.com/sup-heliotrope/sup/issues>
51
+ \c
52
+ .UR https://github.com/sup-heliotrope/sup/issues
53
+ .UE \c
58
54
  .SH CONTACT INFORMATION
59
55
  .TP
60
56
  The Sup web page:
61
- <https://sup-heliotrope.github.io/>
57
+ \c
58
+ .UR https://sup-heliotrope.github.io/
59
+ .UE \c
62
60
  .TP
63
61
  Code repository:
64
- <https://github.com/sup-heliotrope/sup/>
62
+ \c
63
+ .UR https://github.com/sup-heliotrope/sup/
64
+ .UE \c
65
65
  .TP
66
66
  Sup Wiki:
67
- <https://github.com/sup-heliotrope/sup/wiki/>
68
- .TP
69
- Sup IRC channel:
70
- #sup \[at] freenode.net
67
+ \c
68
+ .UR https://github.com/sup-heliotrope/sup/wiki/
69
+ .UE \c
71
70
  .TP
72
71
  Mailing list:
73
72
  supmua\[at]googlegroups.com
@@ -75,11 +74,14 @@ supmua\[at]googlegroups.com
75
74
  .PP
76
75
  supmua+subscribe\[at]googlegroups.com
77
76
  .PP
78
- Archives: <https://groups.google.com/d/forum/supmua/>
77
+ Archives: \c
78
+ .UR https://groups.google.com/d/forum/supmua/
79
+ .UE \c
79
80
  .RE
80
81
  .SH COPYRIGHT
81
- .PP
82
- Copyright \[co] 2006-2009 William Morgan <mworgan-sup@masanjin.net>
82
+ Copyright © 2006-2009 William Morgan \c
83
+ .MT mworgan-sup@masanjin.net
84
+ .ME \c
83
85
  .PP
84
86
  Copyright \[at] 2013-2014 Sup developers
85
87
  .PP
@@ -87,5 +89,7 @@ Permission is granted to copy and distribute this manual under the terms
87
89
  of the GNU General Public License; either version 2 or (at your option)
88
90
  any later version.
89
91
  .SH AUTHORS
90
- Sup was originally written by William Morgan <wmorgan-sup@masanjin.net>
91
- and is now developed and maintained by the Sup developers.
92
+ Sup was originally written by William Morgan \c
93
+ .MT wmorgan-sup@masanjin.net
94
+ .ME \c
95
+ \ and is now developed and maintained by the Sup developers.
@@ -1,15 +1,11 @@
1
- .\" Automatically generated by Pandoc 2.9.2.1
1
+ .\" Automatically generated by Pandoc 3.1.9
2
2
  .\"
3
3
  .TH "SUP-SYNC-BACK-MAILDIR" "1" "August 25, 2014" "Sup User Manual" ""
4
- .hy
5
4
  .SH NAME
6
- .PP
7
5
  sup-sync-back-maildir - Export Xapian entries to Maildir sources on disk
8
6
  .SH SYNOPSIS
9
- .PP
10
7
  sup-sync-back-maildir [\f[I]options\f[R]] [\f[I]source uri\&...\f[R]]
11
8
  .SH DESCRIPTION
12
- .PP
13
9
  This script parses the Xapian entries for a given Maildir source and
14
10
  renames (changes maildir flags) e-mail files on disk according to the
15
11
  labels stored in the index.
@@ -57,28 +53,31 @@ Show brief help message
57
53
  $HOME/.sup/sources.yaml
58
54
  Configuration file for Sup mail sources
59
55
  .SH SEE ALSO
60
- .PP
61
56
  sup(1), sup-add(1), sup-config(1), sup-dump(1), sup-sync(1),
62
57
  sup-tweak-labels(1)
63
58
  .SH REPORTING BUGS
64
- .PP
65
59
  You are welcome to submit bug reports to the Sup issue tracker, located
66
60
  at
67
61
  .PP
68
- <https://github.com/sup-heliotrope/sup/issues>
62
+ \c
63
+ .UR https://github.com/sup-heliotrope/sup/issues
64
+ .UE \c
69
65
  .SH CONTACT INFORMATION
70
66
  .TP
71
67
  The Sup web page:
72
- <https://sup-heliotrope.github.io/>
68
+ \c
69
+ .UR https://sup-heliotrope.github.io/
70
+ .UE \c
73
71
  .TP
74
72
  Code repository:
75
- <https://github.com/sup-heliotrope/sup/>
73
+ \c
74
+ .UR https://github.com/sup-heliotrope/sup/
75
+ .UE \c
76
76
  .TP
77
77
  Sup Wiki:
78
- <https://github.com/sup-heliotrope/sup/wiki/>
79
- .TP
80
- Sup IRC channel:
81
- #sup \[at] freenode.net
78
+ \c
79
+ .UR https://github.com/sup-heliotrope/sup/wiki/
80
+ .UE \c
82
81
  .TP
83
82
  Mailing list:
84
83
  supmua\[at]googlegroups.com
@@ -86,11 +85,14 @@ supmua\[at]googlegroups.com
86
85
  .PP
87
86
  supmua+subscribe\[at]googlegroups.com
88
87
  .PP
89
- Archives: <https://groups.google.com/d/forum/supmua/>
88
+ Archives: \c
89
+ .UR https://groups.google.com/d/forum/supmua/
90
+ .UE \c
90
91
  .RE
91
92
  .SH COPYRIGHT
92
- .PP
93
- Copyright \[co] 2006-2009 William Morgan <mworgan-sup@masanjin.net>
93
+ Copyright © 2006-2009 William Morgan \c
94
+ .MT mworgan-sup@masanjin.net
95
+ .ME \c
94
96
  .PP
95
97
  Copyright \[at] 2013-2014 Sup developers
96
98
  .PP
@@ -98,5 +100,7 @@ Permission is granted to copy and distribute this manual under the terms
98
100
  of the GNU General Public License; either version 2 or (at your option)
99
101
  any later version.
100
102
  .SH AUTHORS
101
- Sup was originally written by William Morgan <wmorgan-sup@masanjin.net>
102
- and is now developed and maintained by the Sup developers.
103
+ Sup was originally written by William Morgan \c
104
+ .MT wmorgan-sup@masanjin.net
105
+ .ME \c
106
+ \ and is now developed and maintained by the Sup developers.