f6eb96
From 783e0e1248a4bad3882135adf3eb69e9429b8ec4 Mon Sep 17 00:00:00 2001
f6eb96
From: Jakub Filak <jfilak@redhat.com>
f6eb96
Date: Mon, 14 Oct 2013 10:45:00 +0200
f6eb96
Subject: [ABRT PATCH 29/76] don't consider crashes posted to ABRT server as
f6eb96
 reported
f6eb96
f6eb96
ABRT server uses the same logic. A crash is considered as reported only
f6eb96
if a bugzilla bug is attached to this crash.
f6eb96
f6eb96
ABRT has to allow users to report a crash to Bugzilla because ABRT server
f6eb96
does not support interaction between reporters and developers.
f6eb96
f6eb96
Closes rhbz#1018570
f6eb96
f6eb96
Signed-off-by: Jakub Filak <jfilak@redhat.com>
f6eb96
---
f6eb96
 src/plugins/abrt-action-ureport | 2 +-
f6eb96
 1 file changed, 1 insertion(+), 1 deletion(-)
f6eb96
f6eb96
diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport
f6eb96
index 38890bf..8c0f36f 100755
f6eb96
--- a/src/plugins/abrt-action-ureport
f6eb96
+++ b/src/plugins/abrt-action-ureport
f6eb96
@@ -91,7 +91,7 @@ if __name__ == "__main__":
f6eb96
         if reported_to and reported_to != "":
f6eb96
             bugs = set()
f6eb96
             for line in reported_to.split("\n"):
f6eb96
-                if line.startswith("Bugzilla:") or line.startswith("ABRT Server:"):
f6eb96
+                if line.startswith("Bugzilla:"):
f6eb96
                     bugs.add(line)
f6eb96
             if bugs:
f6eb96
                 log(_("A bug was already filed about this problem:"))
f6eb96
-- 
f6eb96
1.8.3.1
f6eb96