[Bug 606365] Re: unable to import config with inlined ca, cert, key or tls-auth

2015-10-22 Thread Frol
Just FYI, this feature is already implemented in KDE (plasma-nm) -
https://bugs.kde.org/show_bug.cgi?id=349282

** Bug watch added: KDE Bug Tracking System #349282
   https://bugs.kde.org/show_bug.cgi?id=349282

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/606365

Title:
  unable to import config with inlined ca, cert, key or tls-auth

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-openvpn/+bug/606365/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 606365] Re: unable to import config with inlined ca, cert, key or tls-auth

2015-09-03 Thread Frol
@Nicolas It is not the answer for *inlined* certificates. You can
extract inline certificates into separate files, but it is not what
people requested here.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/606365

Title:
  unable to import config with inlined ca, cert, key or tls-auth

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-openvpn/+bug/606365/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 606365] Re: unable to import config with inlined ca, cert, key or tls-auth

2015-02-19 Thread Frol
2015... Nothing was done yet. Let's make some movements.

Here is the import function:
http://bazaar.launchpad.net/~network-manager/network-manager-openvpn/trunk/view/head:/properties/import-export.c#L268

and here are the lines of ca/cert/key tags parsing:
http://bazaar.launchpad.net/~network-manager/network-manager-openvpn/trunk/view/head:/properties/import-export.c#L563

My suggestion is to save inline ca/cert/key inside of a Network Manager 
configurations file encoded into base64 (again) with inline: prefix, e.g.:
[connection]
id=MyVPN
uuid=ac9d354e-03ef-4063-8c96-4a40bd17bea6
type=vpn

[vpn]
service-type=org.freedesktop.NetworkManager.openvpn
connection-type=tls
remote=myvpnhost.com
cert-pass-flags=0
tap-dev=no
proto-tcp=no
mssfix=no
ca=inline:base64 coded
cert=inline:base64 coded
key=inline:base64 coded


Another approach would be to parse as much information from *.ovpn file as we 
can, remove parsed parts, encode rest of the file into a base64 string, and 
save it into a Network Manager connection config file. This may help to deal 
with extra options like inline certificates, but may also cause unexpected 
configuration conflicts.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/606365

Title:
  unable to import config with inlined ca, cert, key or tls-auth

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager-openvpn/+bug/606365/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1181106] Re: Failed to change profile to A2DP in 13.04 (Raring), 13.10 (saucy), and 14.04 (trusty)

2014-04-18 Thread Frol
I can confirm that Luc's load-modules do the trick on 14.04. After I run these 
commands:
pactl load-module module-bluetooth-discover
pactl load-module module-switch-on-connect

my Rapoo headset works again.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1181106

Title:
  Failed to change profile to A2DP in 13.04 (Raring), 13.10 (saucy), and
  14.04 (trusty)

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluez/+bug/1181106/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1181106] Re: Failed to change profile to A2DP in 13.04 (Raring), 13.10 (saucy), and 14.04 (trusty)

2014-04-18 Thread Frol
Ooops, I'm sorry. That helped only to finally connect to my headset, but
I indeed cannot switch to A2DP.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1181106

Title:
  Failed to change profile to A2DP in 13.04 (Raring), 13.10 (saucy), and
  14.04 (trusty)

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluez/+bug/1181106/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 580961] Re: unzip fails to deal correctly with filename encodings

2012-06-07 Thread frol
@Lasee: It's fault of the debian/patches/04-unzip60-alt-iconv-utf8 patch
that contains the following:

[...]
+/* A mapping of local - archive charsets used by default to convert filenames
+ * of DOS/Windows Zip archives. Currently very basic. */
+static CHARSET_MAP dos_charset_map[] = {
+{ ANSI_X3.4-1968, CP850 },
+{ ISO-8859-1, CP850 },
+{ CP1252, CP850 },
+{ UTF-8, CP866 },
+{ KOI8-R, CP866 },
+{ KOI8-U, CP866 },
+{ ISO-8859-5, CP866 }
+};
[...]

Althouth it's simple to add missing mappings to that table, the patch is
broken because it doesn't take language into account, which may cause
problems if user's charset is UTF-8 and the language is not russian.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/580961

Title:
  unzip fails to deal correctly with filename encodings

To manage notifications about this bug go to:
https://bugs.launchpad.net/file-roller/+bug/580961/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 580961] Re: unzip fails to deal correctly with filename encodings

2011-04-05 Thread frol
OK, I copied libnatspec to ppa:frol/zip-i18n and restored support for
CP737 and CP775.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/580961

Title:
  unzip fails to deal correctly with filename encodings

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 580961] Re: unzip fails to deal correctly with filename encodings

2011-04-03 Thread frol
Alkis, You need to cantact libnatspec maintainer about this bug:
https://launchpad.net/~r0lf/+contactuser

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/580961

Title:
  unzip fails to deal correctly with filename encodings

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 580961] Re: unzip fails to deal correctly with filename encodings

2011-04-01 Thread frol
Alkis Georgopoulos wrote on 2011-02-15: 
 I just tried frol's PPA with the libnatspec dependency.
 It didn't correctly autodetect the encoding so I didn't see any benefit with 
 that implementation.

Alkis, can You please confirm that libnatspec is working correctly on
your machine, by installing natspec-bin frol ppa:r0lf/ppa and running
natspec -i? Does it correclty detects charsets for your locale?

Also can You post output of zipinfo -v biografiko.zip?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/580961

Title:
  unzip fails to deal correctly with filename encodings

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 580961] Re: unzip fails to deal correctly with filename encodings

2011-01-24 Thread frol
Shimi Chen: I'm not sure, but 7zip may save file names in archives
(including zip) in UTF-16 charset. unzip from ppa:frol/zip-i18n
translates file names from OEM-charset which is applied by default in
Windows for your language (probably not UTF-16, language is determined
by your current locale), to charset of your current locale.

You may need to process such files with p7zip or p7zip-full in ubuntu.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/580961

Title:
  unzip fails to deal correctly with filename encodings

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 572410] Re: [SRU] nmbd doesn't start because of missing testparm

2010-12-01 Thread frol
Experienced the same problem with missing testparm on Maverick with
samba-common-bin 2:3.5.4~dfsg-1ubuntu8. Quickly fixed it with:

sudo dpkg-reconfigure samba-common-bin

which reinstalled alternative links for testparm and family.

-- 
[SRU] nmbd doesn't start because of missing testparm
https://bugs.launchpad.net/bugs/572410
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 572410] Re: [SRU] nmbd doesn't start because of missing testparm

2010-12-01 Thread frol
Experienced the same problem with missing testparm on Maverick with
samba-common-bin 2:3.5.4~dfsg-1ubuntu8. Quickly fixed it with:

sudo dpkg-reconfigure samba-common-bin

which reinstalled alternative links for testparm and family.

-- 
[SRU] nmbd doesn't start because of missing testparm
https://bugs.launchpad.net/bugs/572410
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs