summaryrefslogtreecommitdiff
path: root/manpages/feed2imap-opmlimport.xml
blob: d8055d93cde1b36b824f6adc1189204f7df5fb2c (plain)
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
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN"
	"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
	[
	<!ENTITY program   "feed2imap-opmlimport">
	<!ENTITY command   "<command>&program;</command>">
	<!ENTITY firstname "Lucas">
	<!ENTITY surname   "Nussbaum">
	<!ENTITY address   "lucas@lucas-nussbaum.net">
	]>
<refentry>
<refentryinfo>
	<author>
		<firstname>&firstname;</firstname>
		<surname>&surname;</surname>
	</author>
	<address>&address;</address>
	<copyright>
		<year>2005</year>
		<holder>&firstname; &surname;</holder>
	</copyright>
	<date>Jul 25, 2005</date>
</refentryinfo>
<refmeta>
	<refentrytitle>&program;</refentrytitle>
	<manvolnum>1</manvolnum>
</refmeta>
<refnamediv>
	<refname>&program;</refname>
	<refpurpose>Convert an OPML subscription list to a feed2imap config file</refpurpose>
</refnamediv>
<refsynopsisdiv>
	<cmdsynopsis>
		<command>feed2imap-opmlimport</command>
	</cmdsynopsis>
</refsynopsisdiv>
<refsect1>
	<title>DESCRIPTION</title>

	<para><command>feed2imap-opmlimport</command> reads an OPML subscription list on standard input and outputs a feed2imap configuration file on standard output. The resulting configuration file will require some tweaking.</para>

</refsect1>
<refsect1>
	<title>BUGS</title>
	<para>Should probably accept parameters to be able to change default values.</para>

</refsect1>
<refsect1>
	<title>SEE ALSO</title>

	<para>Homepage : 
	<ulink url="http://home.gna.org/feed2imap/">http://home.gna.org/feed2imap/</ulink></para>

	<para>
	<citerefentry><refentrytitle>feed2imaprc</refentrytitle><manvolnum>5</manvolnum></citerefentry>,
	<citerefentry><refentrytitle>feed2imap</refentrytitle><manvolnum>1</manvolnum></citerefentry>
	</para>
</refsect1>
<refsect1>
	<title>AUTHOR</title>
	<para>Copyright (C) 2005 Lucas Nussbaum <email>lucas@lucas-nussbaum.net</email></para>

	<para>This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by the
	Free Software Foundation; either version 2 of the License, or (at your
	option) any later version.</para>

	<para>This program is distributed in the hope that it will be useful, but
	WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
	or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
	more details.</para>

</refsect1>
</refentry>
/tr> 2014-04-18Specify variable gpg.Jason A. Donenfeld1-1/+1 2014-04-18style: don't escape new line on &&Jason A. Donenfeld1-2/+2 2014-04-18reencryption: remove temporary file on failureJason A. Donenfeld1-1/+1 2014-04-18reencryption: only reencrypt files when requiredJason A. Donenfeld2-16/+37 2014-04-17cp: typo as cvJason A. Donenfeld1-1/+1 2014-04-17bash: gpg_id is localJason A. Donenfeld1-0/+1 2014-04-17move/copy: always reencrypt passwords at destinationJason A. Donenfeld5-25/+56 2014-04-17makefile: allow platform files with gnu sedJason A. Donenfeld1-7/+8 Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-04-17mv: Add pass mv/rename supportJason A. Donenfeld5-3/+78 Based-on-work-by: Matthieu Weber <mweber@free.fr> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-04-17revelation2pass: add plain XML importJavali1-11/+15 I found that revelatio2pass.py script doesn't work. It can not decrypt my password file. I got following error message: raceback (most recent call last): File "git/password-store/contrib/importers/revelation2pass.py", line 159, in <module> main(args.FILE, verbose=args.verbose, xml=args.xml) File "git/password-store/contrib/importers/revelation2pass.py", line 140, in main cleardata_gz = decrypt_gz(password, data) File "git/password-store/contrib/importers/revelation2pass.py", line 117, in decrypt_gz ct = c.decrypt(cipher_text[28:]) File "/usr/lib/python2.7/site-packages/Crypto/Cipher/blockalgo.py", line 295, in decrypt return self._cipher.decrypt(ciphertext) I was unable to fix the problem, but I created a workaround, that add plain XML import option to the revelation2pass.py script. Revelation can export its password file as plain XML format. 2014-04-17platform: add cygwin supportJason A. Donenfeld2-1/+17 According to Brandon Jones, all we need to do is adjust /dev/clipboard from xclip. So we add a platform specific file to do so. http://www.relaytheurgency.com/2014/04/pass-in-cygwin-relatively-simple.html Suggested-by: Brandon Jones <jones.brandon.lee@gmail.com> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>