]> Sergey Matveev's repositories - public-inbox.git/commitdiff
rename list from "bugs" to "meta"
authorEric Wong <e@80x24.org>
Sat, 12 Apr 2014 23:14:54 +0000 (23:14 +0000)
committerEric Wong <e@80x24.org>
Mon, 14 Apr 2014 08:21:35 +0000 (08:21 +0000)
"bugs" might confuse and limit the discussion, so "meta" it is!

README
examples/public-inbox-config
t/config.t

diff --git a/README b/README
index fb03c6e8604f805f1c8002c8bd14edc38e74f51e..d1c1776618e40265241af663d1836d4c6eafba8a 100644 (file)
--- a/README
+++ b/README
@@ -76,7 +76,7 @@ public-inbox discussion is self-hosting on public-inbox.org
 Please send comments, user/developer discussion, patches, bug reports,
 and pull requests to our public-inbox address at:
 
-       bugs@public-inbox.org
+       meta@public-inbox.org
 
 Please Cc: all recipients when replying as we do not require
 subscription.  This also makes it easier to rope in folks of
index 000cf2c35970a9743e75654f70a74ae697164bd7..6793f256dfbc9d9cf95a1436d1fd1ac26709df51 100644 (file)
@@ -7,9 +7,9 @@
        mainrepo = /home/pi/test-main.git
        description = test/sandbox area, occasionally reset
        url = http://example.com/test
-[publicinbox "bugs"]
-       address = bugs@public-inbox.org
-       mainrepo = /home/pi/bugs-main.git
+[publicinbox "meta"]
+       address = meta@public-inbox.org
+       mainrepo = /home/pi/meta-main.git
        description = development discussion
-       url = http://example.com/bugs
-       atomUrl = http://example.com/bugs
+       url = http://example.com/meta
+       atomUrl = http://example.com/meta
index cb5ccee2559554fd10865da07c77a6a63959ddd8..50bc8d6d3eefb729417750a5721a9ddb1380a496 100644 (file)
@@ -25,12 +25,12 @@ my $tmpdir = tempdir(CLEANUP => 1);
        ok(-r $f, "$f is readable");
 
        my $cfg = PublicInbox::Config->new($f);
-       is_deeply($cfg->lookup('bugs@public-inbox.org'), {
-               'mainrepo' => '/home/pi/bugs-main.git',
-               'address' => 'bugs@public-inbox.org',
-               -primary_address => 'bugs@public-inbox.org',
+       is_deeply($cfg->lookup('meta@public-inbox.org'), {
+               'mainrepo' => '/home/pi/meta-main.git',
+               'address' => 'meta@public-inbox.org',
+               -primary_address => 'meta@public-inbox.org',
                'description' => 'development discussion',
-               'listname' => 'bugs',
+               'listname' => 'meta',
        }, "lookup matches expected output");
 
        is($cfg->lookup('blah@example.com'), undef,