about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--examples/public-inbox-config10
-rw-r--r--t/config.t10
3 files changed, 11 insertions, 11 deletions
diff --git a/README b/README
index fb03c6e8..d1c17766 100644
--- 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
diff --git a/examples/public-inbox-config b/examples/public-inbox-config
index 000cf2c3..6793f256 100644
--- a/examples/public-inbox-config
+++ b/examples/public-inbox-config
@@ -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
diff --git a/t/config.t b/t/config.t
index cb5ccee2..50bc8d6d 100644
--- a/t/config.t
+++ b/t/config.t
@@ -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,