sup 1.1 → 1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/checks.yml +27 -39
- data/CONTRIBUTORS +3 -1
- data/History.txt +16 -3
- data/Manifest.txt +22 -0
- data/README.md +0 -1
- data/bin/sup-sync-back-maildir +1 -1
- data/contrib/nix/Gemfile +22 -0
- data/contrib/nix/Gemfile.lock +80 -0
- data/contrib/nix/README +7 -0
- data/contrib/nix/gem-install-shell.nix +12 -0
- data/contrib/nix/gemset.nix +339 -0
- data/contrib/nix/ruby2.4-Gemfile.lock +81 -0
- data/contrib/nix/ruby2.4-gemset.nix +309 -0
- data/contrib/nix/ruby2.4-shell.nix +30 -0
- data/contrib/nix/ruby2.5-Gemfile.lock +81 -0
- data/contrib/nix/ruby2.5-gemset.nix +309 -0
- data/contrib/nix/ruby2.5-shell.nix +30 -0
- data/contrib/nix/ruby2.6-Gemfile.lock +83 -0
- data/contrib/nix/ruby2.6-gemset.nix +319 -0
- data/contrib/nix/ruby2.6-shell.nix +30 -0
- data/contrib/nix/ruby2.7-shell.nix +23 -0
- data/contrib/nix/ruby3.0-shell.nix +23 -0
- data/contrib/nix/ruby3.1-shell.nix +23 -0
- data/contrib/nix/ruby3.2-shell.nix +23 -0
- data/contrib/nix/ruby3.3-shell.nix +23 -0
- data/contrib/nix/test-all-rubies.sh +6 -0
- data/doc/Hooks.txt +1 -1
- data/ext/mkrf_conf_xapian.rb +2 -2
- data/lib/sup/crypto.rb +1 -1
- data/lib/sup/index.rb +2 -2
- data/lib/sup/maildir.rb +1 -1
- data/lib/sup/mbox.rb +1 -1
- data/lib/sup/message.rb +2 -2
- data/lib/sup/modes/console_mode.rb +1 -1
- data/lib/sup/thread.rb +20 -20
- data/lib/sup/util.rb +3 -5
- data/lib/sup/version.rb +1 -1
- data/man/sup-add.1 +27 -27
- data/man/sup-config.1 +23 -19
- data/man/sup-dump.1 +28 -29
- data/man/sup-import-dump.1 +24 -20
- data/man/sup-psych-ify-config-files.1 +23 -19
- data/man/sup-recover-sources.1 +23 -19
- data/man/sup-sync-back-maildir.1 +23 -19
- data/man/sup-sync.1 +23 -19
- data/man/sup-tweak-labels.1 +23 -19
- data/man/sup.1 +23 -19
- data/shell.nix +1 -0
- data/test/integration/test_maildir.rb +3 -0
- data/test/integration/test_mbox.rb +3 -0
- data/test/integration/test_sup-sync-back-maildir.rb +40 -0
- data/test/test_header_parsing.rb +2 -2
- metadata +26 -3
data/lib/sup/version.rb
CHANGED
data/man/sup-add.1
CHANGED
|
@@ -1,36 +1,28 @@
|
|
|
1
|
-
.\" Automatically generated by Pandoc
|
|
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
|
-
.
|
|
18
|
-
\f[C]
|
|
13
|
+
.EX
|
|
19
14
|
mbox:<path to mbox file>, or
|
|
20
15
|
|
|
21
16
|
mbox://<path to mbox file>
|
|
22
|
-
|
|
23
|
-
.fi
|
|
17
|
+
.EE
|
|
24
18
|
.PP
|
|
25
19
|
For Maildir folders, use the form:
|
|
26
20
|
.IP
|
|
27
|
-
.
|
|
28
|
-
\f[C]
|
|
21
|
+
.EX
|
|
29
22
|
maildir:<path to Maildir directory>; or
|
|
30
23
|
|
|
31
24
|
maildir://<path to Maildir directory>
|
|
32
|
-
|
|
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
|
-
|
|
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
|
-
|
|
65
|
+
\c
|
|
66
|
+
.UR https://sup-heliotrope.github.io/
|
|
67
|
+
.UE \c
|
|
74
68
|
.TP
|
|
75
69
|
Code repository:
|
|
76
|
-
|
|
70
|
+
\c
|
|
71
|
+
.UR https://github.com/sup-heliotrope/sup/
|
|
72
|
+
.UE \c
|
|
77
73
|
.TP
|
|
78
74
|
Sup Wiki:
|
|
79
|
-
|
|
80
|
-
.
|
|
81
|
-
|
|
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:
|
|
85
|
+
Archives: \c
|
|
86
|
+
.UR https://groups.google.com/d/forum/supmua/
|
|
87
|
+
.UE \c
|
|
91
88
|
.RE
|
|
92
89
|
.SH COPYRIGHT
|
|
93
|
-
|
|
94
|
-
|
|
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
|
|
103
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
37
|
+
\c
|
|
38
|
+
.UR https://sup-heliotrope.github.io/
|
|
39
|
+
.UE \c
|
|
42
40
|
.TP
|
|
43
41
|
Code repository:
|
|
44
|
-
|
|
42
|
+
\c
|
|
43
|
+
.UR https://github.com/sup-heliotrope/sup/
|
|
44
|
+
.UE \c
|
|
45
45
|
.TP
|
|
46
46
|
Sup Wiki:
|
|
47
|
-
|
|
48
|
-
.
|
|
49
|
-
|
|
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:
|
|
57
|
+
Archives: \c
|
|
58
|
+
.UR https://groups.google.com/d/forum/supmua/
|
|
59
|
+
.UE \c
|
|
59
60
|
.RE
|
|
60
61
|
.SH COPYRIGHT
|
|
61
|
-
|
|
62
|
-
|
|
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
|
|
71
|
-
|
|
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
|
|
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
|
|
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
|
-
.
|
|
30
|
-
\f[C]
|
|
24
|
+
.EX
|
|
31
25
|
sup-dump > filename
|
|
32
|
-
|
|
33
|
-
.fi
|
|
26
|
+
.EE
|
|
34
27
|
.PP
|
|
35
28
|
Dump message state and compress output to store in file
|
|
36
29
|
.IP
|
|
37
|
-
.
|
|
38
|
-
\f[C]
|
|
30
|
+
.EX
|
|
39
31
|
sup-dump | bzip2 > filename.bz2
|
|
40
|
-
|
|
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
|
-
|
|
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
|
-
|
|
45
|
+
\c
|
|
46
|
+
.UR https://sup-heliotrope.github.io/
|
|
47
|
+
.UE \c
|
|
55
48
|
.TP
|
|
56
49
|
Code repository:
|
|
57
|
-
|
|
50
|
+
\c
|
|
51
|
+
.UR https://github.com/sup-heliotrope/sup/
|
|
52
|
+
.UE \c
|
|
58
53
|
.TP
|
|
59
54
|
Sup Wiki:
|
|
60
|
-
|
|
61
|
-
.
|
|
62
|
-
|
|
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:
|
|
65
|
+
Archives: \c
|
|
66
|
+
.UR https://groups.google.com/d/forum/supmua/
|
|
67
|
+
.UE \c
|
|
72
68
|
.RE
|
|
73
69
|
.SH COPYRIGHT
|
|
74
|
-
|
|
75
|
-
|
|
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
|
|
84
|
-
|
|
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.
|
data/man/sup-import-dump.1
CHANGED
|
@@ -1,19 +1,15 @@
|
|
|
1
|
-
.\" Automatically generated by Pandoc
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
53
|
+
\c
|
|
54
|
+
.UR https://sup-heliotrope.github.io/
|
|
55
|
+
.UE \c
|
|
58
56
|
.TP
|
|
59
57
|
Code repository:
|
|
60
|
-
|
|
58
|
+
\c
|
|
59
|
+
.UR https://github.com/sup-heliotrope/sup/
|
|
60
|
+
.UE \c
|
|
61
61
|
.TP
|
|
62
62
|
Sup Wiki:
|
|
63
|
-
|
|
64
|
-
.
|
|
65
|
-
|
|
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:
|
|
73
|
+
Archives: \c
|
|
74
|
+
.UR https://groups.google.com/d/forum/supmua/
|
|
75
|
+
.UE \c
|
|
75
76
|
.RE
|
|
76
77
|
.SH COPYRIGHT
|
|
77
|
-
|
|
78
|
-
|
|
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
|
|
87
|
-
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
38
|
+
\c
|
|
39
|
+
.UR https://sup-heliotrope.github.io/
|
|
40
|
+
.UE \c
|
|
43
41
|
.TP
|
|
44
42
|
Code repository:
|
|
45
|
-
|
|
43
|
+
\c
|
|
44
|
+
.UR https://github.com/sup-heliotrope/sup/
|
|
45
|
+
.UE \c
|
|
46
46
|
.TP
|
|
47
47
|
Sup Wiki:
|
|
48
|
-
|
|
49
|
-
.
|
|
50
|
-
|
|
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:
|
|
58
|
+
Archives: \c
|
|
59
|
+
.UR https://groups.google.com/d/forum/supmua/
|
|
60
|
+
.UE \c
|
|
60
61
|
.RE
|
|
61
62
|
.SH COPYRIGHT
|
|
62
|
-
|
|
63
|
-
|
|
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
|
|
72
|
-
|
|
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.
|
data/man/sup-recover-sources.1
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
|
-
.\" Automatically generated by Pandoc
|
|
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
|
-
|
|
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
|
-
|
|
57
|
+
\c
|
|
58
|
+
.UR https://sup-heliotrope.github.io/
|
|
59
|
+
.UE \c
|
|
62
60
|
.TP
|
|
63
61
|
Code repository:
|
|
64
|
-
|
|
62
|
+
\c
|
|
63
|
+
.UR https://github.com/sup-heliotrope/sup/
|
|
64
|
+
.UE \c
|
|
65
65
|
.TP
|
|
66
66
|
Sup Wiki:
|
|
67
|
-
|
|
68
|
-
.
|
|
69
|
-
|
|
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:
|
|
77
|
+
Archives: \c
|
|
78
|
+
.UR https://groups.google.com/d/forum/supmua/
|
|
79
|
+
.UE \c
|
|
79
80
|
.RE
|
|
80
81
|
.SH COPYRIGHT
|
|
81
|
-
|
|
82
|
-
|
|
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
|
|
91
|
-
|
|
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.
|
data/man/sup-sync-back-maildir.1
CHANGED
|
@@ -1,15 +1,11 @@
|
|
|
1
|
-
.\" Automatically generated by Pandoc
|
|
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
|
-
|
|
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
|
-
|
|
68
|
+
\c
|
|
69
|
+
.UR https://sup-heliotrope.github.io/
|
|
70
|
+
.UE \c
|
|
73
71
|
.TP
|
|
74
72
|
Code repository:
|
|
75
|
-
|
|
73
|
+
\c
|
|
74
|
+
.UR https://github.com/sup-heliotrope/sup/
|
|
75
|
+
.UE \c
|
|
76
76
|
.TP
|
|
77
77
|
Sup Wiki:
|
|
78
|
-
|
|
79
|
-
.
|
|
80
|
-
|
|
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:
|
|
88
|
+
Archives: \c
|
|
89
|
+
.UR https://groups.google.com/d/forum/supmua/
|
|
90
|
+
.UE \c
|
|
90
91
|
.RE
|
|
91
92
|
.SH COPYRIGHT
|
|
92
|
-
|
|
93
|
-
|
|
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
|
|
102
|
-
|
|
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.
|