Description: Fix FPM exporter doesn't encrypt password files
  FPM exporter does not seem to work correcty and this introduce a security issue.
  .
  Upstream plan to fix the FPM exporter soon but meantime it is better to disable it.
Author: Thomas Pierson
Forwarded: https://bitbucket.org/erikg/revelation/issue/78/fpm-exporter-doesnt-encrypt-password-files
Bug-Debian: http://bugs.debian.org/680059

---
--- a/src/lib/datahandler/fpm.py
+++ b/src/lib/datahandler/fpm.py
@@ -38,9 +38,9 @@
 	"Data handler for Figaro's Password Manager data"
 
 	name		= "Figaro's Password Manager"
-	importer	= True
-	exporter	= True
-	encryption	= True
+	importer	= False
+	exporter	= False
+	encryption	= False
 
 
 	def __init__(self):
