Figaro's Password Manager 2 was my favorite password management tool.
It is GTK2-application to preserve and manage your pairs of ID and password secretly with cipher.
To my regret, its Debian package was orphaned many years ago and
I thought it was time to switch to another password management tool.
But besides finding a good alternative choice, I had a big problem: migration.
Figaro's Password Manager 2 does have data export function, but only in special XML format.
If you want to move your data to a different application, you have to change the format of the data even if the application can import the data.
As my next password management tool is KeePass2 or KeePassXC, I need a XML to CSV data converter.
So, I have been developing the conversion tool very slowly and finally, completed.
Today, I published it on GitHub, which I named fpm2_csv.
The history of the code is quite embarrassing, but very few people in the world would be interested in it, that doesn't matter.
All the conversion processes are written in XSLT. During the development, I feel exciting that you can even write a process to escape double-quote, comma, and line feed characters for CSV format only with XSLT functions.
I built and am running a mail server, using dovecot for IMAP4 server and Power DNS (pdns) for DNS authoritative server, and memcached for back-end service for some mail filter. I also use LXC for staging environment to test my mail server, but running those services is not straight forward. My understanding is that it is because some security features of systemd using Linux kernel namespace function conflict with the use of namespace in LXC container. So, if you want to run memcached, dovecot, and pdns via systemd within LXC container, you have to disable some security features of systemd by configuration. My additional configuration to systemd is as follows: root@myhost:/# cat /etc/systemd/system/memcached.service.d/99-ns.conf [Service] ProtectSystem = no ProtectHome = no PrivateDevices = no PrivateTmp = no cat /etc/systemd/system/dovecot.service.d/99-ns.conf [Service] ProtectSystem = no PrivateDevices = no PrivateTmp = no root@myhost:/# grep -v '#' /etc/systemd/system/pdns.s...
Comments
Post a Comment